/* WooCommerce / theme buttons — externalized from wp_head inline (PageSpeed). */
.search-form button,
.search-form input[type="submit"] {
	background-color: #e93b67 !important;
	border: 2px solid #e93b67 !important;
	color: #fff !important;
	border-radius: 4px !important;
	transition: background .2s;
}
.search-form button:hover {
	background-color: #c42f55 !important;
	border-color: #c42f55 !important;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce a.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.single_add_to_cart_button.button,
a.button,
.home-section a.button,
.home-about a.button,
input[type="submit"],
button[type="submit"]:not(.menu-toggle):not(.paleto-prod-arrow):not(.paleto-arrow) {
	background-color: #e93b67 !important;
	color: #fff !important;
	border: 2px solid #e93b67 !important;
	border-radius: 7px !important;
	font-weight: 700 !important;
	transition: background .2s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover,
a.button:hover {
	background-color: #c42f55 !important;
	border-color: #c42f55 !important;
}
.btn-dopyt,
.pmf-btn {
	background-color: #e93b67 !important;
	border-color: #e93b67 !important;
}
.btn-dopyt:hover,
.pmf-btn:hover {
	background-color: #c42f55 !important;
}
.paleto-price-mieru {
	color: #e93b67 !important;
}
.mailpoet_submit,
.mp_form_subscribe button {
	background-color: #e93b67 !important;
	border-color: #e93b67 !important;
	color: #fff !important;
}

/* Homepage product slider */
.paleto-prod-slider {
	position: relative;
	overflow: hidden;
	padding: 0 36px;
}
.paleto-prod-track {
	display: flex;
	gap: 20px;
	transition: transform .4s cubic-bezier(.25, .46, .45, .94);
	will-change: transform;
}
.paleto-prod-card {
	flex: 0 0 calc(25% - 15px);
	min-width: 0;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
	display: flex;
	flex-direction: column;
}
.paleto-prod-card a.paleto-prod-img {
	display: block;
	aspect-ratio: 4/3;
	overflow: hidden;
}
.paleto-prod-card a.paleto-prod-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}
.paleto-prod-card:hover a.paleto-prod-img img {
	transform: scale(1.04);
}
.paleto-prod-card__body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.paleto-prod-card__title {
	font-size: .95em;
	font-weight: 700;
	color: #111;
	margin: 0 0 6px;
	line-height: 1.3;
}
.paleto-prod-card__price {
	font-size: 1em;
	color: #e93b67;
	font-weight: 700;
	margin-bottom: 12px;
}
.paleto-prod-card__price del {
	color: #999;
	font-weight: 400;
	font-size: .85em;
	margin-right: 4px;
}
.paleto-prod-card .button {
	margin-top: auto;
	text-align: center;
	background: #e93b67 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 7px;
	padding: 9px 0;
	font-size: .88em;
	display: block;
}
.paleto-prod-card .button:hover {
	background: #c8284f !important;
}
.paleto-prod-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	padding: 0 !important;
	min-height: 0 !important;
	border: 2px solid #e93b67 !important;
	border-radius: 50%;
	background: #fff !important;
	color: transparent !important;
	font-size: 0 !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(233, 59, 103, .18);
	transition: background .2s, border-color .2s, box-shadow .2s, transform .2s, opacity .2s;
}
.paleto-prod-arrow::before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	border-top: 2px solid #e93b67;
	border-right: 2px solid #e93b67;
	transition: border-color .2s;
}
.paleto-prod-prev::before {
	transform: rotate(-135deg);
	margin-left: 3px;
}
.paleto-prod-next::before {
	transform: rotate(45deg);
	margin-right: 3px;
}
.paleto-prod-arrow:hover {
	background: #e93b67 !important;
	border-color: #e93b67 !important;
	box-shadow: 0 6px 18px rgba(233, 59, 103, .32);
	transform: translateY(-50%) scale(1.05);
}
.paleto-prod-arrow:hover::before {
	border-color: #fff;
}
.paleto-prod-arrow.is-disabled {
	opacity: .35;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}
.paleto-prod-prev {
	left: 0;
}
.paleto-prod-next {
	right: 0;
}
@media (max-width: 900px) {
	.paleto-prod-card {
		flex: 0 0 calc(50% - 10px);
	}
}
@media (max-width: 600px) {
	.paleto-prod-arrow {
		display: none;
	}
	.paleto-prod-slider {
		overflow: visible;
		padding: 0;
	}
	.paleto-prod-track {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 12px;
	}
	.paleto-prod-track::-webkit-scrollbar {
		display: none;
	}
	.paleto-prod-card {
		flex: 0 0 82%;
		scroll-snap-align: start;
	}
}

/* Cross-sell block */
.paleto-crosssell {
	margin: 40px 0;
	padding: 20px 0;
	border-top: 2px solid #abe9da;
}
.paleto-crosssell-title {
	font-size: 1.4rem;
	margin-bottom: 6px;
	color: #111;
}
.paleto-crosssell-sub {
	color: #666;
	margin-bottom: 20px;
	font-size: .95rem;
}
