/* =========================================================================
   Little Estrella Bakes — theme.css
   All visual styling lives here (Section 10). No CSS in template files.
   ========================================================================= */

:root {
	--color-background: #fcf8fc;
	--color-foreground: #3d2a47;
	--color-primary: #a172cb;
	--color-primary-foreground: #fcf8fc;
	--color-secondary: #f2e7f3;
	--color-muted: #e6dee8;
	--color-muted-foreground: #6a5a72;
	--color-accent: #fbdf88;
	--color-border: #e3d5e6;
	--color-rosa: #eb7aa0;
	--color-blush: #f8d8e3;
	--color-marigold: #fad66b;
	--color-teal: #d3b9e9;
	--color-nopal: #603b72;
	--color-butter: #fef8e2;
	--color-goldline: #e1b347;
	--color-ribbon: #fbe294;
	--color-lilac-field: #e8dcf5;
	--color-sand: #f3e8d4;
	--color-button-text: var(--color-primary-foreground);

	--sparkle-dash: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4 4.5 L10 6.5'/%3E%3Cpath d='M3 10 L10 10'/%3E%3Cpath d='M4 15.5 L10 13.5'/%3E%3C/g%3E%3C/svg%3E");

	--font-display: 'Signika Negative', sans-serif;
	--font-body: 'Inter', sans-serif;
	--font-condensed: 'Fredoka', 'Nunito', sans-serif;

	--radius: 1rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
	--header-height: 112px;
	--checkout-gap: 2rem;
	--logo-height: 64px;

	--btn-radius: 999px;
	--btn-height: 48px;
	--btn-padding: 0.85rem 1.75rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;

	--shadow-soft: 0 4px 20px -4px rgba(61, 42, 71, 0.08);
	--shadow-elevated: 0 8px 40px -8px rgba(61, 42, 71, 0.16);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* Tailwind-preflight-equivalent heading reset (Section 2.2) */
h1, h2, h3, h4, h5, h6, .font-display {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

/* Global cover-image rule with completeness exclusion list (Section 15.1) */
img:not(.cover-img):not(.hero-slider__slide):not(.theme-product-card__image-wrapper img):not(.theme-cart-item__image img):not(#product-main-img):not(.theme-product-thumb img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-slider__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cover-img.object-top { object-position: top; }
.theme-product-gallery__main img,
.theme-product-thumb img,
#product-main-img { height: 100% !important; width: 100% !important; object-fit: cover; }
.cover-img.object-top { object-position: top; }

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll animations (Section 2.1)                              */
/* ---------------------------------------------------------------------- */
.reveal-item, .theme-product-card-wrap {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible, .theme-product-card-wrap.is-visible {
	opacity: 1;
	transform: translateY(0);
}
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .theme-product-card-wrap { transition: none !important; opacity: 1 !important; transform: none !important; }
}

.animate-fade-in { animation: themeFadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: themeSlideUp 0.6s var(--transition-smooth) forwards; }
@keyframes themeFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes themeSlideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------------------------------------------------------------- */
/* Shared decorative primitives                                           */
/* ---------------------------------------------------------------------- */
.editorial-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.28em;
	margin-bottom: 0.25rem;
}
.editorial-kicker.text-rosa { color: var(--color-rosa); }
.editorial-kicker.text-nopal { color: var(--color-nopal); }
.editorial-kicker.text-teal { color: var(--color-teal); }

.editorial-kicker::before,
.editorial-kicker::after {
	content: '';
	width: 0.95em;
	height: 0.95em;
	flex: none;
	background-color: currentColor;
	opacity: 0.85;
	-webkit-mask: var(--sparkle-dash) center / contain no-repeat;
	mask: var(--sparkle-dash) center / contain no-repeat;
}
.editorial-kicker::before { transform: scaleX(-1); }

.ribbon-banner {
	display: inline-block;
	position: relative;
	padding: 0.6rem 2rem;
	background-color: var(--color-ribbon);
	clip-path: polygon(0% 12%, 4% 0%, 96% 6%, 100% 0%, 100% 88%, 96% 100%, 4% 94%, 0% 100%);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 600;
	color: var(--color-foreground);
}

.price-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-family: var(--font-display);
	font-weight: 600;
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 0.25rem 0.9rem;
	font-size: 0.9rem;
}
.price-badge del { opacity: 0.6; margin-right: 0.35rem; }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
	content: '';
	position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
	background: currentColor; transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.dashed-rule { height: 0; border-top: 2px dashed color-mix(in srgb, var(--color-primary) 35%, transparent); margin-top: 1.5rem; }

.wavy-frame {
	border-radius: 1.75rem;
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-goldline) 55%, transparent), 0 0 0 6px color-mix(in srgb, var(--color-lilac-field) 65%, transparent);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.wavy-frame:hover {
	transform: translateY(-4px);
	box-shadow:
		0 0 0 1px color-mix(in srgb, var(--color-goldline) 55%, transparent),
		0 0 0 6px color-mix(in srgb, var(--color-lilac-field) 65%, transparent),
		0 14px 34px -18px rgba(0, 0, 0, 0.28);
}

.checker-band {
	--check-a: 45 88% 91%;
	--check-b: 45 88% 84%;
	background-color: hsl(var(--check-a));
	background-image:
		linear-gradient(45deg, hsl(var(--check-b)) 25%, transparent 25%, transparent 75%, hsl(var(--check-b)) 75%),
		linear-gradient(45deg, hsl(var(--check-b)) 25%, transparent 25%, transparent 75%, hsl(var(--check-b)) 75%);
	background-size: 56px 56px;
	background-position: 0 0, 28px 28px;
}
@media (min-width: 768px) { .checker-band { background-size: 96px 96px; background-position: 0 0, 48px 48px; } }

.scallop-divider {
	position: relative;
	height: 32px;
	pointer-events: none;
}
.scallop-divider--absolute {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
}
.scallop-divider--absolute.scallop-divider--down { top: 0; }
.scallop-divider--absolute.scallop-divider--up { bottom: 0; }
.scallop-divider--down.scallop-butter {
	background-color: var(--color-butter);
	-webkit-mask: radial-gradient(22px at 50% 0%, #000 99%, transparent 100%) 0 0 / 44px 22px repeat-x;
	mask: radial-gradient(22px at 50% 0%, #000 99%, transparent 100%) 0 0 / 44px 22px repeat-x;
}
.scallop-divider--up.scallop-background {
	background-color: var(--color-background);
	-webkit-mask: radial-gradient(22px at 50% 100%, #000 99%, transparent 100%) 0 0 / 44px 22px repeat-x;
	mask: radial-gradient(22px at 50% 100%, #000 99%, transparent 100%) 0 0 / 44px 22px repeat-x;
}

.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	padding: var(--btn-padding);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border: none;
	transition: opacity 0.2s ease, background-color 0.2s ease;
}
.theme-btn-primary { background-color: var(--color-primary); color: var(--color-primary-foreground); text-transform: none; }
.theme-btn-primary:hover { opacity: 0.9; }
.theme-btn-outline { background: transparent; border: 1px solid var(--color-border); color: var(--color-foreground); text-transform: none; }
.theme-btn-outline-nopal { background: transparent; border: 1px solid var(--color-nopal); color: var(--color-nopal); }
.theme-btn-outline-nopal:hover { background: var(--color-nopal); color: var(--color-background); }
.theme-btn-outline-teal { background: transparent; border: 1px solid var(--color-teal); color: var(--color-foreground); }
.theme-btn-outline-teal:hover { background: var(--color-teal); }
.theme-btn-hero-primary, .theme-btn-hero-outline { text-transform: uppercase; font-size: 11px; }
.theme-btn-hero-primary { background-color: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground); }
.theme-btn-hero-primary:hover { background-color: var(--color-background); }
.theme-btn-hero-outline { background: transparent; border: 1px solid color-mix(in srgb, var(--color-background) 80%, transparent); color: var(--color-background); }
.theme-btn-hero-outline:hover { background: color-mix(in srgb, var(--color-background) 15%, transparent); }
.theme-btn-banner { background-color: var(--color-foreground); color: var(--color-background); border-radius: 999px; padding: 0.875rem 2rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; }
.theme-btn-banner-dark { background-color: var(--color-foreground); color: var(--color-background); border-radius: 999px; padding: 0.875rem 2rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; border: none; }
.theme-btn-banner:hover, .theme-btn-banner-dark:hover { opacity: 0.9; }
.theme-btn-cta-primary { background-color: var(--color-background); color: var(--color-foreground); border: 1px solid var(--color-foreground); }
.theme-btn-cta-primary:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-cta-outline { background: transparent; border: 1px solid color-mix(in srgb, var(--color-foreground) 60%, transparent); color: var(--color-foreground); }
.theme-btn-cta-outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-chevron { display: inline-block; }

.section-heading-block { text-align: center; margin-bottom: 2.5rem; }
.section-heading { font-family: var(--font-condensed); line-height: 0.95; }

/* Per-section heading scales (Section 2.2.5) */
.category-strip-section__heading { font-size: 2.25rem; }
.featured-section__heading, .about-section__heading, .gallery-section__heading, .events-section__heading, .faq-section__heading, .shop-heading { font-size: 2.25rem; }
.services-section__heading { font-size: 2.75rem; }
.newsletter-section__heading { font-size: 2.25rem; }
.testimonials-section__title { font-size: 2.25rem; text-transform: uppercase; }
.cta-band__title { font-size: 2.75rem; }
@media (min-width: 768px) {
	.category-strip-section__heading { font-size: 3.75rem; }
	.featured-section__heading, .about-section__heading, .gallery-section__heading, .events-section__heading, .faq-section__heading, .shop-heading { font-size: 3.75rem; }
	.services-section__heading { font-size: 4.5rem; }
	.newsletter-section__heading { font-size: 3.75rem; }
	.testimonials-section__title { font-size: 3.75rem; }
	.cta-band__title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
	.featured-section__heading, .about-section__heading, .gallery-section__heading, .events-section__heading, .faq-section__heading, .shop-heading { font-size: 4.5rem; }
	.services-section__heading { font-size: 6rem; }
	.testimonials-section__title { font-size: 4.5rem; }
	.cta-band__title { font-size: 4.5rem; }
}

/* ---------------------------------------------------------------------- */
/* Announcement bar                                                        */
/* ---------------------------------------------------------------------- */
.theme-announcement-bar { position: relative; background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-announcement-bar__inner { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.5rem 1.5rem; text-align: center; }
@media (min-width: 1024px) { .theme-announcement-bar__inner { padding-left: 2rem; padding-right: 2rem; } }
.theme-announcement-bar__text { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0; }
.theme-heart { width: 12px; height: 12px; color: var(--color-ribbon); flex-shrink: 0; }
@media (max-width: 639px) { .theme-announcement-bar .theme-heart { display: none; } }
.theme-announcement-bar__close { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: currentColor; opacity: 0.75; font-size: 1rem; }

/* ---------------------------------------------------------------------- */
/* Header                                                                   */
/* ---------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 50; background: var(--color-background); border-top: 2px solid color-mix(in srgb, var(--color-rosa) 40%, transparent); border-bottom: 1px solid transparent; transition: background-color 0.3s ease, border-color 0.3s ease; }
.site-header.is-solid { background: color-mix(in srgb, var(--color-background) 95%, transparent); border-bottom-color: color-mix(in srgb, var(--color-border) 60%, transparent); backdrop-filter: blur(6px); }
.site-header__nav { display: flex; align-items: center; justify-content: space-between; height: 112px; }
@media (min-width: 768px) { .site-header__nav { height: 128px; } }
.site-header__brand { display: flex; align-items: center; gap: 0.5rem; }
.site-logo-text { font-family: var(--font-condensed); font-size: 1.4rem; font-weight: 600; color: var(--color-foreground); }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; max-width: none !important; display: block; object-fit: contain !important; }
@media (min-width: 768px) { .site-header .site-logo-img { height: calc(var(--logo-height) * 1.5) !important; } }
.site-footer .site-logo-img { height: calc(var(--logo-height) * 1.75) !important; }
@media (min-width: 640px) { .site-footer .site-logo-img { height: calc(var(--logo-height) * 2) !important; } }
.site-header__right { display: flex; align-items: center; gap: 1.5rem; }
.site-header__links { display: none; }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 1024px) { .theme-nav-list { gap: 2.5rem; } }
.theme-nav-link { font-family: var(--font-body); font-size: 13px; font-weight: 400; letter-spacing: normal; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.2s ease; }
.theme-nav-link:hover { color: var(--color-foreground); }
@media (min-width: 1024px) { .site-header__links { display: block; } }

.theme-cart-toggle { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); background: transparent; color: var(--color-foreground); font-family: var(--font-body); font-size: 13px; font-weight: 400; transition: border-color 0.2s ease; }
.theme-cart-toggle:hover { border-color: var(--color-foreground); }
.theme-cart-toggle__icon { position: absolute; opacity: 0; width: 16px; height: 16px; pointer-events: none; }

.theme-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem; margin-right: -0.5rem; background: none; border: none; color: var(--color-foreground); transition: opacity 0.2s ease; }
.theme-mobile-toggle:hover { opacity: 0.6; }
.theme-mobile-toggle__icon { display: block; }
.theme-mobile-toggle__icon--close { display: none; }
.theme-mobile-toggle.is-active .theme-mobile-toggle__icon--open { display: none; }
.theme-mobile-toggle.is-active .theme-mobile-toggle__icon--close { display: block; }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }
.theme-mobile-menu { border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); padding: 1rem 0; }
.theme-mobile-menu.is-open { animation: themeFadeIn 0.6s var(--transition-smooth) forwards; }
.theme-mobile-menu .theme-nav-list,
.theme-mobile-menu .theme-nav-list--mobile { flex-direction: column !important; align-items: flex-start !important; gap: 1rem; }
.theme-mobile-menu .theme-nav-link { text-align: left; font-size: 0.875rem; padding: 0.5rem 0; }
.theme-mobile-menu .theme-nav-link:hover { color: var(--color-muted-foreground); }
@media (min-width: 1024px) { .theme-mobile-menu { display: none !important; } }

/* ---------------------------------------------------------------------- */
/* Hero                                                                      */
/* ---------------------------------------------------------------------- */
.hero-section { background: var(--color-background); }
body.theme-no-hero .hero-section { display: none; }
.hero-slider { position: relative; width: 100%; height: 92vh; min-height: 560px; overflow: hidden; }
.hero-slider__slide { opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slider__slide.is-active { opacity: 1; }
.hero-slider__tint { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); pointer-events: none; z-index: 1; }
.hero-slider__tint--rosa { background: color-mix(in srgb, var(--color-rosa) 25%, transparent); mix-blend-mode: multiply; z-index: 0; }
.hero-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-confetti__sparkle { position: absolute; width: 1rem; height: 1rem; color: var(--color-primary); opacity: 0.4; }
.hero-confetti__sparkle--gold { left: 6%; top: 14%; color: var(--color-ribbon); opacity: 0.7; }
.hero-confetti__heart { position: absolute; width: 2rem; height: 2rem; color: var(--color-background); opacity: 0.4; left: 12%; top: 38%; }
.hero-confetti__heart--gold { right: 9%; top: 20%; width: 2.5rem; height: 2.5rem; color: var(--color-ribbon); opacity: 0.45; left: auto; }
.hero-confetti svg:nth-child(3) { left: 22%; bottom: 16%; width: 0.75rem; height: 0.75rem; top: auto; opacity: 0.5; }
.hero-confetti svg:nth-child(5) { right: 18%; bottom: 22%; width: 1.25rem; height: 1.25rem; color: var(--color-ribbon); opacity: 0.6; top: auto; left: auto; }
.hero-slider__content { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; }
.hero-slider__kicker { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; color: var(--color-blush); letter-spacing: 0.3em; margin-bottom: 0.75rem; font-size: clamp(0.8rem, 1.6vw, 1.05rem); }
.hero-slider__title { font-family: var(--font-condensed); color: var(--color-butter); line-height: 0.95; letter-spacing: 0.005em; font-size: clamp(2.25rem, 8vw, 6rem); }
.hero-slider__ribbon-wrap { margin-top: 1.25rem; }
.hero-slider__subtext { margin-top: 1rem; font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-background) 90%, transparent); font-size: 0.95rem; padding: 0 0.5rem; }
.hero-slider__actions { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .hero-slider__actions { flex-direction: row; } }
@media (min-width: 768px) { .hero-slider__subtext { font-size: 1.25rem; } }

/* ---------------------------------------------------------------------- */
/* Category strip                                                          */
/* ---------------------------------------------------------------------- */
.category-strip-section { padding: 4rem 0; position: relative; }
.category-strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; justify-items: center; max-width: 60rem; margin: 2.5rem auto 0; padding: 0 1rem; }
@media (min-width: 640px) { .category-strip-grid { grid-template-columns: repeat(4, 1fr); } }
.category-tile { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; background: none; border: none; text-decoration: none; color: inherit; cursor: pointer; }
.category-tile__label { transition: color 0.2s ease; }
.category-tile:hover .category-tile__label { color: var(--color-foreground); }
.category-tile__circle { width: 6rem; height: 6rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px color-mix(in srgb, var(--color-lilac-field) 55%, transparent); border: 1px solid color-mix(in srgb, var(--color-goldline) 50%, transparent); transition: transform 0.3s ease; }
.category-tile:hover .category-tile__circle { transform: scale(1.05); }
.category-tile__circle--blush { background: color-mix(in srgb, var(--color-blush) 80%, transparent); }
.category-tile__circle--rosa { background: color-mix(in srgb, var(--color-rosa) 40%, transparent); }
.category-tile__circle--teal { background: color-mix(in srgb, var(--color-teal) 70%, transparent); }
.category-tile__circle--marigold { background: color-mix(in srgb, var(--color-marigold) 80%, transparent); }
.category-tile__circle img { width: 3rem; height: 3rem; object-fit: contain; }
.category-tile__label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .category-tile__circle { width: 10rem; height: 10rem; } .category-tile__circle img { width: 5rem; height: 5rem; } .category-tile__label { font-size: 0.875rem; } }

/* ---------------------------------------------------------------------- */
/* Featured / product grids                                                */
/* ---------------------------------------------------------------------- */
.featured-section, .shop-section, .gallery-section, .events-section, .faq-section, .services-section { padding: 4rem 0; }
@media (min-width: 768px) { .featured-section, .shop-section, .gallery-section, .events-section, .faq-section, .services-section { padding: 6rem 0; } }
.theme-center-cta { text-align: center; margin-top: 3rem; }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: stretch;
	max-width: 80rem;
	margin: 0 auto;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem; } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.theme-product-grid--featured { grid-template-columns: 1fr; max-width: 56rem; gap: 2rem; }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; } }

.theme-product-card-wrap { display: flex; transition: transform 0.35s var(--transition-smooth); }
.theme-product-card-wrap:hover { transform: translateY(-4px) rotate(-1.2deg); }
.theme-product-card { display: flex; flex-direction: column; height: 100%; width: 100%; position: relative; }
.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 1.5rem;
	overflow: hidden;
	background: #fff;
	padding: 0.5rem;
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-goldline) 40%, transparent), 0 0 0 5px color-mix(in srgb, var(--color-lilac-field) 50%, transparent), 0 10px 30px -16px rgba(40, 30, 20, 0.4);
	margin-bottom: 1.25rem;
}
.theme-product-card__image-wrapper img { position: absolute; inset: 0.5rem; width: calc(100% - 1rem); height: calc(100% - 1rem) !important; object-fit: cover; border-radius: 0.5rem; transition: transform 0.7s var(--transition-smooth); pointer-events: none; }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.05); }
.theme-product-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; line-height: 1.3; margin: 0; transition: color 0.3s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-card-image-link {
	position: absolute;
	inset: 0.5rem;
	z-index: 1;
	display: block;
	border-radius: 0.5rem;
	overflow: hidden;
}
.theme-product-card__info-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.theme-product-card__info-link:hover .theme-product-card__title { color: var(--color-primary); }
.theme-card-add-to-cart {
	position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 3;
	padding: 0.75rem; border-radius: 999px; background: var(--color-teal); color: var(--color-background);
	border: 1px solid var(--color-teal); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	text-align: center; opacity: 0; transform: translateY(6px); transition: all 0.3s ease;
}
.theme-product-card:hover .theme-card-add-to-cart { opacity: 1; transform: translateY(0); }
.theme-card-add-to-cart:hover { background: var(--color-background); color: var(--color-teal); }
.theme-card-add-to-cart--variable {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: unset !important;
	padding: 0.75rem !important;
	background-color: var(--color-teal) !important;
	color: var(--color-background) !important;
	border: 1px solid var(--color-teal) !important;
	font-size: 11px !important;
	letter-spacing: 0.22em !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
}
.theme-card-add-to-cart--variable:hover {
	background-color: var(--color-background) !important;
	color: var(--color-teal) !important;
}
.theme-badge { position: absolute; top: 1rem; z-index: 3; padding: 0.25rem 0.75rem; border-radius: 0.4rem; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; }
.theme-badge--sale { left: 1rem; background: var(--color-marigold); color: var(--color-foreground); }
.theme-badge--soldout { right: 1rem; background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__info { padding: 0 0.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); margin: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-product-card__price { margin: 0.25rem 0 0; }

/* WooCommerce add-to-cart button overrides (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Card compact button variant (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-card-add-to-cart {
	min-height: unset !important;
	padding: 0.75rem !important;
	border-radius: 999px !important;
	background-color: var(--color-teal) !important;
	color: var(--color-background) !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-card-add-to-cart:hover {
	background-color: var(--color-background) !important;
	color: var(--color-teal) !important;
}

/* Hide "View cart" (Section 11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* WooCommerce notices scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	border-radius: var(--card-radius); font-family: var(--font-body); border-top-color: var(--color-primary);
}

/* ---------------------------------------------------------------------- */
/* Product banners                                                          */
/* ---------------------------------------------------------------------- */
.product-banner { width: 100%; }
.product-banner--blush { background: color-mix(in srgb, var(--color-blush) 40%, transparent); }
.product-banner--teal { background: color-mix(in srgb, var(--color-teal) 25%, transparent); }
.product-banner__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .product-banner__grid { grid-template-columns: 1fr 1fr; align-items: stretch; } .product-banner--image-first .product-banner__image { order: 1; } .product-banner--image-first .product-banner__content { order: 2; } .product-banner:not(.product-banner--image-first) .product-banner__image { order: 2; } .product-banner:not(.product-banner--image-first) .product-banner__content { order: 1; } }
.product-banner__image { position: relative; aspect-ratio: 4/5; min-height: 320px; overflow: hidden; }
@media (min-width: 1024px) { .product-banner__image { aspect-ratio: auto; min-height: 560px; } }
.product-banner__content { display: flex; align-items: center; padding: 3.5rem 1.5rem; }
@media (min-width: 640px) { .product-banner__content { padding: 3.5rem 2.5rem; } }
@media (min-width: 768px) { .product-banner__content { padding: 5rem 3.5rem; } }
@media (min-width: 1024px) { .product-banner__content { padding: 5rem 5rem; } }
.product-banner__inner { max-width: 36rem; }
.product-banner__kicker { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 0.28em; margin-bottom: 0.75rem; line-height: 1; }
.product-banner__product-name { font-family: var(--font-condensed); font-style: normal; font-weight: 400; text-transform: uppercase; font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 0.95; margin-bottom: 1.25rem; }
.product-banner__hook { font-family: var(--font-display); font-style: italic; font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 1rem; line-height: 1.35; }
.product-banner__body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.65; margin-bottom: 1.5rem; font-size: 1rem; }
@media (min-width: 768px) { .product-banner__body { font-size: 1.125rem; } }
.product-banner__price { font-family: var(--font-condensed); font-size: 1.875rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .product-banner__product-name { font-size: clamp(2.5rem, 5vw, 3.75rem); } }

/* ---------------------------------------------------------------------- */
/* Story accordion                                                          */
/* ---------------------------------------------------------------------- */
.story-section__intro { padding-top: 5rem; padding-bottom: 1rem; }
.story-section__intro .section-heading-block { margin-bottom: 2.5rem; }
@media (min-width: 768px) {
	.story-section__intro { padding-top: 7rem; padding-bottom: 1.5rem; }
	.story-section__intro .section-heading-block { margin-bottom: 3.5rem; }
}
.story-accordion__desktop-panel.story-accordion__panel--teal { background: var(--color-teal); color: var(--color-foreground); }
.story-accordion__desktop-panel.story-accordion__panel--rosa { background: var(--color-rosa); color: var(--color-background); }
.story-accordion__desktop-panel.story-accordion__panel--rosa .story-accordion__kicker { color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.story-accordion__desktop-panel.story-accordion__panel--rosa .story-accordion__body-text,
.story-accordion__desktop-panel.story-accordion__panel--rosa .story-accordion__quote { color: color-mix(in srgb, var(--color-background) 85%, transparent); }
.story-accordion__desktop-content .story-accordion__num { font-family: var(--font-condensed); font-size: 1.5rem; line-height: 1; opacity: 0.7; margin-bottom: 0.25rem; }
.story-accordion__desktop-content .story-accordion__title { font-family: var(--font-condensed); text-transform: uppercase; font-size: clamp(2.25rem, 4vw, 3rem); line-height: 0.9; margin-bottom: 2rem; }
.story-accordion__lead p { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.25; margin-bottom: 1.5rem; }
.story-accordion__lead em { font-style: italic; }
.story-accordion__body-text { font-family: var(--font-body); line-height: 1.7; margin-bottom: 1.25rem; }
.story-accordion__body-text--soft { color: color-mix(in srgb, currentColor 80%, transparent); }
.story-accordion__contact { font-family: var(--font-body); line-height: 1.7; color: color-mix(in srgb, currentColor 80%, transparent); }
.story-accordion__contact a { text-decoration: underline; text-underline-offset: 4px; }
.story-accordion__mobile { display: flex; flex-direction: column; }
.story-accordion__desktop { display: none; }
@media (min-width: 1024px) {
	.story-accordion__mobile { display: none; }
	.story-accordion__desktop { display: flex; height: 640px; width: 100%; overflow: hidden; }
}
.story-accordion__desktop-panel {
	position: relative;
	height: 100%;
	border-left: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	overflow: hidden;
	flex-shrink: 0;
	transition: flex-grow 0.55s var(--transition-smooth);
}
.story-accordion__desktop-panel.is-open { flex-grow: 1; flex-basis: 0; cursor: default; }
.story-accordion__desktop-panel:not(.is-open) { flex-basis: 120px; flex-grow: 0; cursor: pointer; }
.story-accordion__desktop-collapsed {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 120px;
	height: 100%;
	padding: 2rem 0;
	background: none;
	border: none;
	color: inherit;
}
.story-accordion__desktop-panel.is-open .story-accordion__desktop-collapsed { display: none; }
.story-accordion__desktop-vertical-title {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	font-size: 2.25rem;
	line-height: 0.9;
	white-space: nowrap;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}
.story-accordion__desktop-expanded {
	position: absolute;
	inset: 0;
	display: none;
	align-items: stretch;
	opacity: 0;
	transition: opacity 0.4s var(--transition-smooth) 0.15s;
}
.story-accordion__desktop-panel.is-open .story-accordion__desktop-expanded {
	display: flex;
	opacity: 1;
	min-width: 560px;
}
.story-accordion__desktop-panel--has-image.is-open .story-accordion__desktop-expanded {
	min-width: 760px;
}
.story-accordion__desktop-collapsed .story-accordion__icon {
	margin-left: 0;
}
.story-accordion__desktop-content .story-accordion__kicker {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.28em;
	margin-bottom: 0.75rem;
	opacity: 0.8;
}
.story-accordion__desktop-content .story-accordion__title {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	font-size: clamp(2.25rem, 4vw, 3rem);
	line-height: 0.9;
	margin-bottom: 2rem;
}
.story-accordion__desktop-image { position: relative; width: 44%; height: 100%; min-height: 0; flex-shrink: 0; overflow: hidden; }
.story-accordion__desktop-image .cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-accordion__desktop-panel--rosa .story-accordion__desktop-image .cover-img.object-top { object-position: top; }
.story-accordion__desktop-panel--teal .story-accordion__icon { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.story-accordion__desktop-panel--rosa .story-accordion__icon { border-color: color-mix(in srgb, var(--color-background) 40%, transparent); }
.story-accordion__desktop-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 2.5rem 3rem; overflow-y: auto; }
.story-accordion__desktop-body { max-width: 34rem; }
.story-accordion__lead p { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.25; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .story-accordion__lead p { font-size: 1.875rem; } }

.story-accordion__panel { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.story-accordion__panel--teal { background: var(--color-teal); color: var(--color-foreground); }
.story-accordion__panel--rosa { background: var(--color-rosa); color: var(--color-background); }
.story-accordion__panel--teal .story-accordion__icon { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.story-accordion__panel--rosa .story-accordion__icon { border-color: color-mix(in srgb, var(--color-background) 40%, transparent); }
.story-accordion__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.75rem 1.5rem; background: none; border: none; text-align: left; color: inherit; }
@media (min-width: 768px) { .story-accordion__toggle { padding: 2.25rem 3.5rem; } }
.story-accordion__toggle-leading { display: flex; align-items: baseline; gap: 1.25rem; min-width: 0; }
@media (min-width: 768px) { .story-accordion__toggle-leading { gap: 2rem; } }
.story-accordion__num { font-family: var(--font-condensed); font-size: 1.5rem; line-height: 1; opacity: 0.7; flex-shrink: 0; }
@media (min-width: 768px) { .story-accordion__num { font-size: 2.25rem; } }
.story-accordion__title { font-family: var(--font-condensed); text-transform: uppercase; font-size: 2.25rem; line-height: 0.9; }
@media (min-width: 768px) { .story-accordion__title { font-size: 3.75rem; } }
.story-accordion__kicker { display: block; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 0.28em; line-height: 1; margin-bottom: 0.5rem; opacity: 0.8; }
@media (min-width: 768px) { .story-accordion__kicker { font-size: 0.875rem; margin-bottom: 0.5rem; } }
.story-accordion__toggle-text { min-width: 0; display: block; }
.story-accordion__icon { width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; flex-shrink: 0; }
@media (min-width: 768px) { .story-accordion__icon { width: 3rem; height: 3rem; } }
.story-accordion__panel.is-open .story-accordion__icon { transform: rotate(135deg); }
.story-accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition-smooth); }
.story-accordion__panel.is-open .story-accordion__body { max-height: 2000px; }
.story-accordion__body { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 0 1.5rem 3.5rem; align-items: center; }
@media (min-width: 768px) { .story-accordion__body { grid-template-columns: 1fr 1fr; padding: 0 3.5rem 5rem; gap: 2.5rem; } }
.story-accordion__image { position: relative; height: max(260px, 34vh); border-radius: 0.75rem; overflow: hidden; }
@media (min-width: 768px) { .story-accordion__image { height: max(260px, 44vh); } }
.story-accordion__body-text { line-height: 1.7; margin-bottom: 1.25rem; }
.story-accordion__quote { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; margin-bottom: 1.25rem; }

/* ---------------------------------------------------------------------- */
/* Services                                                                  */
/* ---------------------------------------------------------------------- */
.services-section__heading-block { text-align: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }
.service-card { display: flex; flex-direction: column; text-align: center; background: var(--color-background); border-radius: 1rem; padding: 2rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 5%, transparent); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -15px rgba(0,0,0,0.2); }
.service-card__icon-wrap { width: 5rem; height: 5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.service-card__icon-wrap img { width: 3rem; height: 3rem; object-fit: contain; }
.service-card__icon-wrap--teal { background: color-mix(in srgb, var(--color-teal) 70%, transparent); }
.service-card__icon-wrap--nopal { background: color-mix(in srgb, var(--color-nopal) 40%, transparent); }
.service-card__icon-wrap--rosa { background: color-mix(in srgb, var(--color-rosa) 60%, transparent); }
.service-card__icon-wrap--marigold { background: color-mix(in srgb, var(--color-marigold) 80%, transparent); }
.service-card__icon-wrap--accent { background: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.service-card__title { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem; font-family: var(--font-body); }
.service-card__description { font-size: 0.9rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.service-card__cta { margin-top: auto; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: var(--color-nopal); }
.service-card__cta:hover { color: var(--color-foreground); }

/* ---------------------------------------------------------------------- */
/* Shop                                                                       */
/* ---------------------------------------------------------------------- */
.shop-search { position: relative; max-width: 26rem; margin: 0 auto 2rem; }
.shop-search__icon {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: var(--color-muted-foreground);
	pointer-events: none;
}
.shop-search__input {
	width: 100%;
	padding: 0.75rem 0 0.75rem 1.75rem;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--color-border);
	border-radius: 0;
	font-size: 1rem;
}
.shop-search__input:focus { outline: none; border-color: var(--color-foreground); box-shadow: none; }
.shop-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; overflow-x: auto; }
.shop-category-btn, .gallery-filter-btn, .faq-tab { padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground); transition: all 0.3s ease; white-space: nowrap; }
.shop-category-btn:hover, .gallery-filter-btn:hover { border-color: var(--color-rosa); color: var(--color-rosa); }
.shop-category-btn.is-active, .gallery-filter-btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.shop-price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.shop-price-filter__toggle { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.shop-price-filter__toggle:hover { color: var(--color-foreground); }
.shop-price-filter__panel { width: 100%; max-width: 22rem; }
.shop-grid__item.is-hidden-extra { display: none; }
.shop-empty-message { text-align: center; padding: 3rem 0; color: var(--color-muted-foreground); }

.price-range-wrapper { position: relative; height: 1.5rem; margin: 0.5rem 0; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 4px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); left: 0; width: 0; }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); box-shadow: 0 0 0 1px var(--color-border); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.price-range-labels { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--color-muted-foreground); }

/* ---------------------------------------------------------------------- */
/* Gallery                                                                    */
/* ---------------------------------------------------------------------- */
.gallery-filters {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	margin-left: -1rem;
	margin-right: -1rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.gallery-filters::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
	.gallery-filters {
		flex-wrap: wrap;
		justify-content: center;
		overflow-x: visible;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
}
.gallery-filter-btn { scroll-snap-align: start; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		grid-auto-rows: clamp(70px, 6.2vw, 110px);
		gap: 1.25rem;
	}
}
.gallery-tile { position: relative; aspect-ratio: 1/1; border-radius: 1rem; overflow: hidden; background: var(--color-background); margin: 0; }
.gallery-tile--mobile-wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (min-width: 768px) {
	.gallery-tile--mobile-wide { grid-column: span 1; aspect-ratio: 1/1; }
	.gallery-tile--md-span-2 { grid-column: span 2; aspect-ratio: 2/1; }
	.gallery-tile--md-span-3 { grid-column: span 3; aspect-ratio: 3/1; }
}
@media (min-width: 1024px) {
	.gallery-tile { aspect-ratio: auto; grid-row: span 2; }
	.gallery-tile--mobile-wide { grid-column: auto; aspect-ratio: auto; }
	.gallery-tile--md-span-2,
	.gallery-tile--md-span-3 { grid-column: auto; aspect-ratio: auto; }
	.gallery-tile--span-2 { grid-column: span 2; }
	.gallery-tile--span-3 { grid-column: span 3; }
	.gallery-tile--span-4 { grid-column: span 4; }
	.gallery-tile--span-6 { grid-column: span 6; }
	.gallery-tile--span-12 { grid-column: span 12; }
}
.gallery-tile__btn { position: absolute; inset: 0; border: none; background: none; padding: 0; cursor: zoom-in; }
.gallery-tile__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-tile__btn:hover img { transform: scale(1.05); }
.gallery-lightbox { position: fixed; inset: 0; z-index: 100; background: color-mix(in srgb, var(--color-foreground) 90%, transparent); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.gallery-lightbox[hidden] { display: none !important; pointer-events: none !important; visibility: hidden !important; }
.gallery-lightbox__figure { max-width: min(1100px, 90vw); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.gallery-lightbox__figure img { max-height: 72vh; width: auto; max-width: 100%; object-fit: contain; border-radius: 1rem; position: static; }
.gallery-lightbox__figure figcaption { color: color-mix(in srgb, var(--color-background) 90%, transparent); text-align: center; font-size: 0.9rem; max-width: 40rem; }
.gallery-lightbox__meta { display: block; margin-top: 0.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 60%, transparent); }
.gallery-lightbox__close, .gallery-lightbox__nav { position: absolute; height: 44px; width: 44px; border-radius: 50%; background: color-mix(in srgb, var(--color-background) 90%, transparent); color: var(--color-foreground); border: none; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.gallery-lightbox__close { top: 1rem; right: 1rem; }
.gallery-lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.gallery-lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------------- */
/* Events                                                                     */
/* ---------------------------------------------------------------------- */
.events-section { background: var(--color-butter); }
.events-section__subtext { max-width: 36rem; margin: 0 auto; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
@media (min-width: 768px) { .events-section__subtext { font-size: 1.125rem; } }
.events-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 768px) { .events-grid { gap: 2rem; } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }
.event-card { background: var(--color-background); padding: 1.75rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .event-card { padding: 2rem; } }
.event-card__head { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.25rem; }
.event-card__date { width: 4rem; border-radius: 0.75rem; background: color-mix(in srgb, var(--color-rosa) 20%, transparent); border: 1px solid color-mix(in srgb, var(--color-rosa) 30%, transparent); text-align: center; padding: 0.5rem 0; flex-shrink: 0; }
.event-card__month { display: block; font-size: 11px; letter-spacing: 0.22em; font-weight: 600; color: var(--color-nopal); }
.event-card__day { display: block; font-family: var(--font-condensed); font-size: 1.75rem; line-height: 1; }
.event-card__kicker { font-size: 1.25rem !important; margin-bottom: 0.15rem !important; }
.event-card__title { font-family: var(--font-condensed); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 0.95; }
.event-card__meta { list-style: none; margin: 0 0 1rem; padding: 0; font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; flex-direction: column; gap: 0.5rem; }
.event-card__meta li { display: flex; align-items: center; gap: 0.5rem; }
.event-card__meta .theme-icon { flex-shrink: 0; }
.event-card__note { font-size: 0.95rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }
.event-card__cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; border: 1px solid var(--color-nopal); color: var(--color-nopal); background: transparent; padding: 0.75rem 1.5rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
.event-card__cta:hover { background: var(--color-nopal); color: var(--color-background); }
.events-empty { max-width: 34rem; margin: 3rem auto 0; text-align: center; background: var(--color-background); border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding: 3rem 2rem; }
.events-empty__title { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; margin-bottom: 1rem; }
.events-booth-cta { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; background: var(--color-background); border-radius: 1rem; overflow: hidden; margin-top: 3rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
@media (min-width: 768px) { .events-booth-cta { grid-template-columns: 1fr 1fr; } }
.events-booth-cta__image { position: relative; min-height: 260px; }
.events-booth-cta__text { padding: 1.75rem 1.75rem 2.5rem; }
@media (min-width: 768px) { .events-booth-cta__text { padding: 3rem 3rem 3rem 0; } }
.events-booth-cta__text h3 { font-family: var(--font-condensed); text-transform: uppercase; font-size: 1.75rem; margin: 0.5rem 0 1rem; }
.events-booth-cta__text p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; margin-bottom: 1.75rem; }

/* ---------------------------------------------------------------------- */
/* Newsletter                                                                 */
/* ---------------------------------------------------------------------- */
.newsletter-section {
	position: relative;
	background: color-mix(in srgb, var(--color-blush) 50%, transparent);
	text-align: center;
	padding-top: 6rem;
	padding-bottom: 0;
	overflow: hidden;
}
@media (min-width: 768px) { .newsletter-section { padding-top: 8rem; } }
.newsletter-section__inner { position: relative; z-index: 20; max-width: 34rem; margin: 0 auto; }
.newsletter-section__body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; font-size: 1rem; }
@media (min-width: 768px) { .newsletter-section__body { font-size: 1.125rem; } }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 28rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form { flex-direction: row; gap: 0.75rem; } }
.newsletter-form__input { flex: 1; padding: 0.75rem 1.25rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 999px; font-size: 1rem; }
.newsletter-form__input:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent); }
.newsletter-form__submit {
	border-radius: 999px;
	padding: 0.75rem 1.5rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
}

/* ---------------------------------------------------------------------- */
/* FAQ                                                                        */
/* ---------------------------------------------------------------------- */
.faq-section__intro { max-width: 34rem; margin: 0 auto; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.faq-section__intro a { text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--color-foreground) 30%, transparent); text-underline-offset: 4px; }
.faq-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; margin: 2.5rem 0; overflow-x: auto; }
.faq-tab--teal.is-active { background: var(--color-teal); border-color: var(--color-teal); }
.faq-tab--teal:not(.is-active) { border-color: var(--color-teal); color: var(--color-foreground); }
.faq-tab--rosa.is-active { background: var(--color-rosa); color: var(--color-background); border-color: var(--color-rosa); }
.faq-tab--rosa:not(.is-active) { border-color: var(--color-rosa); color: var(--color-rosa); }
.faq-tab--blush.is-active { background: var(--color-blush); border-color: var(--color-blush); }
.faq-tab--blush:not(.is-active) { border-color: var(--color-blush); color: var(--color-foreground); }
.faq-tab--nopal.is-active { background: var(--color-nopal); color: var(--color-background); border-color: var(--color-nopal); }
.faq-tab--nopal:not(.is-active) { border-color: var(--color-nopal); color: var(--color-nopal); }
.faq-tab--marigold.is-active { background: var(--color-marigold); border-color: var(--color-marigold); }
.faq-tab--marigold:not(.is-active) { border-color: var(--color-marigold); color: var(--color-foreground); }
.faq-panel--teal .faq-item__icon { border-color: var(--color-teal); color: var(--color-teal); }
.faq-panel--teal .faq-item.is-open .faq-item__icon { background: var(--color-teal); color: var(--color-foreground); }
.faq-panel--rosa .faq-item__icon { border-color: var(--color-rosa); color: var(--color-rosa); }
.faq-panel--rosa .faq-item.is-open .faq-item__icon { background: var(--color-rosa); color: var(--color-background); }
.faq-panel--blush .faq-item__icon { border-color: var(--color-blush); color: var(--color-foreground); }
.faq-panel--blush .faq-item.is-open .faq-item__icon { background: var(--color-blush); color: var(--color-foreground); }
.faq-panel--nopal .faq-item.is-open .faq-item__icon { background: var(--color-nopal); color: var(--color-background); }
.faq-panel--marigold .faq-item.is-open .faq-item__icon { background: var(--color-marigold); color: var(--color-foreground); }
.faq-panels { max-width: 48rem; margin: 0 auto; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-panel { display: none; }
.faq-panel.is-active { display: block; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; background: none; border: none; text-align: left; font-family: var(--font-display); font-size: 1.1rem; color: var(--color-foreground); }
.faq-item__icon { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--color-border); color: var(--color-foreground); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease; }
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-item__answer { max-height: 400px; }
.faq-item__answer p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 2rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Testimonials                                                              */
/* ---------------------------------------------------------------------- */
.testimonials-section { padding: 4rem 0; overflow: hidden; background: var(--color-background); }
@media (min-width: 768px) { .testimonials-section { padding: 6rem 0; } }
.testimonials-section__heading { text-align: center; margin-bottom: 3rem; }
@media (min-width: 768px) { .testimonials-section__heading { margin-bottom: 4rem; } }
.testimonials-section__count { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 0.5rem; }
.testimonials-section__stars { color: var(--color-marigold); margin-bottom: 1.25rem; font-size: 1.25rem; line-height: 1; }
.testimonials-carousel { position: relative; max-width: 80rem; margin: 0 auto; }
.testimonials-carousel__viewport { overflow: hidden; }
.testimonials-carousel__track { display: flex; transition: transform 0.4s var(--transition-smooth); will-change: transform; }
.testimonials-carousel__slide { flex: 0 0 100%; padding: 0 0.625rem; box-sizing: border-box; }
@media (min-width: 640px) { .testimonials-carousel__slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonials-carousel__slide { flex: 0 0 33.3333%; } }
@media (min-width: 1280px) { .testimonials-carousel__slide { flex: 0 0 25%; } }
.testimonial-card { border-radius: 1.5rem; min-height: 260px; height: 260px; padding: 1.5rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .testimonial-card { min-height: 300px; height: 300px; padding: 1.75rem; } }
.testimonial-card--sand { background: var(--color-sand); }
.testimonial-card--blush { background: var(--color-blush); }
.testimonial-card--marigold { background: color-mix(in srgb, var(--color-marigold) 60%, transparent); }
.testimonial-card--teal { background: color-mix(in srgb, var(--color-teal) 45%, transparent); }
.testimonial-card--butter { background: var(--color-butter); }
.testimonial-card--rosa { background: color-mix(in srgb, var(--color-rosa) 20%, transparent); }
.testimonial-card__stars { color: var(--color-marigold); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1; }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 1rem; flex: 1; margin: 0; line-height: 1.625; }
@media (min-width: 768px) { .testimonial-card blockquote { font-size: 1.125rem; } }
.testimonial-card .dashed-rule { margin-top: 1.5rem; }
.testimonial-card__name { padding-top: 1rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.testimonials-carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
.testimonials-carousel__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--color-nopal); color: var(--color-nopal); background: transparent; display: flex; align-items: center; justify-content: center; }
.testimonials-carousel__arrow:hover { background: var(--color-nopal); color: var(--color-background); }
.testimonials-carousel__dots { display: flex; align-items: center; gap: 0.5rem; }
.testimonials-carousel__dot { width: 8px; height: 8px; border-radius: 999px; background: color-mix(in srgb, var(--color-nopal) 30%, transparent); border: none; transition: all 0.3s ease; }
.testimonials-carousel__dot.is-active { width: 28px; background: var(--color-nopal); }

/* ---------------------------------------------------------------------- */
/* Final CTA                                                                  */
/* ---------------------------------------------------------------------- */
.final-cta-grid { display: grid; grid-template-columns: 1fr; min-height: 420px; }
@media (min-width: 1024px) { .final-cta-grid { grid-template-columns: 1fr 1fr; } }
.final-cta-grid__image { position: relative; min-height: 280px; }
@media (min-width: 1024px) { .final-cta-grid__image { min-height: 480px; } }
.final-cta-grid__text { background: var(--color-accent); color: var(--color-foreground); display: flex; align-items: center; justify-content: center; padding: 3.5rem 2rem; text-align: center; }
.final-cta-grid__text > div { max-width: 28rem; }
.final-cta-grid__text p { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.6; margin-bottom: 2.5rem; }
.final-cta-grid__actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .final-cta-grid__actions { flex-direction: row; } }

/* ---------------------------------------------------------------------- */
/* Footer                                                                     */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--color-butter); }
.site-footer__inner { padding: 2.5rem 1.5rem 2rem; }
@media (min-width: 1024px) { .site-footer__inner { padding: 3.5rem 2rem 2.5rem; } }
.site-footer__icon { flex: none; width: 16px; height: 16px; }
.site-footer__brand-row { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 640px) { .site-footer__brand-row { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__blurb { max-width: 36rem; }
@media (min-width: 640px) { .site-footer__blurb { text-align: right; } }
.site-footer__blurb p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.625; margin: 0; font-family: var(--font-body); }
.site-footer__contact-line { margin-top: 0.75rem; font-size: 0.875rem; font-family: var(--font-body); }
.site-footer__contact-line a { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease; }
.site-footer__contact-line a:hover { color: var(--color-foreground); }
.site-footer__contact-sep { margin: 0 0.5rem; color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__col h3 { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; margin: 0 0 1.25rem; color: var(--color-foreground); font-weight: 400; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col ul a,
.site-footer__col ul li { font-size: 0.875rem; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.5; }
.site-footer__col ul a { text-align: left; background: none; border: none; padding: 0; cursor: pointer; transition: color 0.2s ease; }
.site-footer__col ul a:hover { color: var(--color-foreground); }
.site-footer__col--reach { grid-column: span 2; }
@media (min-width: 768px) { .site-footer__col--reach { grid-column: span 1; } }
.site-footer__col--reach > p { font-size: 0.875rem; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.625; margin: 0 0 1.25rem; }
.site-footer__col--reach ul a { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.site-footer__col--reach ul li:not(:has(a)) { display: inline-flex; align-items: center; gap: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.site-footer__instagram { display: inline-flex; margin-top: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.site-footer__instagram:hover { color: var(--color-foreground); }
.site-footer__bottom { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__tagline { font-family: var(--font-display); font-style: italic; font-size: 12px; letter-spacing: 0.02em; color: var(--color-nopal); margin: 0; }
.site-footer__copyright { font-size: 12px; letter-spacing: 0.02em; color: var(--color-muted-foreground); margin: 0; font-family: var(--font-body); }
.site-footer__copyright a { text-decoration: underline; color: inherit; }
.site-footer__copyright a:hover { color: var(--color-foreground); }
.site-footer__handle { background: var(--color-primary); color: var(--color-primary-foreground); }
.site-footer__handle-inner { padding: 0.75rem 0; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.site-footer__handle a {
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 12px;
	color: inherit;
	transition: opacity 0.2s ease;
}
@media (min-width: 640px) { .site-footer__handle a { font-size: 0.875rem; } }
.site-footer__handle a:hover { opacity: 0.8; }
.site-footer__handle-heart { width: 16px; height: 16px; color: var(--color-ribbon); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Contact modal                                                             */
/* ---------------------------------------------------------------------- */
#theme-contact-overlay { position: fixed; inset: 0; z-index: 200; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); opacity: 0; visibility: hidden; transition: opacity 0.25s ease; }
#theme-contact-overlay.is-open { opacity: 1; visibility: visible; }
.theme-modal { position: fixed; inset: 0; z-index: 201; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease; }
.theme-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.theme-modal__panel { background: var(--color-background); border-radius: 1rem; max-width: 32rem; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2rem; position: relative; box-shadow: var(--shadow-elevated); transform: translateY(12px) scale(0.98); transition: transform 0.25s ease; }
.theme-modal.is-open .theme-modal__panel { transform: translateY(0) scale(1); }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; line-height: 1; color: var(--color-muted-foreground); }
.theme-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal__subtitle { color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-modal__contacts { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-modal__contacts a:hover { color: var(--color-foreground); }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-field { margin-bottom: 1rem; }
.theme-field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; }
.theme-field input, .theme-field textarea { width: 100%; padding: 0.65rem 0.85rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 0.5rem; font-size: 1rem; }
.theme-field input:focus, .theme-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__success { text-align: center; padding: 2rem 0; }
.theme-contact-form__success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-primary); color: var(--color-primary-foreground); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; }

/* ---------------------------------------------------------------------- */
/* Side cart drawer                                                          */
/* ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 150; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); opacity: 0; visibility: hidden; transition: opacity 0.25s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer { position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-background); z-index: 151; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s var(--transition-smooth); }
.theme-cart-drawer__shipping-note { font-size: 0.9rem; color: var(--color-muted-foreground); margin: 0; }
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.theme-cart-drawer__close { background: none; border: none; font-size: 1.3rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1.5rem; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 5rem; height: 6rem; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; border-radius: 0.5rem; }
.theme-cart-item__image img { width: 100% !important; height: 100% !important; object-fit: cover; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.9rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__price { font-size: 0.85rem; color: var(--color-muted-foreground); margin: 0.2rem 0 0; }
.theme-cart-item__variation, .theme-cart-item__allergy { font-size: 0.8rem; color: var(--color-rosa); margin: 0.2rem 0 0; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { width: 1.75rem; height: 1.75rem; border-radius: 0.35rem; border: 1px solid var(--color-border); background: transparent; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.9rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.85rem; color: var(--color-muted-foreground); background: none; border: none; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 0.85rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.9rem; }
.theme-cart-drawer__checkout { width: 100%; }

/* ---------------------------------------------------------------------- */
/* Single product page                                                       */
/* ---------------------------------------------------------------------- */
.single-product-page { padding-top: 1rem; padding-bottom: 4rem; }
.breadcrumb-trail { padding: 1rem 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.breadcrumb-trail a:hover, .breadcrumb-trail .is-current { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; min-width: 0; }
@media (min-width: 1024px) {
	.theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; }
	.theme-product-gallery { position: sticky; top: 7rem; }
}
.product-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.875rem, 4vw, 2.75rem); line-height: 1.15; margin: 0.75rem 0 1.25rem; }
.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: 0; overflow: hidden; }
.single-product .single_add_to_cart_button.button,
.single-product .single_add_to_cart_button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	text-transform: uppercase !important;
}
.single-product .single_add_to_cart_button.button:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	color: var(--color-background) !important;
}
.related-products-section .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .related-products-section .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main { position: relative; aspect-ratio: 4/5; border-radius: 1rem; overflow: hidden; background: var(--color-secondary); }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; }
.theme-product-thumb { position: relative; width: 4.5rem; height: 4.5rem; border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--color-secondary); }
.theme-product-thumb.is-active { border-color: var(--color-foreground); }
.theme-product-info__categories { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-info__categories a { color: inherit; }
.theme-btn-single-cart,
.single-product .theme-btn-single-cart.button,
.single-product .single_add_to_cart_button.theme-btn-single-cart {
	width: 100%;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 1rem 1.5rem !important;
	font-size: 12px !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	font-weight: 500 !important;
}
.theme-btn-single-cart:hover:not(.disabled),
.single-product .theme-btn-single-cart.button:hover:not(.disabled) {
	background-color: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
}
.theme-btn-single-cart.disabled,
.single-product .theme-btn-single-cart.button.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1rem; }
.theme-stock-indicator { font-size: 0.9rem; margin-bottom: 1.5rem; }
.theme-stock-indicator--out { color: var(--color-rosa); }
.theme-product-info__description { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; overflow-wrap: break-word; word-break: break-word; }
.theme-qty-minus, .theme-qty-plus { width: 2.5rem; height: 2.75rem; background: none; border: none; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: none; font-size: 1rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-allergen-box { margin: 1.5rem 0; border-radius: 1rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 1.25rem; }
.theme-allergen-box__title { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin: 0 0 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.theme-allergen-box__icon { color: var(--color-rosa); flex-shrink: 0; }
.theme-allergen-box__line { font-size: 0.9rem; color: var(--color-foreground); line-height: 1.6; margin: 0 0 0.35rem; }
.theme-allergen-box__line--muted { color: var(--color-muted-foreground); }
.theme-allergen-box__label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; color: var(--color-muted-foreground); margin-right: 0.25rem; }
.theme-allergen-box__cross { font-size: 12px; color: var(--color-muted-foreground); line-height: 1.6; margin: 0.75rem 0 0; }
.theme-allergen-box__toggle-wrap { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border); display: flex; align-items: center; gap: 0.75rem; }
.theme-allergen-box__toggle-label { font-size: 0.9rem; line-height: 1.4; }
.theme-allergen-switch { position: relative; width: 2.25rem; height: 1.25rem; border-radius: 999px; border: none; background: color-mix(in srgb, var(--color-muted-foreground) 30%, transparent); padding: 0; flex-shrink: 0; cursor: pointer; transition: background-color 0.2s ease; }
.theme-allergen-switch.is-on { background: var(--color-foreground); }
.theme-allergen-switch__thumb { position: absolute; top: 0.2rem; left: 0.2rem; width: 0.875rem; height: 0.875rem; border-radius: 50%; background: var(--color-background); box-shadow: 0 1px 2px color-mix(in srgb, var(--color-foreground) 20%, transparent); transition: transform 0.2s ease; }
.theme-allergen-switch.is-on .theme-allergen-switch__thumb { transform: translateX(1rem); }
.theme-allergen-box__select-wrap { margin-top: 0.75rem; }
.theme-allergen-select { position: relative; }
.theme-allergen-select__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 1rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 0.75rem; font-size: 0.9rem; text-align: left; cursor: pointer; }
.theme-allergen-select__trigger:focus { outline: none; box-shadow: 0 0 0 1px var(--color-primary); }
.theme-allergen-select__chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.theme-allergen-select__trigger[aria-expanded="true"] .theme-allergen-select__chevron { transform: rotate(180deg); }
.theme-allergen-select__menu { position: absolute; z-index: 30; margin-top: 0.25rem; width: 100%; max-height: 16rem; overflow: auto; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 0.75rem; box-shadow: var(--shadow-elevated); list-style: none; padding: 0.25rem 0; margin: 0; }
.theme-allergen-select__option { width: 100%; display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 1rem; background: none; border: none; font-size: 0.9rem; text-align: left; cursor: pointer; }
.theme-allergen-select__option:hover { background: var(--color-secondary); }
.theme-allergen-select__option.is-selected { background: color-mix(in srgb, var(--color-secondary) 80%, transparent); }
.theme-allergen-select__option-label { flex: 1; }
.theme-allergen-select__option-check { display: none; flex-shrink: 0; margin-left: auto; }
.theme-allergen-select__option.is-selected .theme-allergen-select__option-check { display: flex; align-items: center; }
.theme-allergen-select__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.theme-allergen-select__pill { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.75rem; border: 1px solid var(--color-border); border-radius: 999px; font-size: 12px; background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-allergen-select__pill-remove { background: none; border: none; color: var(--color-muted-foreground); font-size: 14px; line-height: 1; padding: 0; cursor: pointer; }
.theme-allergen-select__pill-remove:hover { color: var(--color-foreground); }
.theme-allergen-select__other { margin-top: 0.75rem; width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--color-border); border-radius: 0.75rem; font-size: 0.9rem; }
.theme-allergen-box__hidden-note { display: none !important; }
.theme-allergen-box__noted { margin-top: 0.5rem; font-size: 12px; color: var(--color-muted-foreground); }
.theme-product-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-product-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; background: none; border: none; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; text-align: left; cursor: pointer; }
.theme-product-accordion__chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.theme-product-accordion.is-open .theme-product-accordion__chevron { transform: rotate(180deg); }
.theme-product-accordion__panel { padding-bottom: 1.5rem; }
.theme-product-accordion__panel[hidden] { display: none; }
.theme-product-accordion__body { color: var(--color-muted-foreground); line-height: 1.7; font-size: 15px; }
.theme-product-accordion__body p { margin: 0 0 0.75rem; }
.theme-product-accordion__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-accordion__list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 15px; color: var(--color-muted-foreground); }
.theme-product-accordion__list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--color-foreground); margin-top: 0.55rem; flex-shrink: 0; }
.theme-product-accordion + .theme-product-accordion { border-top: 1px solid var(--color-border); }

.variations.shop_attributes tbody, .single-product .variations tbody tr, .single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden,
.theme-variations-table-hidden { display: none !important; }
.theme-variation-label {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin: 0 0 0.75rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.theme-attr-pill {
	padding: 0.5rem 1rem;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: transparent;
	color: var(--color-foreground);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.theme-attr-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-attr-pill.is-selected {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}
.theme-variation-group { margin-bottom: 0.5rem; }

.newsletter-embed { max-width: 28rem; margin: 0 auto; }
.newsletter-embed form { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .newsletter-embed form { flex-direction: row; } }

.related-products-section { margin-top: 5rem; padding-top: 5rem; border-top: 1px solid var(--color-border); }
.related-products-section__heading-block { text-align: center; margin-bottom: 3rem; }
.related-products-section__kicker { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin: 0 0 0.5rem; }
.related-products-section__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.875rem, 4vw, 2.25rem); margin: 0; }
.related-products-section .theme-product-grid { gap: 1.5rem; }
@media (min-width: 1024px) { .related-products-section .theme-product-grid { gap: 2rem; } }

/* ---------------------------------------------------------------------- */
/* Shop archive                                                              */
/* ---------------------------------------------------------------------- */
.shop-archive { padding: 2rem 0 4rem; }
.shop-archive__header { text-align: center; margin-bottom: 2.5rem; }
.shop-archive__grid { margin-top: 2rem; }

/* ---------------------------------------------------------------------- */
/* 404 / generic pages                                                      */
/* ---------------------------------------------------------------------- */
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404__inner { text-align: center; }
.theme-404__code { font-family: var(--font-condensed); font-size: 5rem; margin-bottom: 0.5rem; }
.theme-404__text { color: var(--color-muted-foreground); margin-bottom: 2rem; }
.page-title { font-family: var(--font-condensed); font-size: 2.5rem; margin: 2rem 0; }
.site-main { padding-top: 2rem; padding-bottom: 4rem; }
body:not(.theme-no-hero) .site-main { padding-top: var(--header-height); }
body.theme-no-hero .site-main { padding-top: 2rem; }

/* ---------------------------------------------------------------------- */
/* Checkout / Cart / My Account / Thank-you (Section 13, 13.7, 22.8)       */
/* ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: 1rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .site-main { padding-top: 1.5rem; } }
body.woocommerce-checkout .page-title { display: none; }
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

.woocommerce-checkout #billing_first_name,
.woocommerce-checkout #billing_last_name,
.woocommerce-checkout #billing_company,
.woocommerce-checkout #billing_address_1,
.woocommerce-checkout #billing_address_2,
.woocommerce-checkout #billing_city,
.woocommerce-checkout #billing_postcode,
.woocommerce-checkout #billing_phone,
.woocommerce-checkout #billing_email,
.woocommerce-checkout #shipping_first_name,
.woocommerce-checkout #shipping_last_name,
.woocommerce-checkout #shipping_company,
.woocommerce-checkout #shipping_address_1,
.woocommerce-checkout #shipping_address_2,
.woocommerce-checkout #shipping_city,
.woocommerce-checkout #shipping_postcode {
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	color: var(--color-foreground) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.375rem !important;
	background-color: var(--color-background) !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__button,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-state-input select,
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	color: var(--color-foreground) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: 0.375rem !important;
	background-color: var(--color-background) !important;
	box-shadow: none !important;
	-webkit-appearance: none;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__button:focus,
body.woocommerce-checkout .wc-block-components-country-input select:focus,
body.woocommerce-checkout .wc-block-components-state-input select:focus,
.woocommerce-checkout .form-row .input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
	outline: none !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
	border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
.woocommerce-checkout .form-row .input-text::placeholder,
.woocommerce-checkout .form-row textarea::placeholder,
.woocommerce-checkout input.input-text::placeholder,
.woocommerce-checkout textarea::placeholder {
	color: var(--color-muted-foreground) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout .wc-block-components-combobox .components-custom-select-control__button {
	min-height: auto !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}

/* Thank-you page */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-family: var(--font-display); }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex; flex-direction: column; gap: 1.5rem;
}
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; }

/* Cart / Account pages width parity */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 2rem; }

/* Screen-reader-only utility */
.screen-reader-text { position: absolute !important; left: -9999px; }
