:root {
	--asovera-gutter: clamp(1.25rem, 8vw, 7.1875rem);
	--asovera-site-max: 1440px;
	--asovera-content-max: 1210px;
	--asovera-ink: var(--wp--preset--color--ink, #12201E);
	--asovera-body: var(--wp--custom--colors--body, #495352);
	--asovera-green: var(--wp--preset--color--forest, #092622);
	--asovera-deep-green: var(--wp--preset--color--deep-forest, #051513);
	--asovera-primary-subtle: var(--wp--custom--colors--primary-subtle, #E6E9E9);
	--asovera-primary-hover: var(--wp--custom--colors--primary-hover, #061B18);
	--asovera-gold: var(--wp--preset--color--gold, #FADBA7);
	--asovera-accent-soft: var(--wp--custom--colors--accent-soft, #FFFBF6);
	--asovera-line: var(--wp--preset--color--line, #E1E4E3);
	--asovera-border: var(--wp--custom--colors--border, #C6CACA);
	--asovera-border-width: var(--wp--custom--border-width, 0.8px);
	--asovera-soft: var(--wp--preset--color--soft, #F6F6F6);
	--asovera-muted: var(--wp--preset--color--muted, #717978);
	--asovera-neutral-800: var(--wp--custom--colors--neutral-800, #1E2B29);
	--asovera-disabled-background: var(--wp--custom--colors--disabled-background, #ECEDED);
	--asovera-disabled-text: var(--wp--custom--colors--disabled-text, #8D9493);
	--asovera-disabled-icon: var(--wp--custom--colors--disabled-icon, #B6BAB9);
	--asovera-on-primary: #FFFFFF;
	--asovera-on-deep: #FFFFFF;
	--asovera-on-accent: var(--asovera-ink);
	--asovera-accent-on-primary: var(--asovera-gold);
	--asovera-transition: 180ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { display: block; height: auto; max-width: 100%; }
a { text-underline-offset: 0.2em; }
.home .wp-site-blocks > * { margin-block-start: 0; }

/* Header */
.asovera-site-header {
	background: #fff;
	color: var(--asovera-muted);
	left: 0;
	position: fixed;
	top: var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px));
	transition: background-color 280ms ease, box-shadow 280ms ease, color 280ms ease;
	width: 100%;
	z-index: 40;
}

body:not(.home) .wp-site-blocks { padding-top: 60px; }
body:not(.home).asovera-has-announcement .wp-site-blocks { padding-top: 96px; }

.asovera-has-announcement .asovera-site-header {
	top: calc(var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px)) + 36px);
}

.home .asovera-site-header {
	background: transparent;
	color: #fff;
}

.home .asovera-site-header::before {
	-webkit-backdrop-filter: blur(34px);
	-webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
	backdrop-filter: blur(34px);
	content: "";
	inset: 0;
	mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
	opacity: 1;
	pointer-events: none;
	position: absolute;
	transition: opacity 280ms ease;
}

.home .asovera-site-header.is-past-hero::before { opacity: 0; }

.home .asovera-site-header.is-past-hero {
	background: #fff;
	color: var(--asovera-muted);
}

.asovera-header-inner {
	align-items: center;
	display: flex;
	gap: 24px;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	min-height: 60px;
	padding: 14px 115px;
	position: relative;
	width: 100%;
	z-index: 1;
}
.asovera-desktop-nav {
	align-items: center;
	display: flex;
	flex: 1 1 0;
	min-width: 0;
}
.asovera-nav-list { list-style: none; margin: 0; padding: 0; }
.asovera-desktop-nav-list { align-items: center; display: flex; gap: 40px; }
.asovera-desktop-nav a,
.asovera-more-toggle {
	background: transparent;
	border: 0;
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	padding: 0;
	text-decoration: none;
	transition: color 280ms ease;
}
.home .asovera-desktop-nav a,
.home .asovera-desktop-nav .asovera-more-toggle { color: #fff; }
.home .asovera-site-header.is-past-hero .asovera-desktop-nav a,
.home .asovera-site-header.is-past-hero .asovera-more-toggle { color: var(--asovera-body); }
.asovera-more-menu { position: relative; }
.asovera-more-toggle { align-items: center; cursor: pointer; display: inline-flex; gap: 5px; }
.asovera-more-toggle svg { transition: transform var(--asovera-transition); }
.asovera-more-submenu {
	background: #fff;
	border: 1px solid var(--asovera-line);
	box-shadow: 0 12px 30px color-mix(in srgb, var(--asovera-deep-green) 12%, transparent);
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 190px;
	opacity: 0;
	padding: 10px 0;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 12px);
	transform: translateY(-5px);
	transition: opacity var(--asovera-transition), transform var(--asovera-transition), visibility var(--asovera-transition);
	visibility: hidden;
	z-index: 20;
}
.asovera-more-submenu::before { content: ""; height: 14px; left: 0; position: absolute; right: 0; top: -14px; }
.asovera-more-submenu a,
.home .asovera-desktop-nav .asovera-more-submenu a { color: var(--asovera-body); display: block; padding: 8px 16px; white-space: nowrap; }
.asovera-more-menu:hover > .asovera-more-submenu,
.asovera-more-menu:focus-within > .asovera-more-submenu,
.asovera-more-menu.is-open > .asovera-more-submenu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.asovera-more-menu.is-open > .asovera-more-toggle svg { transform: rotate(180deg); }
.asovera-header-logo,
.asovera-mobile-menu-logo {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	height: 32px;
	justify-content: center;
	position: relative;
	width: 104px;
}
.asovera-brand-logo {
	height: 100%;
	object-fit: contain;
	width: 100%;
}
.asovera-brand-name {
	color: inherit;
	font-family: "Rufina", serif;
	font-size: 1.25rem;
	line-height: 1;
	text-decoration: none;
}
.asovera-header-logo-variant {
	align-items: center;
	display: flex;
	height: 100%;
	inset: 0;
	justify-content: center;
	opacity: 1;
	position: absolute;
	transition: opacity 280ms ease, visibility 280ms ease;
	visibility: visible;
	width: 100%;
}
.asovera-header-logo-default { opacity: 0; visibility: hidden; }
.asovera-header-logo-transparent { opacity: 1; visibility: visible; }
.home .asovera-header-logo-transparent .asovera-brand-logo:not(.asovera-brand-logo--transparent) { filter: brightness(0) invert(1); }
.home .asovera-site-header.is-past-hero .asovera-header-logo-default { opacity: 1; visibility: visible; }
.home .asovera-site-header.is-past-hero .asovera-header-logo-transparent { opacity: 0; visibility: hidden; }
.asovera-header-actions {
	align-items: center;
	display: flex;
	flex: 1 1 0;
	gap: 24px;
	justify-content: flex-end;
	min-width: 0;
}
.asovera-header-actions a,
.asovera-menu-toggle,
.asovera-menu-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: inherit;
	display: inline-flex;
	height: 24px;
	justify-content: center;
	padding: 0;
	width: 24px;
}
.asovera-heart-link { overflow: visible; position: relative; }
.asovera-wishlist-count {
	align-items: center;
	background: var(--asovera-gold);
	border: 0;
	border-radius: 999px;
	box-sizing: border-box;
	color: var(--asovera-green);
	display: flex;
	font: 600 9px/1 "Inter", sans-serif;
	height: 16px;
	justify-content: center;
	min-width: 16px;
	padding: 0 3px;
	position: absolute;
	right: -8px;
	top: -8px;
}
.asovera-wishlist-count[hidden] { display: none; }
.asovera-icon { display: block; flex: 0 0 auto; }
.asovera-menu-toggle { display: none; }
.asovera-mobile-menu-backdrop {
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background: rgba(0,0,0,.24);
	height: calc(100dvh - var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px)));
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px));
	transition: opacity 320ms ease, visibility 0s linear 320ms;
	visibility: hidden;
	width: 100%;
	z-index: 90;
}
.asovera-mobile-menu {
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background: rgba(255,255,255,.8);
	color: var(--asovera-ink);
	display: flex;
	flex-direction: column;
	height: calc(100dvh - var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px)));
	left: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	top: var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px));
	transform: translateX(-100%);
	transition: transform 360ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 360ms;
	visibility: hidden;
	will-change: transform;
	width: 100%;
	z-index: 100;
}
.asovera-site-header.is-menu-open { z-index: 80; }
.asovera-site-header.is-menu-open .asovera-mobile-menu-backdrop {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
	visibility: visible;
}
.asovera-site-header.is-menu-open .asovera-mobile-menu {
	pointer-events: auto;
	transform: translateX(0);
	transition-delay: 0s;
	visibility: visible;
}
.asovera-mobile-menu-top {
	align-items: center;
	display: flex;
	flex: 0 0 65px;
	justify-content: flex-end;
	min-height: 65px;
	padding: 10px 24px;
	position: relative;
}
.asovera-brand-details { margin-top: 1.5rem; }
.asovera-brand-contact { display: grid; font-size: .75rem; gap: .35rem; margin: 0 0 1rem; }
.asovera-brand-contact a { color: inherit; text-decoration: none; }
.asovera-brand-contact address { font-style: normal; }
.asovera-social-links { align-items: center; display: flex; gap: .75rem; }
.asovera-social-links a,
.asovera-social-link { align-items: center; color: inherit; display: inline-flex; justify-content: center; }
.asovera-social-links svg { fill: currentColor; height: 20px; width: 20px; }
.asovera-menu-close { color: var(--asovera-muted); cursor: pointer; position: static; }
.asovera-mobile-nav {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 0 24px;
}
.asovera-mobile-nav-list { align-items: flex-start; display: flex; flex-direction: column; gap: 0; width: 100%; }
.asovera-mobile-nav-list > .menu-item { width: 100%; }
.asovera-mobile-nav .asovera-more-toggle { color: var(--asovera-ink); }
.asovera-mobile-nav a,
.asovera-mobile-nav .asovera-more-toggle {
	align-items: center;
	color: var(--asovera-ink);
	display: flex;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	min-height: 56px;
	padding: 16px 0;
	text-decoration: none;
	width: 100%;
}
.asovera-mobile-shop-link {
	align-items: center;
	background: var(--asovera-green);
	color: var(--asovera-on-primary);
	display: flex;
	font-size: 16px;
	font-weight: 500;
	flex: 0 0 52px;
	height: 52px;
	justify-content: center;
	margin: 20px 24px;
	text-decoration: none;
	text-transform: uppercase;
}
body.asovera-menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	.asovera-mobile-menu,
	.asovera-mobile-menu-backdrop,
	.asovera-search-modal,
	.asovera-search-modal-header,
	.asovera-search-form,
	.asovera-search-content { transition-duration: 0.01ms; }
	.asovera-search-modal-header,
	.asovera-search-form,
	.asovera-search-content { transform: none; }
}

/* Search modal */
.asovera-search-modal {
	--asovera-search-form-height: 101px;
	--asovera-search-header-height: 60px;
	--asovera-search-result-cover-top: 48px;
	background: #fff;
	color: var(--asovera-ink);
	display: flex;
	flex-direction: column;
	height: calc(100dvh - var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px)));
	inset: var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px)) 0 0;
	opacity: 0;
	overscroll-behavior: contain;
	overflow-y: auto;
	pointer-events: none;
	position: fixed;
	transition: opacity .8s cubic-bezier(.5, 0, 0, 1);
	width: 100%;
	z-index: 100000;
}
.asovera-search-modal[hidden] { display: none; }
.asovera-search-modal [hidden] { display: none !important; }
.asovera-search-modal.is-open {
	opacity: 1;
	pointer-events: auto;
}
html.asovera-search-open,
body.asovera-search-open {
	overscroll-behavior: none;
	overflow: hidden;
}
body.asovera-search-open {
	left: 0;
	position: fixed;
	right: 0;
	top: var(--asovera-search-scroll-lock, 0);
	width: 100%;
}
.asovera-search-modal-header {
	align-items: center;
	background: #fff;
	display: flex;
	justify-content: center;
	margin-inline: auto;
	min-height: 60px;
	padding: 14px 115px;
	position: sticky;
	top: 0;
	width: min(100%, var(--asovera-site-max));
	z-index: 4;
}
.asovera-search-modal-header,
.asovera-search-form,
.asovera-search-content {
	opacity: 0;
	transform: translateY(-10px);
	transition:
		opacity .8s cubic-bezier(.5, 0, 0, 1),
		transform .8s cubic-bezier(.5, 0, 0, 1);
}
.asovera-search-form { transition-delay: .04s; }
.asovera-search-content { transition-delay: .08s; }
.asovera-search-modal.is-open .asovera-search-modal-header,
.asovera-search-modal.is-open .asovera-search-form,
.asovera-search-modal.is-open .asovera-search-content {
	opacity: 1;
	transform: translateY(0);
}
.asovera-search-modal.is-closing .asovera-search-modal-header,
.asovera-search-modal.is-closing .asovera-search-form,
.asovera-search-modal.is-closing .asovera-search-content {
	transition-delay: 0s;
}
.asovera-search-modal-spacer,
.asovera-search-modal-close {
	flex: 1 1 0;
	min-width: 0;
}
.asovera-search-modal-logo {
	align-items: center;
	display: flex;
	height: 32px;
	justify-content: center;
	width: 104px;
}
.asovera-search-modal-close {
	align-items: center;
	color: var(--asovera-muted);
	display: flex;
	height: 24px;
	justify-content: flex-end;
	margin-left: auto;
	text-decoration: none;
}
.asovera-search-modal-close .asovera-icon { height: 24px; width: 24px; }
.asovera-search-form {
	background: #fff;
	display: flex;
	justify-content: center;
	padding: 24px 115px;
	position: sticky;
	top: 60px;
	z-index: 3;
	will-change: opacity, transform;
}
.asovera-search-modal.is-search-form-hidden .asovera-search-form {
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition-delay: 0s;
}
.asovera-search-field {
	align-items: center;
	border-bottom: 1px solid var(--asovera-line);
	display: flex;
	gap: 8px;
	padding: 16px 0 9px;
	width: min(100%, 486px);
}
.asovera-search-field:focus-within { border-bottom-color: var(--asovera-green); }
.asovera-search-field .asovera-icon {
	color: var(--asovera-muted);
	flex: 0 0 18px;
	height: 18px;
	width: 18px;
}
.asovera-search-field input {
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--asovera-ink);
	flex: 1 1 auto;
	font: 400 16px/28px "Inter", sans-serif;
	min-width: 0;
	outline: 0;
	padding: 0;
}
.asovera-search-field input::-webkit-search-cancel-button { appearance: none; }
.asovera-search-field input::placeholder { color: var(--asovera-muted); opacity: 1; }
.asovera-search-clear {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-muted);
	cursor: pointer;
	display: none;
	flex: 0 0 18px;
	height: 18px;
	justify-content: center;
	padding: 0;
	width: 18px;
}
.asovera-search-field.has-value .asovera-search-clear { display: flex; }
.asovera-search-clear .asovera-icon { height: 18px; width: 18px; }
.asovera-search-content {
	margin-inline: auto;
	padding: 48px 115px;
	width: min(100%, var(--asovera-site-max));
}
.asovera-search-content > h2 {
	font-family: "Rufina", serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .11px;
	line-height: 28px;
	margin: 0 auto 24px;
	max-width: var(--asovera-content-max);
}
.asovera-search-result-bar {
	--asovera-search-result-gap: 24px;
	align-items: center;
	background: #fff;
	display: flex;
	justify-content: space-between;
	margin: 0 auto var(--asovera-search-result-gap);
	max-width: var(--asovera-content-max);
	padding: 0;
	position: sticky;
	top: calc(var(--asovera-search-header-height, 60px) + var(--asovera-search-form-height, 101px));
	transition: padding-top 180ms ease, top .8s cubic-bezier(.5, 0, 0, 1);
	z-index: 4;
}
.asovera-search-result-bar::before {
	background: #fff;
	bottom: calc(var(--asovera-search-result-gap) * -1);
	content: "";
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: calc(var(--asovera-search-result-cover-top, 48px) * -1);
	transform: translateX(-50%);
	width: 100vw;
	z-index: 0;
}
.asovera-search-result-bar > * {
	position: relative;
	z-index: 1;
}
.asovera-search-modal.is-search-form-hidden .asovera-search-result-bar {
	padding-top: 14px;
	top: var(--asovera-search-header-height, 60px);
}
.asovera-search-modal.is-search-form-hidden .asovera-search-result-bar::before {
	top: calc((var(--asovera-search-result-cover-top, 48px) + var(--asovera-search-form-height, 101px)) * -1);
}
.asovera-search-result-bar p {
	font: 400 12px/16px "Inter", sans-serif;
	margin: 0;
}
.asovera-search-sort-toggle {
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-weight: 500;
	margin: 0;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.asovera-search-sort-toggle:focus-visible { outline: 2px solid var(--asovera-green); outline-offset: 2px; }
.asovera-search-filter-note {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-ink);
	display: flex;
	font: 400 14px/22px "Inter", sans-serif;
	gap: 4px;
	padding: 0;
}
.asovera-search-filter-note .asovera-icon { height: 16px; width: 16px; }
.asovera-applied-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 2px auto 32px;
	max-width: var(--asovera-content-max);
}
.asovera-applied-filters[hidden] { display: none; }
.asovera-applied-filter {
	--asovera-applied-filter-border: var(--asovera-line);
	appearance: none;
	align-items: center;
	background: transparent;
	border: 1px solid var(--asovera-applied-filter-border);
	border-radius: 0;
	color: var(--asovera-ink);
	cursor: pointer;
	display: inline-flex;
	font: 500 13px/20px "Inter", sans-serif;
	gap: 10px;
	height: 38px;
	margin: 0;
	max-width: 100%;
	min-width: 0;
	padding: 0 12px;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.asovera-applied-filter:hover {
	--asovera-applied-filter-border: var(--asovera-green);
}
.asovera-applied-filter-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.asovera-applied-filter-remove {
	align-items: center;
	border-left: 1px solid color-mix(in srgb, var(--asovera-green) 28%, var(--asovera-line));
	color: var(--asovera-green);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 17px;
	font-weight: 500;
	height: 18px;
	justify-content: flex-end;
	line-height: 1;
	padding-left: 10px;
}
.asovera-applied-filter:focus-visible { outline: 2px solid var(--asovera-green); outline-offset: 2px; }
.asovera-search-grid {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	max-width: var(--asovera-content-max);
}
.asovera-search-grid .asovera-catalogue-card-copy { padding-bottom: 24px; }
.asovera-search-grid.is-loading { align-items: start; }
.asovera-search-skeleton-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.asovera-search-skeleton-media,
.asovera-search-skeleton-line {
	background: var(--asovera-disabled-background);
	display: block;
	overflow: hidden;
	position: relative;
}
.asovera-search-skeleton-media {
	aspect-ratio: 276 / 374;
	width: 100%;
}
.asovera-search-skeleton-copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 0 32px;
}
.asovera-search-skeleton-line {
	height: 22px;
	width: 100%;
}
.asovera-search-skeleton-line.is-price {
	height: 20px;
	width: min(50%, 137px);
}
.asovera-search-skeleton-shimmer::after {
	animation: asovera-search-shimmer 1.15s cubic-bezier(.4, 0, .2, 1) infinite;
	background: rgba(255, 255, 255, .85);
	content: "";
	filter: blur(18px);
	height: 170%;
	left: -40%;
	position: absolute;
	top: -35%;
	transform: translateX(-100%) rotate(30deg);
	width: 56px;
}
@keyframes asovera-search-shimmer {
	to { transform: translateX(900%) rotate(30deg); }
}
.asovera-search-empty {
	color: var(--asovera-body);
	font: 400 16px/28px "Inter", sans-serif;
	margin: 80px auto;
	max-width: var(--asovera-content-max);
	text-align: center;
}
.asovera-search-empty-state {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0 auto;
	max-width: 590px;
	padding: 52px 0 100px;
	text-align: center;
	width: 100%;
}
.asovera-search-empty-copy {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}
.asovera-search-empty-copy h2 {
	color: var(--asovera-ink);
	font: 700 28px/38px "Rufina", serif;
	letter-spacing: 0;
	margin: 0;
}
.asovera-search-empty-copy p {
	color: var(--asovera-body);
	font: 400 16px/28px "Inter", sans-serif;
	letter-spacing: 0;
	margin: 0;
}
.asovera-search-empty-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	width: 100%;
}
.asovera-search-empty-category {
	align-items: center;
	border: 1px solid var(--asovera-line);
	color: var(--asovera-ink);
	display: inline-flex;
	font: 400 14px/22px "Inter", sans-serif;
	gap: 8px;
	padding: 8px 12px;
	text-decoration: none;
	text-transform: uppercase;
}
.asovera-search-empty-category:hover,
.asovera-search-empty-category:focus-visible {
	border-color: var(--asovera-ink);
}
.asovera-search-pagination { margin-top: 24px; }

@media (max-width: 1023px) {
	.asovera-search-modal { --asovera-search-result-cover-top: 40px; }
	.asovera-search-modal-header {
		min-height: 65px;
		padding: 10px 40px;
	}
	.asovera-search-modal-logo {
		height: 34.5px;
		width: 112px;
	}
	.asovera-search-form { padding: 20px 40px; }
	.asovera-search-field { width: min(100%, 486px); }
	.asovera-search-content { padding: 40px; }
	.asovera-search-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.asovera-search-empty-state { padding-top: 60px; }
}

@media (max-width: 599px) {
	.asovera-search-modal { --asovera-search-result-cover-top: 32px; }
	.asovera-search-modal-header {
		padding: 10px 20px;
	}
	.asovera-search-modal-spacer { flex-basis: 24px; }
	.asovera-search-modal-close { flex-basis: 24px; }
	.asovera-search-form { padding: 16px 20px 24px; }
	.asovera-search-field {
		padding-top: 16px;
		width: 100%;
	}
	.asovera-search-content { padding: 32px 20px 48px; }
	.asovera-search-content > h2 { margin-bottom: 20px; }
	.asovera-search-empty-state {
		padding: 68px 0 80px;
	}
	.asovera-search-result-bar {
		--asovera-search-result-gap: 20px;
		align-items: flex-start;
		gap: 16px;
	}
	.asovera-search-filter-note span { white-space: nowrap; }
	.asovera-search-grid {
		gap: 8px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.asovera-search-grid .asovera-catalogue-card-copy { padding-bottom: 24px; padding-top: 12px; }
	.asovera-search-grid .asovera-catalogue-card h2 { font-size: 14px; line-height: 22px; }
	.asovera-search-grid .asovera-catalogue-price {
		align-items: flex-start;
		flex-direction: column;
		font-size: 16px;
		gap: 2px;
		line-height: 24px;
	}
	.asovera-search-grid .asovera-catalogue-price del { font-size: 14px; line-height: 20px; }
}

/* Hero */
.asovera-hero {
	align-items: center;
	background-color: #605b55;
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--asovera-hero-desktop);
	background-position: center 43%;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	min-height: 700px !important;
	overflow: hidden;
	padding-inline: 0 !important;
	position: relative;
}
.asovera-hero .wp-block-cover__background {
	inset: 0;
	opacity: .2;
	position: absolute;
	z-index: 0;
}
.asovera-hero .wp-block-cover__inner-container {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	padding-inline: 115px;
	position: relative;
	width: 100%;
	z-index: 1;
}
.asovera-hero-content { margin-inline: 0; max-width: none !important; padding-inline: 0 !important; width: 100%; }
.asovera-hero h1 {
	font-size: clamp(4rem, 5.56vw, 5rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.025;
	margin: 0;
	max-width: 11ch;
	white-space: nowrap;
}
.asovera-hero-actions {
	align-items: stretch;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.875rem;
	margin-top: 2rem;
}
.asovera-hero-actions .wp-block-button { min-width: 190px; }
.asovera-hero-actions .wp-block-button__link {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	font-size: 1rem;
	height: 52px;
	justify-content: center;
	padding-inline: 1.5rem;
	width: 100%;
}
.asovera-hero-actions .is-style-outline .wp-block-button__link {
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background: rgba(255,255,255,.1);
	border: .8px solid var(--asovera-disabled-background);
	color: #fff;
}
.asovera-label-mobile { display: none; }

/* Product rails */
.asovera-product-section {
	--asovera-rail-bleed: var(--asovera-gutter);
	background: #fff;
	overflow: visible;
	padding: 60px var(--asovera-gutter) !important;
}
.asovera-product-section > .alignwide {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: var(--asovera-content-max) !important;
	width: min(100%, var(--asovera-content-max));
}
.asovera-product-section > .wp-block-group { padding-inline: 0 !important; }
.asovera-product-section h2 {
	font-size: 3rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}
.asovera-product-section > .wp-block-group p { margin: 0; text-transform: uppercase; }
.asovera-product-section > .wp-block-group a { font-weight: 500; text-decoration: none; }
.asovera-product-section .woocommerce {
	left: 50%;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: 3.75rem;
	max-width: none;
	overflow: hidden;
	position: relative;
	transform: translateX(-50%);
	width: 100vw;
}
.asovera-product-section .products {
	display: flex !important;
	gap: 8px;
	margin: 0 !important;
	overflow-x: auto;
	padding: 0 var(--asovera-rail-bleed) !important;
	scroll-padding-inline: var(--asovera-rail-bleed);
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.asovera-product-section .products::-webkit-scrollbar { display: none; }
.asovera-product-section .products li.product {
	flex: 0 0 calc((min(var(--asovera-content-max), calc(100vw - (2 * var(--asovera-gutter)))) - 24px) / 4);
	scroll-snap-align: start;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
	float: none !important;
	margin: 0 !important;
	position: relative;
	width: auto !important;
}
.woocommerce ul.products li.product .onsale { display: none; }
.woocommerce ul.products li.product a img {
	aspect-ratio: 276 / 374;
	background: var(--asovera-soft);
	margin: 0 0 1rem !important;
	object-fit: cover;
	width: 100%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: "Inter", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.45;
	padding: 0 !important;
}
.woocommerce ul.products li.product .price {
	align-items: center;
	color: var(--asovera-ink);
	display: flex;
	font-family: "Inter", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.woocommerce ul.products li.product .price del { color: var(--asovera-muted); font-size: .875rem; font-weight: 500; order: 2; opacity: 1; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button { display: none; }

/* WooCommerce catalogue */
.post-type-archive-product .wp-site-blocks > *,
.tax-product_cat .wp-site-blocks > * { margin-block-start: 0; }
.asovera-announcement {
	align-items: center;
	background: var(--asovera-green);
	color: var(--asovera-on-primary);
	display: flex;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	line-height: 16px;
	min-height: 36px;
	overflow: hidden;
	padding: 10px 48px;
	left: 0;
	position: fixed;
	top: var(--asovera-admin-offset, var(--wp-admin--admin-bar--height, 0px));
	width: 100%;
	z-index: 50;
}
.asovera-announcement-viewport { min-width: 0; overflow: hidden; width: 100%; }
.asovera-announcement-track {
	align-items: center;
	display: flex;
	gap: 48px;
	margin-inline: auto;
	width: max-content;
}
.asovera-announcement-item { flex: 0 0 auto; white-space: nowrap; }
.asovera-announcement.is-overflowing .asovera-announcement-track {
	animation: asovera-announcement-loop var(--asovera-announcement-duration, 16s) linear infinite;
	margin-inline: 0;
	will-change: transform;
}
.asovera-announcement.is-overflowing:hover .asovera-announcement-track,
.asovera-announcement.is-overflowing:focus-within .asovera-announcement-track { animation-play-state: paused; }
.asovera-announcement a { color: inherit; margin-left: 6px; }
.asovera-announcement-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: inherit;
	display: flex;
	height: 16px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 24px;
	top: 10px;
	width: 16px;
}
@keyframes asovera-announcement-loop {
	to { transform: translateX(calc(-1 * var(--asovera-announcement-distance))); }
}
.asovera-catalogue {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	overflow: hidden;
	padding: 80px 115px;
}
.asovera-catalogue-intro {
	align-items: start;
	display: grid;
	gap: 80px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	margin: 0 auto;
	max-width: var(--asovera-content-max);
}
.asovera-catalogue-intro h1 { font-size: 48px; line-height: 59px; margin: 0; }
.asovera-catalogue-intro p { color: var(--asovera-body); font-size: 16px; line-height: 28px; margin: 4px 0 0 auto; max-width: 630px; }
.asovera-catalogue-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 80px auto 0;
	max-width: var(--asovera-content-max);
}
.asovera-category-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.asovera-category-chip {
	align-items: center;
	border: 1px solid var(--asovera-line);
	color: var(--asovera-muted);
	display: inline-flex;
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 500;
	gap: 8px;
	height: 36px;
	padding: 8px 12px;
	text-decoration: none;
	text-transform: uppercase;
}
.asovera-category-chip.is-active { border-color: var(--asovera-green); color: var(--asovera-ink); }
.asovera-catalogue-chip-icon { display: block; flex: 0 0 18px; height: 18px; width: 18px; }
.asovera-filter-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-ink);
	display: flex;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	gap: 6px;
	line-height: 22px;
	padding: 10px 0;
}
.asovera-filter-toggle .asovera-icon { flex: 0 0 16px; height: 16px; width: 16px; }
.asovera-filter-toggle-count {
	align-items: center;
	background: var(--asovera-gold);
	color: var(--asovera-ink);
	display: inline-flex;
	font: 500 12px/16px "Inter", sans-serif;
	height: 20px;
	justify-content: center;
	margin-left: 2px;
	padding: 2px 7px;
	white-space: nowrap;
}
.asovera-filter-toggle-count[hidden] { display: none; }
.asovera-catalogue-grid {
	display: grid;
	gap: 56px 8px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 120px auto 0;
	max-width: var(--asovera-content-max);
}
.asovera-catalogue-card { min-width: 0; position: relative; }
.asovera-sold-out-badge {
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background: rgba(6, 6, 6, .4);
	color: #fff;
	display: inline-flex;
	font: 500 10px/16px "Inter", sans-serif;
	left: 10px;
	padding: 4px 6px;
	position: absolute;
	text-transform: uppercase;
	top: 10px;
	white-space: nowrap;
	z-index: 2;
}
.asovera-catalogue-image-link { background: var(--asovera-soft); display: block; overflow: hidden; }
.asovera-catalogue-image {
	aspect-ratio: 276 / 374;
	height: auto;
	object-fit: cover;
	transition: transform 240ms ease;
	width: 100%;
}
.asovera-catalogue-card:hover .asovera-catalogue-image { transform: scale(1.015); }
.asovera-catalogue-card-copy { padding: 16px 0 0; }
.asovera-catalogue-card h2 { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 400; line-height: 22px; margin: 0; }
.asovera-catalogue-card h2 a { color: var(--asovera-ink); text-decoration: none; }
.asovera-catalogue-price { align-items: center; display: flex; flex-wrap: wrap; font-size: 16px; font-weight: 600; gap: 2px 8px; line-height: 24px; margin-top: 8px; }
.asovera-catalogue-price ins { text-decoration: none; }
.asovera-catalogue-price del { color: var(--asovera-muted); font-size: 14px; font-weight: 500; order: 2; opacity: 1; }
.asovera-catalogue-card .asovera-card-wishlist,
.woocommerce ul.products li.product .asovera-card-wishlist {
	align-items: flex-start;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--asovera-muted);
	justify-content: flex-end;
	padding: 10px 10px 0 0;
	right: 0;
	top: 0;
}
.asovera-catalogue-card .asovera-card-wishlist:hover,
.woocommerce ul.products li.product .asovera-card-wishlist:hover { color: var(--asovera-muted); }
.asovera-catalogue-card .asovera-card-wishlist.is-saved,
.woocommerce ul.products li.product .asovera-card-wishlist.is-saved { background: transparent; color: var(--asovera-green); }

@media (min-width: 600px) and (hover: hover) and (pointer: fine) {
	.asovera-catalogue-card .asovera-card-wishlist,
	.woocommerce ul.products li.product .asovera-card-wishlist {
		opacity: 0;
		pointer-events: none;
		transition: opacity 140ms ease;
	}
	.asovera-catalogue-card:hover .asovera-card-wishlist,
	.asovera-catalogue-card:focus-within .asovera-card-wishlist,
	.woocommerce ul.products li.product:hover .asovera-card-wishlist,
	.woocommerce ul.products li.product:focus-within .asovera-card-wishlist {
		opacity: 1;
		pointer-events: auto;
	}
}
.asovera-pagination { margin: 80px auto 0; }
.asovera-pagination ul { align-items: center; display: flex; gap: 8px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.asovera-pagination a,
.asovera-pagination span.current {
	align-items: center;
	color: var(--asovera-ink);
	display: flex;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	height: 32px;
	justify-content: center;
	text-decoration: none;
	width: 32px;
}
.asovera-pagination a {
	transition: background-color 160ms ease, color 160ms ease;
}
.asovera-pagination-icon { display: block; height: 18px; width: 18px; }
.asovera-pagination a:hover,
.asovera-pagination a:focus-visible {
	background: var(--asovera-soft);
	color: var(--asovera-primary-hover);
}
.asovera-pagination a:focus-visible { outline: 2px solid color-mix(in srgb, var(--asovera-green) 28%, transparent); outline-offset: 2px; }
.asovera-pagination span.current { background: var(--asovera-neutral-800); color: #fff; }
.asovera-catalogue-empty { margin: 100px auto; max-width: var(--asovera-content-max); text-align: center; }
.asovera-filter-overlay {
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	background: rgba(0,0,0,.24);
	inset: 0;
	position: fixed;
	z-index: 109;
}
.asovera-filter-overlay[hidden] { display: none; }
.asovera-filter-drawer {
	--asovera-filter-drawer-padding: 24px;
	background: #fff;
	display: flex;
	flex-direction: column;
	height: calc(100dvh - var(--asovera-admin-offset, 0px));
	padding: var(--asovera-filter-drawer-padding);
	position: fixed;
	right: 0;
	top: var(--asovera-admin-offset, 0px);
	transform: translateX(100%);
	transition: transform 300ms cubic-bezier(.22,1,.36,1), visibility 300ms;
	visibility: hidden;
	width: 480px;
	z-index: 110;
}
.asovera-filter-drawer.is-open { transform: translateX(0); visibility: visible; }
.asovera-filter-heading { align-items: center; display: flex; gap: 10px; }
.asovera-filter-title-row { align-items: center; display: flex; flex: 1; gap: 10px; }
.asovera-filter-heading h2,
.asovera-filter-title-row h2 { font-family: "Inter", sans-serif; font-size: 22px; font-weight: 600; line-height: 28px; margin: 0; text-transform: uppercase; }
.asovera-filter-count { align-items: center; background: var(--asovera-gold); color: var(--asovera-on-accent); display: inline-flex; font: 600 14px/20px "Inter", sans-serif; height: 20px; justify-content: center; min-width: 23px; padding: 0 7px; }
.asovera-filter-count[hidden] { display: none; }
.asovera-filter-close { align-items: center; background: transparent; border: 0; color: var(--asovera-muted); display: flex; height: 24px; justify-content: center; padding: 0; width: 24px; }
.asovera-search-filter-drawer { width: 420px; }
.asovera-search-filter-drawer .asovera-filter-heading {
	align-items: stretch;
	flex-direction: column;
	gap: 0;
}
.asovera-filter-close-row { display: flex; justify-content: flex-end; width: 100%; }
.asovera-search-filter-drawer .asovera-filter-close {
	border-radius: 50%;
	height: 48px;
	width: 48px;
}
.asovera-search-filter-drawer .asovera-filter-close .asovera-icon { height: 24px; width: 24px; }
.asovera-filter-heading-main { align-items: center; display: flex; flex: 0 0 auto; gap: 10px; justify-content: space-between; width: 100%; }
.asovera-filter-clear {
	color: var(--asovera-green);
	flex: 0 0 auto;
	font: 500 12px/16px "Inter", sans-serif;
	padding: 6px 8px;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.asovera-filter-clear:hover { color: var(--asovera-primary-hover); }
.asovera-filter-clear:focus-visible { outline: 2px solid var(--asovera-green); outline-offset: 2px; }
.asovera-filter-form { display: flex; flex: 1; flex-direction: column; margin-top: 32px; min-height: 0; }
.asovera-search-filter-drawer .asovera-filter-form { margin-top: 14px; }
.asovera-filter-fields {
	margin-right: calc(var(--asovera-filter-drawer-padding) * -1);
	min-height: 0;
	overflow-y: auto;
	padding-right: var(--asovera-filter-drawer-padding);
	scrollbar-width: thin;
}
.asovera-search-filter-drawer .asovera-filter-fields {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}
.asovera-search-filter-drawer .asovera-filter-heading-main { margin-bottom: 32px; }
.asovera-filter-section { border: 0; margin: 0; padding: 0; }
.asovera-filter-section[hidden] { display: none; }
.asovera-filter-section > summary {
	align-items: center;
	color: var(--asovera-muted);
	cursor: pointer;
	display: flex;
	font: 400 14px/22px "Inter", sans-serif;
	justify-content: space-between;
	list-style: none;
	min-height: 54px;
	padding: 16px 0;
	text-transform: uppercase;
}
.asovera-filter-section > summary::-webkit-details-marker { display: none; }
.asovera-filter-section > summary:focus-visible { outline: 2px solid var(--asovera-green); outline-offset: 2px; }
.asovera-filter-section[open] > summary { color: var(--asovera-ink); }
.asovera-filter-section-icon { color: currentColor; flex: 0 0 18px; height: 18px; position: relative; width: 18px; }
.asovera-filter-section-icon::before {
	border-bottom: 1px solid currentColor;
	border-right: 1px solid currentColor;
	content: "";
	height: 7px;
	left: 5px;
	position: absolute;
	top: 3px;
	transform: rotate(45deg);
	transition: transform 160ms ease, top 160ms ease;
	width: 7px;
}
.asovera-filter-section[open] > summary .asovera-filter-section-icon::before { top: 7px; transform: rotate(-135deg); }
.asovera-filter-form .asovera-filter-section > fieldset { padding: 0 0 24px; }
.asovera-filter-form fieldset { border: 0; margin: 0; padding: 0 0 32px; }
.asovera-filter-form fieldset[hidden] { display: none; }
.asovera-filter-form legend { color: var(--asovera-muted); font-size: 14px; font-weight: 400; line-height: 44px; margin-bottom: 16px; padding: 0; text-transform: uppercase; width: 100%; }
.asovera-filter-options { display: grid; gap: 20px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.asovera-filter-options label { align-items: center; cursor: pointer; display: flex; font-size: 14px; gap: 8px; line-height: 22px; position: relative; }
.asovera-filter-options label[hidden] { display: none; }
.asovera-filter-options input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.asovera-filter-control { background: #fff; border: 1px solid var(--asovera-border); flex: 0 0 18px; height: 18px; position: relative; width: 18px; }
.asovera-filter-options input:checked + .asovera-filter-control { background: var(--asovera-green); border-color: var(--asovera-green); }
.asovera-filter-options input:checked + .asovera-filter-control::after { color: var(--asovera-on-primary); content: "✓"; font-size: 12px; font-weight: 700; inset: 0; line-height: 16px; position: absolute; text-align: center; }
.asovera-filter-options input:focus-visible + .asovera-filter-control { outline: 2px solid var(--asovera-green); outline-offset: 2px; }
.asovera-filter-options--radio .asovera-filter-control { border-radius: 50%; }
.asovera-filter-options--radio input:checked + .asovera-filter-control { background: #fff; }
.asovera-filter-options--radio input:checked + .asovera-filter-control::after { background: var(--asovera-green); border-radius: 50%; content: ""; inset: 4px; }
.asovera-filter-options--facets { grid-template-columns: 1fr; }
.asovera-filter-option-label { min-width: 0; }
.asovera-filter-option-count { color: var(--asovera-muted); font-size: 12px; margin-left: auto; }
.asovera-price-filter { padding-bottom: 8px !important; }
.asovera-price-filter legend { margin-bottom: 16px; }
.asovera-price-range {
	background: linear-gradient(to right, var(--asovera-border) 0 var(--asovera-range-min), var(--asovera-green) var(--asovera-range-min) var(--asovera-range-max), var(--asovera-border) var(--asovera-range-max) 100%);
	border-radius: 100px;
	height: 3px;
	margin: 14.5px 0 30.5px;
	position: relative;
}
.asovera-price-range input {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	height: 32px;
	left: 0;
	margin: 0;
	pointer-events: none;
	position: absolute;
	top: -14.5px;
	width: 100%;
}
.asovera-price-range input::-webkit-slider-runnable-track { background: transparent; border: 0; height: 3px; }
.asovera-price-range input::-moz-range-track { background: transparent; border: 0; height: 3px; }
.asovera-price-range input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	border: 2.4px solid var(--asovera-green);
	border-radius: 50%;
	box-shadow: 0 3px 8px color-mix(in srgb, var(--asovera-green) 14%, transparent);
	cursor: grab;
	height: 32px;
	margin-top: -14.5px;
	pointer-events: auto;
	width: 32px;
}
.asovera-price-range input::-moz-range-thumb { background: #fff; border: 2.4px solid var(--asovera-green); border-radius: 50%; box-shadow: 0 4px 8px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.04); cursor: grab; height: 32px; pointer-events: auto; width: 32px; }
.asovera-price-range input:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--asovera-green); outline-offset: 2px; }
.asovera-price-fields { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.asovera-price-fields label { display: grid; gap: 7px; }
.asovera-price-field-label { color: var(--asovera-muted); font-size: 12px; line-height: 18px; }
.asovera-price-input-wrap { align-items: center; border: 1.4px solid var(--asovera-line); display: flex; height: 48px; padding-left: 14px; }
.asovera-price-input-wrap > span { color: var(--asovera-muted); font: 400 14px/22px "Inter", sans-serif; }
.asovera-price-fields input { appearance: textfield; background: transparent; border: 0; border-radius: 0; color: var(--asovera-ink); font: 400 14px/22px "Inter", sans-serif; height: 45px; min-width: 0; outline: 0; padding: 12px 14px 12px 4px; width: 100%; }
.asovera-price-input-wrap:focus-within { border-color: var(--asovera-green); }
.asovera-price-fields input::-webkit-inner-spin-button,
.asovera-price-fields input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.asovera-filter-actions { background: #fff; display: flex; flex: 0 0 auto; gap: 10px; margin-top: auto; padding-top: 24px; }
.asovera-filter-actions button,
.asovera-filter-actions a { align-items: center; border: 0; display: flex; flex: 1; font: 500 16px/28px "Inter", sans-serif; height: 48px; justify-content: center; padding: 0 14px; text-decoration: none; text-transform: uppercase; }
.asovera-filter-actions button { background: var(--asovera-green); color: var(--asovera-on-primary); }
.asovera-filter-actions a { background: #fff; color: var(--asovera-green); }
body.asovera-filter-open { overflow: hidden; }

/* Single product */
.single-product .asovera-newsletter { display: none; }
.asovera-product-page { background: #fff; color: var(--asovera-ink); }
.asovera-product-main {
	align-items: start;
	display: grid;
	gap: 72px;
	grid-template-columns: minmax(0, 1fr) 512px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	padding: 40px 115px 0;
}
.asovera-product-gallery { align-self: start; aspect-ratio: 720 / 857; background: #fff; min-height: 0; overflow: hidden; position: relative; width: 100%; }
.asovera-product-gallery-slide { cursor: zoom-in; height: 100%; margin: 0; }
.asovera-product-gallery-slide[hidden] { display: none; }
.asovera-product-gallery-slide:focus-visible { outline: 2px solid var(--asovera-green); outline-offset: -2px; }
.asovera-product-gallery-image { height: 100%; object-fit: contain; width: 100%; }
.asovera-product-gallery-control {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-ink);
	display: flex;
	height: 48px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
}
.asovera-product-gallery-control.is-prev { left: 0; }
.asovera-product-gallery-control.is-next { right: 0; }
.asovera-product-gallery-control .asovera-product-icon-gallery-chevron { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); height: 58px; width: 58px; }
.asovera-product-gallery-control.is-prev .asovera-product-icon-gallery-chevron { transform: rotate(-90deg); }
.asovera-product-gallery-control.is-next .asovera-product-icon-gallery-chevron { transform: rotate(90deg); }
.asovera-product-lightbox {
	background: #fff;
	color: var(--asovera-ink);
	display: flex;
	flex-direction: column;
	height: 100dvh;
	inset: 0;
	overflow: hidden;
	position: fixed;
	width: 100vw;
	z-index: 1000000;
}
.asovera-product-lightbox[hidden] { display: none; }
body.asovera-lightbox-open { overflow: hidden; }
.asovera-product-lightbox-header {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	justify-content: space-between;
	min-height: 48px;
	padding: 10px 32px;
}
.asovera-product-lightbox-counter { color: var(--asovera-body); font: 500 16px/28px "Inter", sans-serif; }
.asovera-product-lightbox-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-body);
	cursor: pointer;
	display: flex;
	height: 24px;
	justify-content: center;
	padding: 0;
	width: 24px;
}
.asovera-product-lightbox-content {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
	min-height: 0;
	overflow: hidden;
	padding: 0 104px 32px;
	position: relative;
}
.asovera-product-lightbox-slide {
	aspect-ratio: 720 / 857;
	height: 100%;
	margin: 0;
	max-width: 100%;
	position: relative;
}
.asovera-product-lightbox-slide[hidden] { display: none; }
.asovera-product-lightbox-image {
	background: transparent;
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}
.asovera-product-lightbox-control {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-ink);
	cursor: pointer;
	display: flex;
	height: 72px;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 72px;
	z-index: 2;
}
.asovera-product-lightbox-control.is-prev { left: 32px; }
.asovera-product-lightbox-control.is-next { right: 32px; }
.asovera-product-lightbox-control .asovera-product-icon-gallery-chevron { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); height: 58px; width: 58px; }
.asovera-product-lightbox-control.is-prev .asovera-product-icon-gallery-chevron { transform: rotate(-90deg); }
.asovera-product-lightbox-control.is-next .asovera-product-icon-gallery-chevron { transform: rotate(90deg); }
.asovera-product-summary { padding-top: 28px; }
.asovera-product-summary h1 { font-size: 32px; font-weight: 400; line-height: 40px; margin: 0; }
.asovera-product-price { align-items: center; display: flex; flex-wrap: wrap; font-size: 24px; font-weight: 600; gap: 16px; line-height: 32px; margin-top: 24px; }
.asovera-product-price ins { order: 1; text-decoration: none; }
.asovera-product-price del { color: var(--asovera-muted); font-size: 16px; font-weight: 500; opacity: 1; order: 2; }
.asovera-product-price > .screen-reader-text { position: absolute !important; }
.asovera-product-attribute { margin-top: 20px; }
.asovera-product-attribute-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 8px; width: 100%; }
.asovera-product-label { color: var(--asovera-muted); display: block; font-size: 12px; line-height: 16px; text-transform: uppercase; }
.asovera-product-selected-value { color: var(--asovera-muted); font: 400 12px/16px "Inter", sans-serif; }
.asovera-product-options { display: flex; flex-wrap: wrap; gap: 0; }
.asovera-product-option {
	align-items: center;
	background: #fff;
	border: 1px solid var(--asovera-line);
	color: var(--asovera-ink);
	display: flex;
	font: 400 14px/22px "Inter", sans-serif;
	height: 48px;
	justify-content: center;
	min-width: 64px;
	padding: 0 16px;
}
.asovera-product-option.is-selected { border-color: var(--asovera-green); border-width: 1.6px; position: relative; z-index: 1; }
.asovera-product-option.is-color { aspect-ratio: 1; border: 1.5px solid transparent; border-radius: 999px; box-sizing: border-box; flex: 0 0 34px; height: 34px; margin-right: 4px; min-width: 34px; overflow: hidden; padding: 4px; width: 34px; }
.asovera-product-option.is-color::before { aspect-ratio: 1; background: var(--asovera-option-color); border: 1px solid color-mix(in srgb, var(--asovera-green) 12%, transparent); border-radius: 999px; box-sizing: border-box; content: ""; display: block; flex: 0 0 24px; height: 24px; width: 24px; }
.asovera-product-option.is-color.is-selected { border-color: var(--asovera-green); }
.asovera-product-option.is-color span { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.asovera-product-attribute-error { color: #b42318; font: 400 12px/20px "Inter", sans-serif; margin: 8px 0 0; }
.asovera-product-attribute-error[hidden] { display: none; }
.asovera-product-actions { display: grid; gap: 12px; margin-top: 40px; }
.asovera-product-actions .asovera-direct-order,
.asovera-product-unavailable,
.asovera-product-wishlist { border-radius: 0; box-sizing: border-box; height: 52px; margin: 0; width: 100%; }
.asovera-product-actions .asovera-direct-order { font-size: 12px; min-height: 52px; }
.asovera-product-actions .asovera-direct-order.is-disabled { background: var(--asovera-disabled-background); border-color: var(--asovera-disabled-background); color: var(--asovera-disabled-text); cursor: not-allowed; }
.asovera-product-actions .asovera-direct-order.is-disabled .asovera-product-icon { color: var(--asovera-disabled-icon); }
.asovera-product-icon { display: block; height: 20px; width: 20px; }
.asovera-product-wishlist,
.asovera-product-unavailable { background: #fff; border: 1px solid var(--asovera-green); color: var(--asovera-green); font: 500 12px/20px "Inter", sans-serif; text-transform: uppercase; }
.asovera-product-wishlist { align-items: center; display: flex; gap: 10px; justify-content: center; }
.asovera-product-wishlist .asovera-wishlist-icon { height: 20px; width: 20px; }
.asovera-product-unavailable { background: var(--asovera-disabled-background); border: 0; color: var(--asovera-muted); }
.asovera-product-wishlist.is-saved { background: var(--asovera-soft); }
.asovera-product-details { margin-top: 56px; }
.asovera-product-details details { border-bottom: 1px solid transparent; }
.asovera-product-details summary { cursor: pointer; font-size: 12px; line-height: 20px; list-style: none; padding: 22px 32px 22px 0; position: relative; text-transform: uppercase; }
.asovera-product-details summary::-webkit-details-marker { display: none; }
.asovera-product-details summary::after { content: "+"; font-size: 20px; font-weight: 300; position: absolute; right: 0; top: 21px; }
.asovera-product-details details[open] { border-color: var(--asovera-disabled-background); }
.asovera-product-details details[open] summary::after { content: "−"; }
.asovera-product-details details > div { color: var(--asovera-body); font-size: 14px; line-height: 22px; padding: 0 32px 20px 0; }
.asovera-product-details details > div p { margin: 0; }
.asovera-product-faq {
	display: grid;
	gap: 60px;
	grid-template-columns: minmax(0, 1fr) 739px;
	margin-left: auto;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	padding: 115px;
}
.asovera-product-faq h2 { font-size: 34px; line-height: 46px; margin: 0; }
.asovera-product-faq-list details { border-bottom: 1px solid var(--asovera-disabled-background); padding: 0 24px; }
.asovera-product-faq-list summary { cursor: pointer; font-size: 16px; line-height: 28px; list-style: none; padding: 24px 32px 24px 0; position: relative; }
.asovera-product-faq-list summary::-webkit-details-marker { display: none; }
.asovera-product-faq-list summary::after { content: "+"; font-size: 22px; font-weight: 300; position: absolute; right: 0; top: 23px; }
.asovera-product-faq-list details[open] summary::after { content: "−"; }
.asovera-product-faq-list details p { color: var(--asovera-body); font-size: 16px; line-height: 28px; margin: 0; padding: 0 32px 24px 0; }

@media (max-width: 1023px) {
	.asovera-product-main { display: block; padding: 0; }
	.asovera-product-gallery { height: auto; min-height: 0; }
	.asovera-product-gallery-slide { height: 100%; }
	.asovera-product-gallery-control { height: 56px; width: 56px; }
	.asovera-product-summary { padding: 56px 40px 0; }
	.asovera-product-summary h1 { font-size: 32px; line-height: 40px; }
	.asovera-product-faq { display: block; padding: 115px 40px 80px; }
	.asovera-product-faq h2 { margin-bottom: 64px; }
}

@media (max-width: 599px) {
	.single-product .asovera-newsletter { display: block; }
	.asovera-product-gallery,
	.asovera-product-gallery-slide { height: 460px; }
	.asovera-product-gallery-control { height: 40px; width: 40px; }
	.asovera-product-gallery-control .asovera-product-icon-gallery-chevron { height: 40px; width: 40px; }
	.asovera-product-lightbox-header { padding-inline: 20px; }
	.asovera-product-lightbox-content { padding: 0 20px 24px; }
	.asovera-product-lightbox-slide { height: auto; max-height: 100%; width: 100%; }
	.asovera-product-lightbox-control { height: 40px; width: 40px; }
	.asovera-product-lightbox-control.is-prev { left: 0; }
	.asovera-product-lightbox-control.is-next { right: 0; }
	.asovera-product-lightbox-control .asovera-product-icon-gallery-chevron { height: 40px; width: 40px; }
	.asovera-product-summary { padding: 40px 20px 0; }
	.asovera-product-summary h1 { font-size: 22px; line-height: 28px; }
	.asovera-product-price { font-size: 20px; gap: 10px; line-height: 28px; margin-top: 16px; }
	.asovera-product-price del { font-size: 14px; }
	.asovera-product-actions { margin-top: 28px; }
	.asovera-product-actions .asovera-direct-order,
	.asovera-product-unavailable,
	.asovera-product-wishlist { height: 48px; min-height: 48px; }
	.asovera-product-details { margin-top: 32px; }
	.asovera-product-details summary { font-size: 10px; line-height: 16px; padding-block: 20px; }
	.asovera-product-details summary::after { top: 18px; }
	.asovera-product-faq { padding: 72px 20px 60px; }
	.asovera-product-faq h2 { font-family: "Rufina", serif; font-size: 28px; font-weight: 400; letter-spacing: 0; line-height: 38px; margin: 0 auto 40px; text-align: center; }
	.asovera-product-faq-list details { padding: 0; }
	.asovera-product-faq-list summary { font-size: 10px; line-height: 16px; padding: 20px 28px 20px 0; }
	.asovera-product-faq-list summary::after { font-size: 18px; right: 4px; top: 18px; }
	.asovera-product-faq-list details p { font-size: 12px; line-height: 20px; padding: 0 28px 20px 0; }
}

.asovera-product-details summary {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
}
.asovera-product-faq-list summary {
	font-family: var(--wp--preset--font-family--body, "Inter", sans-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}
.asovera-product-details details > div,
.asovera-product-faq-list details p {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}

/* Editorial split */
.asovera-editorial-feature {
	gap: 0;
	margin-block: 0;
	min-height: 600px;
}
.asovera-editorial-feature > .wp-block-column { margin: 0; }
.asovera-editorial-media { background: #f0eae0; min-height: 600px; overflow: hidden; }
.asovera-editorial-media img { height: 100%; object-fit: cover; width: 100%; }
.asovera-editorial-copy {
	color: var(--asovera-on-primary);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 600px;
	padding: 72px;
}
.asovera-editorial-copy h2 { color: var(--asovera-on-primary); font-size: 3rem; line-height: 1.1; margin: 0; }
.asovera-editorial-copy h2 span { color: var(--asovera-accent-on-primary); }
.asovera-editorial-copy p { line-height: 1.75; margin-block: 1.5rem; max-width: 32rem; }
.asovera-editorial-copy .wp-block-button__link { align-items: center; background: color-mix(in srgb, var(--asovera-on-primary) 10%, transparent); border-color: color-mix(in srgb, var(--asovera-on-primary) 75%, transparent); box-sizing: border-box; color: var(--asovera-on-primary); display: inline-flex; font-size: 1rem; height: 52px; justify-content: center; padding-inline: 34px; vertical-align: top; }

/* Testimonial */
.asovera-testimonial { background: #fff; padding: 100px var(--asovera-gutter); }
.asovera-testimonial > .wp-block-columns {
	gap: clamp(4rem, 9vw, 8rem);
	margin-left: auto !important;
	margin-right: auto !important;
	max-width: var(--asovera-content-max);
	width: min(100%, var(--asovera-content-max));
}
.asovera-testimonial-visual { min-height: 480px; }
.asovera-testimonial-portrait { min-height: 480px; position: relative; }
.asovera-testimonial-slide {
	height: 100%;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 240ms ease, visibility 0s linear 240ms;
	visibility: hidden;
	width: 100%;
}
.asovera-testimonial-slide.is-active { opacity: 1; transition-delay: 0s; visibility: visible; z-index: 1; }
.asovera-testimonial-slide > img,
.asovera-testimonial-image-placeholder { height: 362px; object-fit: cover; object-position: center 38%; width: 301px; }
.asovera-testimonial-image-placeholder { background: var(--asovera-primary-subtle); }
.asovera-testimonial-card {
	background: var(--asovera-green);
	color: var(--asovera-on-primary);
	left: 109px;
	padding: 40px 44px;
	position: absolute;
	top: 258px;
	width: 327px;
}
.asovera-testimonial-card strong { color: var(--asovera-accent-on-primary); display: block; font-family: "Inter", sans-serif; font-size: 1.375rem; font-weight: 600; text-align: center; }
.asovera-testimonial-excerpt {
	font-size: .875rem;
	line-height: 1.55;
	margin-top: .75rem;
	min-height: 6.2em;
}
.asovera-testimonial-excerpt > p { margin: 0; }
.asovera-testimonial-show-more {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: inline;
	font: inherit;
	font-weight: 600;
	line-height: inherit;
	margin-left: 4px;
	padding: 0;
	white-space: nowrap;
}
.asovera-testimonial-show-more[hidden] { display: none; }
.asovera-testimonial-show-more:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.asovera-testimonial-copy { align-items: flex-start; display: flex; flex-direction: column; }
.asovera-testimonial-copy h2 { font-size: 2.25rem; line-height: 1.35; margin: 0; }
.asovera-testimonial-copy > p { color: var(--asovera-body); line-height: 1.875; margin-top: 1.5rem; max-width: 32.5rem; }
.asovera-testimonial-controls { align-items: center; align-self: flex-end; display: flex; gap: 22px; margin-top: 5rem; }
.asovera-testimonial-controls[hidden] { display: none !important; }
.asovera-testimonial-controls button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--asovera-ink);
	cursor: pointer;
	display: flex;
	font: inherit;
	font-size: 1.5rem;
	height: 56px;
	justify-content: center;
	padding: 0;
	width: 56px;
}
.asovera-testimonial-controls button.is-next { background: var(--asovera-green); color: var(--asovera-on-primary); }
.asovera-testimonial-controls button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.asovera-testimonial-controls-compact { display: none; }

.asovera-testimonial-modal {
	align-items: stretch;
	background: rgba(5, 21, 19, .48);
	display: flex;
	inset: 0;
	justify-content: flex-end;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 240ms ease;
	z-index: 1000000;
}
.asovera-testimonial-modal[hidden] { display: none; }
.asovera-testimonial-modal.is-open { opacity: 1; pointer-events: auto; }
.asovera-testimonial-modal-panel {
	background: #fff;
	display: flex;
	flex-direction: column;
	height: 100dvh;
	max-width: 100%;
	transform: translateX(100%);
	transition: transform 240ms ease;
	width: 668px;
}
.asovera-testimonial-modal.is-open .asovera-testimonial-modal-panel { transform: translateX(0); }
.asovera-testimonial-modal-header {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 16px;
	min-height: 82px;
	padding: 20px 60px 16px;
}
.asovera-testimonial-modal-header h2 {
	flex: 1;
	font-family: var(--wp--preset--font-family--display, "Rufina", serif);
	font-size: 34px;
	font-weight: 700;
	letter-spacing: .17px;
	line-height: 46px;
	margin: 0;
}
.asovera-testimonial-modal-close {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--asovera-muted);
	cursor: pointer;
	display: flex;
	flex: 0 0 32px;
	height: 32px;
	justify-content: center;
	padding: 0;
	width: 32px;
}
.asovera-testimonial-modal-close .asovera-icon { height: 32px; width: 32px; }
.asovera-testimonial-modal-close:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.asovera-testimonial-modal-list {
	flex: 1 1 auto;
	min-height: 0;
	overscroll-behavior: contain;
	overflow-y: auto;
	padding: 0 60px;
}
.asovera-testimonial-modal-item { background: #fff; padding: 24px 0; }
.asovera-testimonial-modal-reviewer { align-items: center; display: flex; gap: 12px; }
.asovera-testimonial-modal-reviewer img {
	border-radius: 50%;
	flex: 0 0 40px;
	height: 40px;
	object-fit: cover;
	width: 40px;
}
.asovera-testimonial-modal-reviewer h3 {
	font-family: var(--wp--preset--font-family--body, "Inter", sans-serif);
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin: 0;
}
.asovera-testimonial-modal-item > p {
	color: var(--asovera-body);
	font-family: var(--wp--preset--font-family--body, "Inter", sans-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin: 16px 0 0;
}
html.asovera-testimonial-modal-open,
body.asovera-testimonial-modal-open { overflow: hidden; overscroll-behavior: none; }

/* FAQ */
.asovera-faq {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	padding: 115px var(--asovera-gutter) !important;
}
.asovera-faq > h2 { font-size: 4rem; line-height: 1.15; margin: 0 auto; max-width: 805px; }
.asovera-faq-list { margin-top: 3.75rem; max-width: 1000px !important; }
.asovera-faq-list details { border-bottom: 1px solid var(--asovera-line); padding: 1.5rem; }
.asovera-faq-list > details { margin-block-start: 0 !important; }
.asovera-faq-list summary { cursor: pointer; font-family: "Inter", sans-serif; font-size: 1rem; line-height: 1.75; list-style: none; padding-right: 2rem; position: relative; }
.asovera-faq-list summary::-webkit-details-marker { display: none; }
.asovera-faq-list summary::after { content: "+"; font-size: 1.4rem; font-weight: 300; position: absolute; right: 0; top: 0; }
.asovera-faq-list details[open] summary::after { content: "−"; }
.asovera-faq-list details p { color: var(--asovera-body); font-family: "Inter", sans-serif; margin-bottom: 0; }
@media (min-width: 600px) {
	.asovera-faq-list details p { font-size: 1rem; font-weight: 400; line-height: 1.75; }
}

/* Default page template */
.asovera-page { background: #fff; margin-block-start: 0 !important; }
.asovera-page-hero {
	background: var(--asovera-accent-soft);
	margin-block-start: 0 !important;
	padding: 42px var(--asovera-gutter);
}
.asovera-page-title {
	color: var(--asovera-ink);
	font-family: "Rufina", serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: .17px;
	line-height: 46px;
	margin: 0;
}
.asovera-page-content {
	margin-left: auto !important;
	margin-block-start: 0 !important;
	margin-right: auto !important;
	max-width: 790px !important;
	padding: 60px 0 80px !important;
	width: min(calc(100% - 230px), 790px);
}
.asovera-page-content.has-global-padding,
.asovera-page-content .wp-block-post-content.has-global-padding {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.asovera-page-content .wp-block-post-content {
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100%;
}
.asovera-page-content .wp-block-post-content > * {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100% !important;
}
.asovera-page-content .wp-block-post-content > * + * { margin-block-start: 16px; }
.asovera-page-content p,
.asovera-page-content li {
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}
.asovera-page-content p { margin-bottom: 0; }
.asovera-page-content h2,
.asovera-page-content h3,
.asovera-page-content h4 {
	color: var(--asovera-ink);
	font-family: "Inter", sans-serif;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 0;
}
.asovera-page-content h2 {
	font-size: 24px;
	line-height: 32px;
}
.asovera-page-content h3,
.asovera-page-content h4 {
	font-size: 22px;
	line-height: 28px;
}
.asovera-page-content p + h2,
.asovera-page-content ul + h2,
.asovera-page-content ol + h2,
.asovera-page-content p + h3,
.asovera-page-content ul + h3,
.asovera-page-content ol + h3 { margin-block-start: 46px; }

/* Wishlist page */
.asovera-wishlist-view .asovera-page-content {
	max-width: var(--asovera-content-max) !important;
	padding-bottom: 115px !important;
	width: calc(100% - (2 * var(--asovera-gutter)));
}
.asovera-wishlist-view .asovera-page-content .wp-block-post-content > .asovera-wishlist-page {
	max-width: var(--asovera-content-max) !important;
}
.asovera-wishlist-page { color: var(--asovera-ink); min-height: 420px; }
.asovera-wishlist-grid {
	display: grid;
	gap: 56px 8px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.asovera-wishlist-view :where(.asovera-catalogue-card) h2 {
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	margin: 0;
}
.asovera-wishlist-empty { padding: 80px 20px; }
.asovera-page-content .asovera-wishlist-empty h2 {
	font-family: "Rufina", serif;
	font-size: 34px;
	line-height: 46px;
}
.asovera-page-content .asovera-wishlist-empty p { margin-top: 16px; }
.asovera-wishlist-shop {
	background: var(--asovera-green);
	color: var(--asovera-on-primary);
	font: 600 12px/20px "Inter", sans-serif;
	min-height: 52px;
	text-transform: uppercase;
}
.asovera-wishlist-loading,
.asovera-wishlist-error { color: var(--asovera-body); padding: 72px 20px; }

/* About page */
.asovera-about-page { background: #fff; margin-block-start: 0 !important; }
.asovera-about-hero {
	align-items: stretch;
	background: #fff;
	display: grid;
	gap: 60px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin-left: auto;
	margin-block-start: 0 !important;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	padding: 60px 115px 68px;
}
.asovera-about-copy {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-block-start: 0 !important;
	min-width: 0;
}
.asovera-about-title {
	color: var(--asovera-ink);
	font-family: "Rufina", serif;
	font-size: 64px;
	font-weight: 700;
	letter-spacing: .32px;
	line-height: 1;
	margin: 0 0 32px;
}
.asovera-about-content {
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin-block-start: 0 !important;
	max-width: 100%;
	white-space: normal;
}
.asovera-about-content > * {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: 100% !important;
}
.asovera-about-content > * + * { margin-block-start: 0; }
.asovera-about-content .wp-block-spacer { display: none; }
.asovera-about-content p {
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 0;
	margin-top: 0;
}
.asovera-about-content p:nth-of-type(4) { margin-bottom: 28px; }
.asovera-about-content h2,
.asovera-about-content h3 {
	color: var(--asovera-ink);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	margin: 0;
}
.asovera-about-visual {
	aspect-ratio: 575 / 656;
	margin: 0;
	margin-block-start: 0 !important;
	min-width: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.asovera-about-visual img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

/* Contact page */
.asovera-contact-page {
	background: #fff;
	margin-block-start: 0 !important;
}
.asovera-contact-hero {
	align-items: center;
	display: flex;
	gap: 60px;
	justify-content: space-between;
	margin-left: auto;
	margin-block-start: 0 !important;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	min-height: 300px;
	padding: 60px 115px;
	width: 100%;
}
.asovera-contact-title {
	color: var(--asovera-ink);
	flex: 1 1 0;
	font-family: "Rufina", serif;
	font-size: 64px;
	font-weight: 700;
	letter-spacing: .32px;
	line-height: 1;
	margin: 0;
	min-width: 0;
}
.asovera-contact-intro {
	margin-block-start: 0 !important;
	max-width: 686px;
	width: 686px;
}
.asovera-contact-intro > * {
	margin-block: 0;
	max-width: none !important;
}
.asovera-contact-intro p {
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .024px;
	line-height: 30px;
}
.asovera-contact-details {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-left: auto;
	margin-block-start: 0 !important;
	margin-right: auto;
	max-width: var(--asovera-site-max);
	padding: 20px 115px 80px;
	width: 100%;
}
.asovera-contact-detail {
	align-items: center;
	border-right: 1px solid var(--asovera-line);
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	min-height: 84px;
	text-align: center;
}
.asovera-contact-detail:last-child { border-right: 0; }
.asovera-contact-detail-icon {
	color: #b7966f;
	display: inline-flex;
	height: 28px;
	margin: 0;
	width: 28px;
}
.asovera-contact-detail-icon img {
	display: block;
	height: 28px;
	width: 28px;
}
.asovera-contact-icon { display: block; }
.asovera-contact-detail-copy {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-block-start: 0 !important;
}
.asovera-contact-detail-label {
	color: var(--asovera-body);
	font-family: "Inter", sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 16px;
	margin: 0;
	text-transform: uppercase;
}
.asovera-contact-detail-value,
.asovera-contact-detail-value a {
	color: var(--asovera-ink);
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 28px;
	margin: 0;
	text-decoration: none;
}

/* Newsletter and footer */
.asovera-newsletter { color: var(--asovera-on-primary); overflow: hidden; padding: 80px var(--asovera-gutter); position: relative; }
.asovera-newsletter > .wp-block-columns { max-width: var(--asovera-content-max); }
.asovera-newsletter h2 { font-size: 3rem; margin: 0 0 1.25rem; }
.asovera-newsletter p { line-height: 1.75; margin: 0; max-width: 34rem; }
.asovera-newsletter-form { margin-left: auto; max-width: 433px; position: relative; width: 100%; }
.asovera-newsletter-form-row,
.asovera-newsletter-form:not([data-asovera-newsletter-form]) { border: 1px solid var(--asovera-on-primary); display: flex; height: 58px; }
.asovera-newsletter-form-row:focus-within,
.asovera-newsletter-form:not([data-asovera-newsletter-form]):focus-within { border-color: var(--asovera-accent-on-primary); border-width: 1.6px; }
.asovera-newsletter-form input[type="email"] { background: transparent; border: 0; color: var(--asovera-on-primary); flex: 1; font: 500 1rem "Inter", sans-serif; min-width: 0; outline: 0; padding: 0 1.5rem; }
.asovera-newsletter-form input[type="email"]::placeholder { color: var(--asovera-on-primary); opacity: 1; }
.asovera-newsletter-form button { background: color-mix(in srgb, var(--asovera-on-primary) 5%, transparent); border: 0; border-left: 1px solid var(--asovera-on-primary); color: var(--asovera-on-primary); cursor: pointer; font: 500 1rem "Inter", sans-serif; padding-inline: 1.6rem; text-transform: uppercase; }
.asovera-newsletter-form button:disabled { cursor: wait; opacity: .7; }
.asovera-newsletter-consent { align-items: flex-start; display: flex; font-size: .8rem; gap: .625rem; line-height: 1.5; margin-top: 12px; }
.asovera-newsletter-consent input { accent-color: var(--asovera-gold); flex: 0 0 auto; margin-top: .2em; }
.asovera-newsletter-honeypot { height: 1px !important; left: -10000px !important; opacity: 0 !important; pointer-events: none !important; position: absolute !important; top: auto !important; width: 1px !important; }
.asovera-newsletter .asovera-newsletter-status { font-size: .8rem; line-height: 1.5; margin: 10px 0 0 !important; min-height: 1.2rem; }
.asovera-newsletter-status.is-success,
.asovera-newsletter-status.is-error { font-weight: 600; }
.asovera-newsletter-status.is-error { color: var(--asovera-on-primary); }

.asovera-site-footer { overflow: hidden; padding: 80px var(--asovera-gutter) 24px; position: relative; }
.asovera-site-footer > .wp-block-columns,
.asovera-site-footer > .asovera-footer-meta { max-width: 1220px; position: relative; z-index: 2; }
.asovera-site-footer > .wp-block-columns {
	align-items: start;
	column-gap: 100px;
	display: grid;
	grid-template-columns: minmax(214px, 1fr) repeat(3, max-content);
	margin-bottom: 0;
}
.asovera-site-footer .wp-block-site-logo { margin: 0; }
.asovera-site-footer .wp-block-site-logo img { height: 48px; object-fit: contain; width: 156px !important; }
.asovera-site-footer .wp-block-social-links { gap: 1.125rem; margin-top: 2rem; }
.asovera-site-footer .wp-social-link { border: 1px solid var(--asovera-line); }
.asovera-site-footer .asovera-brand-details { margin-top: 34px; }
.asovera-site-footer .asovera-social-links { gap: 18px; }
.asovera-site-footer .asovera-social-link {
	border: 1px solid var(--asovera-line);
	border-radius: 50%;
	box-sizing: border-box;
	color: var(--asovera-muted);
	flex: 0 0 32px;
	height: 32px;
	overflow: hidden;
	text-decoration: none;
	width: 32px;
}
.asovera-site-footer .asovera-social-link.is-placeholder { pointer-events: none; }
.asovera-site-footer .asovera-social-links svg { display: block; fill: currentColor; height: 17.6px; width: 17.6px; }
.asovera-footer-navigation { margin: 0; }
.asovera-footer-menu-list { align-items: flex-start; display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.asovera-footer-menu-list .menu-item { margin: 0; }
.asovera-footer-menu-list a { color: var(--asovera-body); font-size: 16px; line-height: 28px; text-decoration: none; }
.asovera-site-footer .wp-block-navigation { gap: 16px; }
.asovera-site-footer .wp-block-navigation a { color: var(--asovera-body); font-size: 16px; line-height: 28px; text-decoration: none; }
.asovera-site-footer h6 { font-family: "Inter", sans-serif; font-size: 16px; line-height: 24px; margin: 0 0 24px; }
.asovera-footer-meta { border: 0; margin-top: 100px; padding: 20px 0 10px; }
.asovera-footer-meta p { color: var(--asovera-body); font-size: 14px !important; line-height: 22px; margin: 0; }
.asovera-footer-attribution strong { color: var(--asovera-body); font-weight: 500; }
.asovera-footer-watermark {
	color: #bfc2c1 !important;
	font-family: "Rufina", serif !important;
	font-size: clamp(9rem, 23vw, 20rem) !important;
	font-weight: 400;
	left: 50%;
	line-height: .7;
	margin: 0 !important;
	opacity: .55;
	pointer-events: none;
	position: absolute;
	text-decoration: none;
	top: 54%;
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 0;
}

@media (max-width: 781px) {
	body { --wp--style--root--padding-right: 20px; --wp--style--root--padding-left: 20px; }
	.asovera-announcement { justify-content: center; padding-inline: 44px; text-align: center; }
	.asovera-announcement-close { right: 20px; }
	.asovera-page-hero { padding: 42px 20px; }
	.asovera-page-content { max-width: none !important; padding: 32px 0 60px; width: calc(100% - 40px); }
	.asovera-page-content h2,
	.asovera-page-content h3,
	.asovera-page-content h4 { font-size: 22px; line-height: 28px; }
	.asovera-about-hero { display: flex; flex-direction: column; gap: 32px; padding: 40px 20px; }
	.asovera-about-copy { display: contents; }
	.asovera-about-title { font-size: 34px; letter-spacing: .17px; line-height: 46px; margin: 0 0 8px; order: 1; }
	.asovera-about-visual { aspect-ratio: auto; height: 400px; order: 2; width: 100%; }
	.asovera-about-content { order: 3; white-space: normal; }
	.asovera-contact-hero {
		align-items: flex-start;
		display: flex;
		flex-direction: column;
		gap: 16px;
		min-height: 0;
		padding: 40px 20px 24px;
	}
	.asovera-contact-title {
		flex: 0 0 auto;
		font-size: 34px;
		letter-spacing: .17px;
		line-height: 46px;
		width: 100%;
	}
	.asovera-contact-intro { max-width: none; width: 100%; }
	.asovera-contact-intro p {
		font-size: 14px;
		letter-spacing: .25px;
		line-height: 26px;
	}
	.asovera-contact-details {
		display: flex;
		flex-direction: column;
		padding: 12px 20px 40px;
	}
	.asovera-contact-detail {
		align-items: center;
		border-bottom: 1px solid var(--asovera-line);
		border-right: 0;
		flex-direction: row;
		gap: 16px;
		justify-content: flex-start;
		min-height: 0;
		padding: 20px 0;
		text-align: left;
	}
	.asovera-contact-detail:last-child { border-bottom: 0; }
	.asovera-contact-detail-copy { align-items: flex-start; }
	.asovera-catalogue { padding: 32px 20px 60px; }
	.asovera-catalogue-intro { display: block; }
	.asovera-catalogue-intro h1 { font-size: 32px; line-height: 40px; }
	.asovera-catalogue-intro p { font-size: 14px; line-height: 22px; margin-top: 12px; max-width: none; }
	.asovera-catalogue-toolbar { align-items: flex-start; display: block; margin-top: 32px; }
	.asovera-category-chips { gap: 8px; }
	.asovera-category-chip { font-size: 10px; gap: 5px; height: 32px; padding: 6px 8px; }
	.asovera-catalogue-chip-icon { height: 14px; width: 14px; }
	.asovera-filter-toggle { margin-top: 16px; }
	.asovera-catalogue-grid { gap: 40px 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 48px; }
	.asovera-catalogue-card-copy { padding-top: 12px; }
	.asovera-catalogue-card h2 { font-size: 12px; line-height: 18px; }
	.asovera-catalogue-price { align-items: flex-start; flex-direction: column; font-size: 12px; gap: 0; line-height: 18px; margin-top: 6px; }
	.asovera-catalogue-price del { font-size: 10px; line-height: 16px; }
	.asovera-pagination { margin-top: 60px; }
	.asovera-filter-drawer { width: 100%; }
	.asovera-filter-toggle-count { font-size: 11px; margin-left: 0; padding-inline: 6px; }

	.asovera-hero {
		align-items: flex-end;
		background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--asovera-hero-mobile);
		background-position: 62% center;
		min-height: 700px !important;
		padding: 40px 20px !important;
	}
	.asovera-hero .wp-block-cover__inner-container { padding-inline: 0; }
	.asovera-hero-content { padding-inline: 0 !important; width: 100%; }
	.asovera-hero h1 { font-size: 2.625rem; line-height: 1.12; max-width: none; text-align: left; white-space: nowrap; }
	.asovera-hero-actions { flex-wrap: nowrap; gap: 8px; margin-top: 2rem; width: 100%; }
	.asovera-hero-actions .wp-block-button { flex: 1 1 0; min-width: 0; }
	.asovera-hero-actions .wp-block-button__link { font-size: .75rem; height: 52px; padding-inline: .5rem; }
	.asovera-label-desktop { display: none; }
	.asovera-label-mobile { display: inline; }

	.asovera-product-section { padding: 24px 20px 40px !important; }
	.asovera-product-section.asovera-product-recent { padding-top: 40px !important; }
	.asovera-product-section { --asovera-rail-bleed: 20px; }
	.asovera-product-section h2 { font-size: 1.75rem; line-height: 2.375rem; }
	.asovera-product-section > .wp-block-group p { font-size: .75rem !important; }
	.asovera-product-section .woocommerce { margin-top: 20px; overflow: hidden; }
	.asovera-product-section .products { display: flex !important; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.asovera-product-section .products::-webkit-scrollbar { display: none; }
	.asovera-product-section .products li.product { flex: 0 0 calc(50% - 4px); scroll-snap-align: start; }
	.woocommerce ul.products li.product a img { margin-bottom: .75rem !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: .75rem; line-height: 1.35; }
	.woocommerce ul.products li.product .price { align-items: flex-start; flex-direction: column; font-size: .875rem; gap: .1rem; }
	.woocommerce ul.products li.product .price del { font-size: .75rem; }

	.asovera-editorial-feature { display: block; min-height: 0; }
	.asovera-editorial-media { height: 380px; min-height: 380px; }
	.asovera-editorial-copy { min-height: 0; padding: 60px 20px; }
	.asovera-editorial-copy h2 { font-size: 2rem; line-height: 1.25; }
	.asovera-editorial-copy p { font-size: .95rem; }

	.asovera-testimonial { padding: 60px 20px; }
	.asovera-testimonial > .wp-block-columns { display: flex; flex-direction: column; gap: 60px; }
	.asovera-testimonial-copy { order: -1; width: 100%; }
	.asovera-testimonial-copy h2,
	.asovera-faq > h2 { font-family: var(--wp--preset--font-family--display, "Rufina", serif); font-size: 2.125rem !important; font-weight: 700; line-height: 1.35; }
	.asovera-testimonial-copy > p { font-size: 1rem; line-height: 1.75; }
	.asovera-testimonial-copy .asovera-testimonial-controls { display: none; }
	.asovera-testimonial-controls-compact { align-self: center; display: flex; margin-top: 60px; }
	.asovera-testimonial-visual { min-height: 480px; width: 100%; }
	.asovera-testimonial-portrait { min-height: 480px; }
	.asovera-testimonial-slide > img,
	.asovera-testimonial-image-placeholder { height: 362px; object-position: center 38%; width: 100%; }
	.asovera-testimonial-card { bottom: 0; left: 0; padding: 40px 20px; top: auto; width: 100%; }

	.asovera-faq { padding: 60px 24px !important; }
	.asovera-faq-list { margin-top: 26px; }
	.asovera-faq-list details { padding: 1.5rem .5rem; }

	.asovera-newsletter { padding: 60px 20px; }
	.asovera-newsletter > .wp-block-columns { gap: 40px; }
	.asovera-newsletter h2 { font-size: 2rem; line-height: 1.25; }
	.asovera-newsletter-form { margin-left: 0; max-width: none; width: 100%; }
	.asovera-newsletter-form input[type="email"] { padding-inline: 1rem; }
	.asovera-newsletter-form button { font-size: .75rem; padding-inline: .8rem; }

	.asovera-site-footer { padding: 48px 20px 24px; }
	.asovera-site-footer > .wp-block-columns {
		column-gap: 24px;
		grid-template-columns: minmax(123px, 1fr) minmax(123px, 146px);
		margin-inline: 0 !important;
		max-width: 328px;
		width: 100%;
	}
	.asovera-site-footer > .wp-block-columns > .wp-block-column:first-child { display: contents; margin-bottom: 0; }
	.asovera-site-footer .wp-block-site-logo { grid-column: 1 / -1; grid-row: 1; margin: 0 0 60px; }
	.asovera-site-footer .wp-block-site-logo img { height: 34px; width: 110px !important; }
	.asovera-site-footer > .wp-block-columns > .wp-block-column:nth-child(2) { grid-column: 1; grid-row: 2; }
	.asovera-site-footer > .wp-block-columns > .wp-block-column:nth-child(3) { grid-column: 2; grid-row: 2; }
	.asovera-site-footer > .wp-block-columns > .wp-block-column:nth-child(4) { grid-column: 1; grid-row: 3; margin-top: 32px; }
	.asovera-site-footer h6 { margin-bottom: 20px; }
	.asovera-site-footer .wp-block-navigation { gap: 12px; }
	.asovera-site-footer .wp-block-navigation a { font-size: 14px; line-height: 22px; }
	.asovera-site-footer .asovera-footer-menu-list { gap: 12px; }
	.asovera-site-footer .asovera-footer-menu-list a { font-size: 14px; line-height: 22px; }
	.asovera-site-footer .asovera-brand-details { grid-column: 1 / -1; grid-row: 4; margin-top: 60px; }
	.asovera-site-footer .asovera-social-links { gap: 12px; }
	.asovera-footer-meta { align-items: flex-start; flex-direction: row; gap: 16px; justify-content: space-between; margin-top: 20px; padding: 20px 0 10px; width: 100%; }
	.asovera-footer-meta p { font-size: 12px !important; line-height: 16px; white-space: nowrap; }
	.asovera-footer-watermark { font-size: 8rem !important; top: 100%; transform: translate(-50%, -60%); }
}

@media (max-width: 1023px) {
	body:not(.home) .wp-site-blocks { padding-top: 65px; }
	body:not(.home).asovera-has-announcement .wp-site-blocks { padding-top: 101px; }
	.single-product .wp-site-blocks > * { margin-block-start: 0; }
	.asovera-header-inner { gap: 0; min-height: 65px; padding: 10px 20px; }
	.asovera-desktop-nav { display: none; }
	.asovera-mobile-nav .asovera-more-submenu {
		background: transparent;
		border: 0;
		box-shadow: none;
		display: none;
		gap: 16px;
		margin: 12px 0 0;
		min-width: 0;
		opacity: 1;
		padding: 0 0 0 16px;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
	}
	.asovera-mobile-nav .asovera-more-menu.is-open > .asovera-more-submenu { display: flex; flex-direction: column; }
	.asovera-mobile-nav .asovera-more-submenu::before { display: none; }
	.asovera-mobile-nav .asovera-more-submenu a { padding: 0; }
	.asovera-menu-toggle { display: inline-flex; flex: 0 0 24px; }
	.asovera-header-logo {
		height: 34.5px;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 112px;
	}
	.asovera-header-actions { flex: 1 1 auto; gap: 16px; }
}

@media (min-width: 600px) and (max-width: 1023px) {
	body { --wp--style--root--padding-right: 40px; --wp--style--root--padding-left: 40px; }

	.asovera-header-logo,
	.asovera-mobile-menu-logo { height: 34.5px; width: 112px; }
	.asovera-mobile-menu { width: 375px; }
	.asovera-announcement { justify-content: center; padding-inline: 48px; text-align: center; }
	.asovera-page-hero { padding: 42px 40px; }
	.asovera-page-content { max-width: 688px !important; padding: 60px 0 80px; width: calc(100% - 80px); }
	.asovera-page-content h2 { font-size: 24px; line-height: 32px; }
	.asovera-page-content h3,
	.asovera-page-content h4 { font-size: 24px; line-height: 32px; }
	.asovera-about-hero { display: flex; flex-direction: column; gap: 60px; padding: 40px 40px 68px; }
	.asovera-about-copy { display: flex; flex-direction: column; gap: 0; order: initial; }
	.asovera-about-title { font-size: 48px; letter-spacing: .24px; line-height: 1; margin-bottom: 40px; order: initial; }
	.asovera-about-visual { aspect-ratio: 575 / 656; height: auto; order: initial; width: 100%; }
	.asovera-about-content { order: initial; white-space: normal; }
	.asovera-contact-hero {
		align-items: flex-start;
		display: flex;
		flex-direction: column;
		gap: 28px;
		min-height: 0;
		padding: 40px;
	}
	.asovera-contact-title {
		flex: 0 0 auto;
		font-size: 48px;
		letter-spacing: .24px;
		line-height: 1;
		width: 100%;
	}
	.asovera-contact-intro { max-width: 688px; width: 100%; }
	.asovera-contact-intro p { font-size: 16px; line-height: 28px; }
	.asovera-contact-details {
		display: grid;
		gap: 20px 32px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 12px 40px 60px;
	}
	.asovera-contact-detail {
		align-items: center;
		border: 0;
		flex-direction: row;
		gap: 16px;
		justify-content: flex-start;
		min-height: 68px;
		text-align: left;
	}
	.asovera-contact-detail-copy { align-items: flex-start; }
	.asovera-catalogue { padding: 60px 40px; }
	.asovera-catalogue-intro { display: block; }
	.asovera-catalogue-intro h1 { font-size: 48px; line-height: 59px; }
	.asovera-catalogue-intro p { font-size: 16px; line-height: 28px; margin: 20px 0 0; max-width: 688px; }
	.asovera-catalogue-toolbar { align-items: flex-start; display: block; margin-top: 60px; }
	.asovera-category-chips { gap: 12px; }
	.asovera-category-chip { font-size: 12px; gap: 8px; height: 36px; padding: 8px 12px; }
	.asovera-catalogue-chip-icon { height: 18px; width: 18px; }
	.asovera-filter-toggle { margin-top: 24px; }
	.asovera-catalogue-grid { gap: 48px 8px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 60px; }
	.asovera-catalogue-card-copy { padding-top: 16px; }
	.asovera-catalogue-card h2 { font-size: 14px; line-height: 22px; }
	.asovera-catalogue-price { align-items: center; flex-direction: row; font-size: 14px; gap: 8px; line-height: 22px; margin-top: 8px; }
	.asovera-catalogue-price del { font-size: 12px; line-height: 18px; }
	.asovera-pagination { margin-top: 60px; }
	.asovera-filter-drawer { width: 420px; }

	.asovera-hero {
		align-items: flex-end;
		background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--asovera-hero-mobile);
		background-position: 62% center;
		min-height: 700px !important;
		padding: 40px 40px 60px !important;
	}
	.asovera-hero .wp-block-cover__inner-container { padding-inline: 0; }
	.asovera-hero h1 { font-size: 48px; line-height: 1.08; max-width: none; text-align: left; white-space: nowrap; }
	.asovera-hero-actions { flex-wrap: nowrap; gap: 14px; margin-top: 32px; width: auto; }
	.asovera-hero-actions .wp-block-button { flex: 0 0 auto; min-width: 190px; }
	.asovera-hero-actions .wp-block-button__link { font-size: 12px; padding-inline: 24px; }
	.asovera-label-desktop { display: inline; }
	.asovera-label-mobile { display: none; }

	.asovera-product-section { min-height: 730px; padding: 60px 40px !important; }
	.asovera-product-section { --asovera-rail-bleed: 40px; }
	.asovera-product-section h2 { font-size: 48px; line-height: 59px; }
	.asovera-product-section > .wp-block-group p { font-size: 12px !important; }
	.asovera-product-section .woocommerce { margin-top: 48px; max-width: none; overflow: hidden; }
	.asovera-product-section .products { display: flex !important; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
	.asovera-product-section .products::-webkit-scrollbar { display: none; }
	.asovera-product-section .products li.product { flex: 0 0 296.5px; scroll-snap-align: start; }
	.woocommerce ul.products li.product a img { margin-bottom: 16px !important; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; line-height: 22px; }
	.woocommerce ul.products li.product .price { align-items: center; flex-direction: row; font-size: 16px; gap: 8px; }
	.woocommerce ul.products li.product .price del { font-size: 14px; }

	.asovera-editorial-feature { display: block; min-height: 0; }
	.asovera-editorial-media { height: 598px; min-height: 598px; }
	.asovera-editorial-copy { min-height: 442px; padding: 80px 72px; }
	.asovera-editorial-copy h2 { font-size: 48px; line-height: 1.08; }
	.asovera-editorial-copy p { font-size: 16px; line-height: 28px; margin-block: 24px 32px; }

	.asovera-testimonial { padding: 60px 40px; }
	.asovera-testimonial > .wp-block-columns { display: flex; flex-direction: column; gap: 60px; max-width: none; }
	.asovera-testimonial-copy { order: -1; width: 100%; }
	.asovera-testimonial-copy h2 { font-size: 48px; line-height: 59px; white-space: nowrap; }
	.asovera-testimonial-copy > p { font-size: 16px; line-height: 30px; margin-top: 24px; max-width: 575px; }
	.asovera-testimonial-copy .asovera-testimonial-controls { display: none; }
	.asovera-testimonial-visual { min-height: 626px; width: 100%; }
	.asovera-testimonial-portrait { min-height: 626px; }
	.asovera-testimonial-slide > img,
	.asovera-testimonial-image-placeholder { height: 571px; object-position: center 38%; width: 475px; }
	.asovera-testimonial-card { bottom: auto; left: 243px; min-height: 237px; padding: 48px 40px 40px; top: 389px; width: 445px; }
	.asovera-testimonial-card strong { font-size: 22px; }
	.asovera-testimonial-excerpt { font-size: 16px; line-height: 28px; margin-top: 12px; min-height: 112px; }
	.asovera-testimonial-controls-compact { align-self: center; display: flex; margin-top: 60px; }

	.asovera-faq { max-width: none !important; padding: 60px 40px !important; }
	.asovera-faq > h2 { font-size: 48px; line-height: 59px; max-width: none; white-space: nowrap; }
	.asovera-faq > h2 br { display: none; }
	.asovera-faq-list { margin-top: 60px; max-width: none !important; }
	.asovera-faq-list details { min-height: 76px; padding: 24px; }

	.asovera-newsletter { padding: 60px 40px; }
	.asovera-newsletter > .wp-block-columns { display: flex; flex-direction: column; gap: 40px; max-width: none; }
	.asovera-newsletter > .wp-block-columns > .wp-block-column { flex-basis: auto !important; width: 100%; }
	.asovera-newsletter h2 { font-size: 48px; line-height: 59px; }
	.asovera-newsletter p { font-size: 16px; line-height: 28px; max-width: 434px; }
	.asovera-newsletter-form { margin-left: 0; max-width: 434px; width: min(100%, 434px); }
	.asovera-newsletter-form input[type="email"] { padding-inline: 26px; }
	.asovera-newsletter-form button { font-size: 16px; padding-inline: 26px; }

	.asovera-site-footer { padding: 60px 40px 24px; }
	.asovera-site-footer > .wp-block-columns {
		display: grid;
		gap: 60px 0;
		grid-template-columns: repeat(3, 172px);
		justify-content: space-between;
		max-width: none;
		width: 100%;
	}
	.asovera-site-footer > .wp-block-columns > .wp-block-column:first-child { display: contents; }
	.asovera-site-footer .wp-block-site-logo { grid-column: 1 / -1; grid-row: 1; margin: 0; }
	.asovera-site-footer .wp-block-site-logo img { height: 48px; object-fit: contain; width: 156px !important; }
	.asovera-site-footer > .wp-block-columns > .wp-block-column:nth-child(2) { grid-column: 1; grid-row: 2; }
	.asovera-site-footer > .wp-block-columns > .wp-block-column:nth-child(3) { grid-column: 2; grid-row: 2; }
	.asovera-site-footer > .wp-block-columns > .wp-block-column:nth-child(4) { grid-column: 3; grid-row: 2; margin-top: 0; }
	.asovera-site-footer .wp-block-social-links { grid-column: 1 / -1; grid-row: 3; margin: 0; }
	.asovera-site-footer .asovera-brand-details { grid-column: 1 / -1; grid-row: 3; margin: 0; }
	.asovera-site-footer .asovera-social-links { gap: 14px; }
	.asovera-site-footer h6 { margin-bottom: 20px; }
	.asovera-site-footer .wp-block-navigation { gap: 12px; }
	.asovera-site-footer .wp-block-navigation a { font-size: 16px; line-height: 28px; }
	.asovera-site-footer .asovera-footer-menu-list { gap: 12px; }
	.asovera-site-footer .asovera-footer-menu-list a { font-size: 16px; line-height: 28px; }
	.asovera-footer-meta { align-items: center; flex-direction: row; margin-top: 20px; max-width: none !important; padding: 20px 0 10px; width: 100%; }
	.asovera-footer-meta p { font-size: 12px !important; line-height: 16px; }
	.asovera-footer-watermark { font-size: 12rem !important; top: 100%; transform: translate(-50%, -60%); }
}

/* Preserve the product-page heading style while reusing the homepage rail. */
.asovera-product-section.asovera-product-recent h2 {
	font-family: "Rufina", serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: .17px;
	line-height: 46px;
}

@media (max-width: 599px) {
	.asovera-product-section.asovera-product-recent h2 {
		font-size: 28px;
		font-weight: 400;
		letter-spacing: 0;
		line-height: 38px;
	}
}

@media (max-width: 599px) {
	.asovera-newsletter { padding: 60px 20px; }
	.asovera-newsletter h2 { font-size: 2rem; line-height: 1.25; }
	.asovera-newsletter-form input[type="email"] { padding-inline: 1rem; }
	.asovera-newsletter-form button { font-size: .75rem; padding-inline: .8rem; }

	.asovera-testimonial-modal { align-items: flex-end; }
	.asovera-testimonial-modal-panel {
		height: calc(100dvh - 14px);
		transform: translateY(100%);
		width: 100%;
	}
	.asovera-testimonial-modal.is-open .asovera-testimonial-modal-panel { transform: translateY(0); }
	.asovera-testimonial-modal-header { min-height: 60px; padding: 14px 20px; }
	.asovera-testimonial-modal-header h2 {
		font-family: var(--wp--preset--font-family--body, "Inter", sans-serif);
		font-size: 22px;
		font-weight: 600;
		letter-spacing: 0;
		line-height: 28px;
	}
	.asovera-testimonial-modal-list { padding: 0 20px; }
}

/* Shared body typography for supporting homepage copy. */
.asovera-editorial-copy > p,
.asovera-testimonial-copy > p,
.asovera-newsletter p {
	font-family: var(--wp--preset--font-family--body, "Inter", sans-serif);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
}

@media (min-width: 600px) and (max-width: 1023px) {
	.asovera-testimonial-modal-panel { width: min(628px, 100%); }
	.asovera-testimonial-modal-header { min-height: 68px; padding: 20px 60px 16px 40px; }
	.asovera-testimonial-modal-header h2 {
		font-family: var(--wp--preset--font-family--body, "Inter", sans-serif);
		font-size: 22px;
		font-weight: 600;
		letter-spacing: 0;
		line-height: 28px;
	}
	.asovera-testimonial-modal-list { padding: 0 40px; }

	.asovera-wishlist-view .asovera-page-content {
		max-width: none !important;
		padding-bottom: 80px !important;
		width: calc(100% - 80px);
	}
	.asovera-wishlist-grid { gap: 48px 8px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 599px) {
	.asovera-wishlist-view .asovera-page-content {
		max-width: none !important;
		padding-bottom: 60px !important;
		width: calc(100% - 40px);
	}
	.asovera-wishlist-grid { gap: 40px 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.asovera-wishlist-empty { padding: 60px 0; }
	.asovera-page-content .asovera-wishlist-empty h2 { font-size: 28px; line-height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
	.asovera-announcement.is-overflowing .asovera-announcement-track { animation: none; transform: none; }
}
