/* Serena product Quick View. */
body.serena-quick-view-open {
	overflow: hidden;
}

.products > .product .button.product_type_variable.serena-quick-view-trigger::before,
.owl-item > .product .button.product_type_variable.serena-quick-view-trigger::before {
	content: "a" !important;
	padding: 8.94px 8px !important;
	font-family: "font-electro" !important;
	font-weight: 400 !important;
}

.serena-quick-view[hidden] {
	display: none !important;
}

.serena-quick-view {
	position: fixed;
	inset: 0;
	z-index: 100100;
	display: grid;
	place-items: center;
	padding: 2rem;
	color: #2f3a44;
}

.serena-quick-view__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(24, 22, 20, 0.62);
	backdrop-filter: blur(3px);
}

.serena-quick-view__dialog {
	position: relative;
	z-index: 1;
	width: min(980px, 100%);
	height: min(76vh, 680px);
	max-height: calc(100vh - 4rem);
	overflow: hidden;
	border: 1px solid rgba(237, 192, 158, 0.48);
	border-radius: 1.5rem;
	outline: 0;
	background: #fff;
	box-shadow: 0 32px 90px rgba(30, 24, 20, 0.28);
}

.serena-quick-view__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 24px rgba(47, 58, 68, 0.14);
	color: #2f3a44;
	font-size: 1.75rem;
	font-weight: 300;
	line-height: 1;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.serena-quick-view__close:hover,
.serena-quick-view__close:focus-visible {
	background: #2f3a44;
	color: #fff;
	transform: rotate(4deg);
}

.serena-quick-view__close:focus-visible,
.serena-quick-view__gallery-nav:focus-visible,
.serena-quick-view__thumbnail:focus-visible,
.serena-quick-view__product-link:focus-visible {
	outline: 2px solid #edc09e;
	outline-offset: 3px;
}

.serena-quick-view__status:not(:empty) {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28rem;
	padding: 3rem;
	color: #6f7780;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
}

.serena-quick-view__status.is-loading::before {
	content: "";
	display: inline-block;
	width: 1.45rem;
	height: 1.45rem;
	margin-right: 0.75rem;
	border: 2px solid rgba(237, 192, 158, 0.4);
	border-top-color: #edc09e;
	border-radius: 50%;
	animation: serena-quick-view-spin 0.7s linear infinite;
}

.serena-quick-view__status.is-error {
	color: #a7473b;
}

.serena-quick-view__content {
	height: 100%;
	min-height: 0;
}

@keyframes serena-quick-view-spin {
	to {
		transform: rotate(360deg);
	}
}

.serena-quick-view__layout {
	display: grid;
	grid-template-columns: minmax(0, 44%) minmax(0, 56%);
	height: 100%;
	min-height: 0;
	max-height: none;
}

.serena-quick-view__gallery {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	padding: 1.25rem;
	background:
		radial-gradient(circle at 18% 12%, rgba(237, 192, 158, 0.16), transparent 34%),
		#f8f7f5;
}

.serena-quick-view__main-image-wrap {
	position: relative;
	display: grid;
	flex: 1 1 auto;
	place-items: center;
	min-height: 0;
	overflow: hidden;
	border-radius: 1.1rem;
	background: #fff;
	touch-action: pan-y;
}

.serena-quick-view__main-image-link {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	padding: 0.5rem;
}

.serena-quick-view__main-image {
	display: block;
	width: min(100%, 28rem);
	height: min(100%, 28rem);
	max-height: 28rem;
	object-fit: contain;
	object-position: center;
}

.serena-quick-view__gallery-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(47, 58, 68, 0.08);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 7px 20px rgba(47, 58, 68, 0.12);
	color: #2f3a44;
	transform: translateY(-50%);
}

.serena-quick-view__gallery.has-multiple-images .serena-quick-view__gallery-nav {
	display: inline-flex;
}

.serena-quick-view__gallery-nav::before {
	content: "";
	width: 0.55rem;
	height: 0.55rem;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.serena-quick-view__gallery-nav--previous {
	left: 0.85rem;
}

.serena-quick-view__gallery-nav--previous::before {
	transform: rotate(-135deg);
}

.serena-quick-view__gallery-nav--next {
	right: 0.85rem;
}

.serena-quick-view__gallery-nav--next::before {
	transform: rotate(45deg);
}

.serena-quick-view__gallery-nav:hover {
	border-color: #edc09e;
	background: #edc09e;
	color: #fff;
}

.serena-quick-view__thumbnails {
	display: flex;
	flex: 0 0 auto;
	gap: 0.65rem;
	margin-top: 0.85rem;
	overflow-x: auto;
	padding: 0.15rem 0.1rem 0.35rem;
	scrollbar-width: thin;
	scrollbar-color: #edc09e transparent;
}

.serena-quick-view__thumbnail {
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	flex: 0 0 4.5rem;
	margin: 0;
	padding: 0.2rem;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 0.8rem;
	background: #fff;
	box-shadow: none;
	opacity: 0.72;
	transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.serena-quick-view__thumbnail:hover,
.serena-quick-view__thumbnail.is-active {
	border-color: #edc09e;
	opacity: 1;
	transform: translateY(-1px);
}

.serena-quick-view__thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0.55rem;
	object-fit: cover;
}

.serena-quick-view__details {
	min-width: 0;
	height: 100%;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 2rem 2.25rem 1.75rem;
	scrollbar-width: thin;
	scrollbar-color: #edc09e transparent;
}

.serena-quick-view__categories,
.serena-quick-view__categories a {
	margin-bottom: 0.35rem;
	color: #70869b;
	font-size: 0.78rem;
	line-height: 1.35;
}

.serena-quick-view__categories a:hover {
	color: #b98b6a;
}

.serena-quick-view__title {
	margin: 0 3rem 0.65rem 0;
	color: #2f3a44;
	font-size: clamp(1.65rem, 2.2vw, 2.35rem);
	font-weight: 500;
	line-height: 1.14;
}

.serena-quick-view__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #ece7e2;
}

.serena-quick-view__stock .stock {
	margin: 0;
	color: #70869b;
	font-size: 0.84rem;
}

.serena-quick-view__stock .in-stock {
	color: #198754;
}

.serena-quick-view__wishlist {
	min-width: 2rem;
}

.serena-quick-view__wishlist .yith-add-to-wishlist-button-block {
	margin: 0;
}

.serena-quick-view__wishlist .yith-wcwl-add-to-wishlist-button {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #70869b;
	font-size: 0.82rem;
}

.serena-quick-view__wishlist svg {
	width: 1.2rem;
	height: 1.2rem;
}

.serena-quick-view__price-block {
	margin-top: 1.25rem;
}

.serena-quick-view__price {
	margin: 0;
	color: #2f3a44;
	font-size: clamp(1.7rem, 2.5vw, 2.45rem);
	font-weight: 400;
	line-height: 1.15;
}

.serena-quick-view__price del {
	color: #8e99a3;
	font-size: 0.58em;
}

.serena-quick-view__price ins {
	color: #e52f3c;
	text-decoration: none;
}

.serena-quick-view__benefits .serena-price-benefits {
	align-items: flex-start;
	margin-top: 0.35rem;
}

.serena-quick-view__purchase form.cart {
	margin: 0;
	padding-top: 0.2rem;
}

.serena-quick-view__purchase .single_add_to_cart_button {
	min-height: 2.9rem;
	padding: 0.75rem 1.45rem;
	border: 0;
	border-radius: 999px;
	background: #edc09e;
	color: #fff;
	font-weight: 700;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.serena-quick-view__purchase .single_add_to_cart_button::before {
	content: "a";
	display: inline-block;
	margin-right: 0.55rem;
	font-family: "font-electro";
	font-weight: 400;
}

.serena-quick-view__purchase .single_add_to_cart_button:hover,
.serena-quick-view__purchase .single_add_to_cart_button:focus-visible {
	background: #000;
	color: #fff;
	transform: translateY(-1px);
}

.serena-quick-view__purchase .single_add_to_cart_button:disabled,
.serena-quick-view__purchase .single_add_to_cart_button.disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
}

.serena-quick-view__purchase .serena-variation-pickers {
	margin-top: 1rem;
}

.serena-quick-view__purchase .single_variation_wrap {
	margin-top: 0.8rem;
}

.serena-quick-view__purchase .woocommerce-variation-price,
.serena-quick-view__purchase .woocommerce-variation-availability,
.serena-quick-view__purchase #woocommerce-correios-calculo-de-frete-na-pagina-do-produto,
.serena-quick-view__purchase [id*="calculo-de-frete"],
.serena-quick-view__purchase [class*="shipping-calculator"] {
	display: none !important;
}

.serena-quick-view__feedback {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
	padding: 0.75rem 0.9rem;
	border-radius: 0.75rem;
	font-size: 0.82rem;
	line-height: 1.35;
}

.serena-quick-view__feedback.is-success,
.serena-quick-view__feedback.is-error {
	display: flex;
}

.serena-quick-view__feedback.is-success {
	background: #edf8f1;
	color: #197044;
}

.serena-quick-view__feedback.is-error {
	background: #fff0ed;
	color: #a7473b;
}

.serena-quick-view__feedback a {
	flex: 0 0 auto;
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
}

.serena-quick-view__product-link {
	display: inline-flex;
	align-items: center;
	margin-top: 1.1rem;
	color: #2f3a44;
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: #edc09e;
	text-underline-offset: 0.3rem;
}

.serena-quick-view__product-link::after {
	content: "";
	width: 0.42rem;
	height: 0.42rem;
	margin-left: 0.5rem;
	border-top: 1.5px solid currentColor;
	border-right: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.serena-quick-view__product-link:hover {
	color: #b98b6a;
}

@media (max-width: 991.98px) {
	.serena-quick-view {
		padding: 1.5rem;
	}

	.serena-quick-view__details {
		padding: 1.75rem 1.5rem 1.5rem;
	}

	.serena-quick-view__purchase form.variations_form,
	.serena-quick-view__purchase form.variations_form .single_variation_wrap,
	.serena-quick-view__purchase form.variations_form .woocommerce-variation-add-to-cart {
		width: 100%;
	}

	.serena-quick-view__purchase .woocommerce-variation-add-to-cart {
		display: flex;
		flex-wrap: wrap;
		gap: 0.8rem;
	}

	.serena-quick-view__purchase .single_add_to_cart_button {
		flex: 1 1 12rem;
	}
}

@media (max-width: 767.98px) {
	.serena-quick-view {
		display: grid;
		place-items: center;
		padding: 0.75rem;
	}

	.serena-quick-view__dialog {
		width: min(100%, 34rem);
		height: 72dvh;
		max-height: 46rem;
		border: 1px solid rgba(237, 192, 158, 0.58);
		border-radius: 1.25rem;
	}

	.serena-quick-view__content {
		height: 100%;
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-width: thin;
		scrollbar-color: #edc09e transparent;
	}

	.serena-quick-view__layout {
		display: block;
		height: auto;
		max-height: none;
	}

	.serena-quick-view__close {
		position: absolute;
		top: 0.75rem;
		right: 0.75rem;
		width: 2.5rem;
		height: 2.5rem;
		font-size: 1.6rem;
	}

	.serena-quick-view__status:not(:empty) {
		height: 100%;
		min-height: 0;
	}

	.serena-quick-view__gallery {
		min-height: 30vh;
		max-height: 33vh;
		padding: 0;
		background: #f8f7f5;
	}

	.serena-quick-view__main-image-wrap {
		min-height: 25vh;
		border-radius: 0;
	}

	.serena-quick-view__main-image {
		max-height: 28vh;
	}

	.serena-quick-view__gallery-nav {
		width: 2.35rem;
		height: 2.35rem;
	}

	.serena-quick-view__thumbnails {
		margin: 0;
		padding: 0.55rem 1rem 0.65rem;
	}

	.serena-quick-view__thumbnail {
		width: 3.25rem;
		height: 3.25rem;
		flex-basis: 3.25rem;
	}

	.serena-quick-view__details {
		overflow: visible;
		padding: 1.1rem 1rem 1.5rem;
	}

	.serena-quick-view__title {
		margin-right: 2.5rem;
		font-size: 1.55rem;
	}

	.serena-quick-view__meta-row {
		align-items: flex-start;
	}

	.serena-quick-view__price {
		font-size: 1.85rem;
	}

	.serena-quick-view__purchase .woocommerce-variation-add-to-cart,
	.serena-quick-view__purchase form.cart:not(.variations_form) {
		display: flex;
		flex-wrap: wrap;
		gap: 0.8rem;
	}

	.serena-quick-view__purchase .single_add_to_cart_button {
		width: 100% !important;
		max-width: none;
		flex-basis: 100%;
		margin: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.serena-quick-view *,
	.serena-quick-view *::before,
	.serena-quick-view *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
