/*
 * Great Lakes Leaf Co — theme stylesheet.
 * All colors are driven by CSS variables set inline from the Customizer
 * (functions.php -> theme_enqueue_assets). Derived/intermediate tokens are
 * computed here from the brand tokens, never exposed as separate controls.
 */

:root {
	/* Brand tokens match Lovable HSL → HEX exactly (src/index.css).
	 * Injected inline from Customizer; static fallbacks below. */
	--color-background: #f9f7f1;              /* hsl(44 38% 96%) */
	--color-foreground: #12211b;              /* hsl(155 30% 10%) */
	--color-primary: #2c5941;                 /* hsl(148 34% 26%) */
	--color-primary-foreground: #faf9f4;      /* hsl(44 40% 97%) */
	--color-leaf-deep: #18392c;               /* hsl(155 40% 16%) */
	--color-leaf-soft: #8ec297;               /* hsl(130 30% 66%) */
	--color-lake: #356982;                    /* hsl(200 42% 36%) */
	--color-lake-soft: #b0cedd;               /* hsl(200 40% 78%) */
	--color-butter: #f2eee3;                  /* hsl(44 35% 92%) */
	--color-border: #dbd6c7;                  /* hsl(44 22% 82%) */
	--color-muted-foreground: #485b53;        /* hsl(155 12% 32%) */
	--color-surface-deep: #122b21;            /* hsl(155 40% 12%) */
	--color-surface-deep-foreground: #f6f2ea; /* hsl(44 38% 94%) */
	--logo-height: 80px;

	/* Derived Lovable tokens — exact values (not color-mix approximations). */
	--color-card: #f3f0e7;                    /* hsl(44 35% 93%) */
	--color-secondary: #ede9de;               /* hsl(44 30% 90%) */
	--color-secondary-foreground: #192e25;    /* hsl(155 30% 14%) */
	--color-muted: #e7e4da;                   /* hsl(44 22% 88%) */
	--color-accent: var(--color-lake);         /* hsl(200 42% 36%) */
	--color-wheat: #e6d8bc;                   /* hsl(40 45% 82%) */
	--color-button-text: var(--color-primary-foreground);
	--color-destructive: #ae2929;             /* hsl(0 62% 42%) */

	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Inter', system-ui, sans-serif;

	--shadow-soft: 0 4px 20px -4px hsl(155 30% 10% / 0.08);
	--shadow-elevated: 0 12px 40px -12px hsl(155 30% 10% / 0.20);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--header-height: 80px;
	--btn-radius: 0px;
	--btn-height: 3.25rem;
	--btn-padding: 1rem 1.75rem;
	--btn-font-size: 12px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.12em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--card-radius: 0px;
	--section-padding: 2rem;
	--checkout-gap: 1.5rem;
	--checkout-max-width: 1280px;
}

/* -------------------------------------------------------------------------
 * RESET / BASE
 * ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__image):not(.theme-gallery-img):not(.theme-pdp-image):not(.theme-thumb-img) {
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card__image, .theme-gallery-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: -0.02em;
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

.container-wide {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
}
@media (min-width: 1024px) {
	.container-wide { padding-left: 2rem; padding-right: 2rem; }
}

.italic-accent { font-style: italic; color: var(--color-primary); }
.italic-accent-soft { font-style: italic; color: var(--color-leaf-soft); }
.italic-accent-muted { font-style: italic; color: color-mix(in srgb, var(--color-primary) 75%, transparent); }

.theme-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-lake);
	font-family: var(--font-body);
	margin-bottom: 1rem;
}
.theme-eyebrow-line { display: inline-block; height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-lake) 60%, transparent); }
.theme-eyebrow-bold { font-weight: 600; letter-spacing: 0.22em; font-size: 11px; }
.theme-eyebrow-light { color: var(--color-lake-soft); }
.theme-eyebrow-inline { font-weight: 500; }
.theme-eyebrow-sm { margin-bottom: 0; }
.theme-eyebrow-hero { color: var(--color-lake-soft); margin-bottom: 2rem; }
.theme-eyebrow-hero .theme-eyebrow-line { width: 2.5rem; background: var(--color-lake-soft); }

/* -------------------------------------------------------------------------
 * ANIMATIONS
 * ---------------------------------------------------------------------- */
@keyframes gll-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes gll-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gll-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes gll-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gll-slow-zoom { from { transform: scale(1.04); } to { transform: scale(1.12); } }

.animate-fade-in { animation: gll-fade-in 0.6s var(--ease-smooth) forwards; }
.animate-slide-up { animation: gll-slide-up 0.6s var(--ease-smooth) forwards; }

.reveal-up, .reveal-fade, .theme-product-card-wrap.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal-fade { transform: translateY(32px); transition-duration: 1s; }
.reveal-up.is-visible, .reveal-fade.is-visible, .theme-product-card-wrap.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-up[data-stagger] { transition-delay: calc(var(--stagger-index, 0) * 80ms); }
.reveal-up[data-stagger="0"] { --stagger-index: 0; }
.reveal-up[data-stagger="1"] { --stagger-index: 1; }
.reveal-up[data-stagger="2"] { --stagger-index: 2; }
.reveal-up[data-stagger="3"] { --stagger-index: 3; }
.reveal-up[data-stagger="4"] { --stagger-index: 4; }
.reveal-up[data-stagger="5"] { --stagger-index: 5; }
.reveal-up[data-stagger="6"] { --stagger-index: 6; }
.reveal-up[data-stagger="7"] { --stagger-index: 7; }
.reveal-up[data-stagger="8"] { --stagger-index: 8; }
.reveal-up[data-stagger="9"] { --stagger-index: 9; }

/* Customizer-preview fallback — never hide content in the editor */
body.is-customizer .reveal-up,
body.is-customizer .reveal-fade,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

.slow-zoom { animation: gll-slow-zoom 18s var(--ease-smooth) infinite alternate; }

@media (prefers-reduced-motion: reduce) {
	.reveal-up, .reveal-fade, .theme-product-card-wrap.reveal-item, .slow-zoom, .theme-marquee-track {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

img.is-loaded { animation: gll-fade-in 0.5s var(--ease-smooth); }

/* -------------------------------------------------------------------------
 * BUTTONS
 * ---------------------------------------------------------------------- */
.theme-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	padding: 1rem 1.75rem;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--font-body);
	border: none;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}
.theme-btn-primary:hover { background: var(--color-leaf-deep); }

.theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	padding: 0.9rem 1.5rem;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--font-body);
	transition: border-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.theme-btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

.theme-hero-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 1.75rem;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--font-body);
	transition: background-color 0.2s, color 0.2s;
	white-space: nowrap;
}
.theme-hero-cta-btn--fill { background: var(--color-primary-foreground); color: var(--color-foreground); }
.theme-hero-cta-btn--fill:hover { background: var(--color-leaf-soft); }
.btn-hero-outline { color: var(--color-primary-foreground); background: transparent; }
.btn-hero-outline:hover { background: color-mix(in srgb, var(--color-primary-foreground) 10%, transparent); }
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button {
	text-transform: uppercase; /* source uses uppercase for these CTAs consistently */
}

/* -------------------------------------------------------------------------
 * ANNOUNCEMENT BAR
 * ---------------------------------------------------------------------- */
.theme-announcement-bar {
	position: relative;
	background: var(--color-foreground);
	color: var(--color-background);
}
.theme-announcement-inner { padding-top: 0.5rem; padding-bottom: 0.5rem; text-align: center; }
.theme-announcement-text { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); margin: 0; }
.theme-announcement-close {
	position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
	padding: 0.25rem; opacity: 0.7; color: inherit; transition: opacity 0.2s;
}
.theme-announcement-close:hover { opacity: 1; }

/* -------------------------------------------------------------------------
 * SCROLL PROGRESS
 * ---------------------------------------------------------------------- */
.theme-scroll-progress {
	position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60;
	background: linear-gradient(90deg, var(--color-leaf-deep), var(--color-leaf-soft), var(--color-lake));
	transform: scaleX(0); transform-origin: left; transition: transform 80ms linear;
}

/* -------------------------------------------------------------------------
 * ADMIN BAR OFFSET (sticky header + progress bar)
 * ---------------------------------------------------------------------- */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .theme-scroll-progress { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar .theme-scroll-progress { top: 46px; }
}

/* -------------------------------------------------------------------------
 * HEADER
 * ---------------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; left: 0; right: 0; z-index: 50;
	background: var(--color-background);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s, border-color 0.3s;
}
.site-header.is-solid, .site-header.menu-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom-color: var(--color-border);
}
.site-nav {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 1rem;
	height: 5rem;
	position: relative;
}
@media (min-width: 768px) { .site-nav { height: 6rem; column-gap: 1.25rem; } }

.site-logo-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
	z-index: 1;
}
.site-logo-img {
	height: 4rem;
	width: auto;
	max-width: min(160px, 28vw);
	object-fit: contain;
	transition: transform 0.5s;
}
.site-logo-link:hover .site-logo-img { transform: scale(1.03); }
@media (min-width: 768px) {
	.site-logo-img { height: 5rem; max-width: min(180px, 22vw); }
}
@media (min-width: 1280px) {
	.site-logo-img { height: 5.5rem; max-width: 220px; }
}
/* Customizer logo height, but never let it blow out the header row. */
.site-logo-img {
	height: min(var(--logo-height), 5rem) !important;
	width: auto !important;
}
@media (min-width: 768px) {
	.site-logo-img { height: min(var(--logo-height), 5.5rem) !important; }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; }
.site-logo-text-inline { margin-left: 0.5rem; }

/* Desktop center nav — in-flow grid cell (no absolute overlap with CTA). */
.site-nav-center {
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.site-nav-center { display: flex; }
}
.theme-nav-list,
.theme-nav-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 1.25rem;
	min-width: 0;
}
@media (min-width: 1280px) {
	.theme-nav-list,
	.theme-nav-fallback { gap: 2rem; }
}
.theme-nav-link {
	font-size: 12px;
	font-family: var(--font-body);
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	position: relative;
	transition: color 0.3s;
	white-space: nowrap;
}
.theme-nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease-smooth);
}
.theme-nav-link:hover { color: var(--color-primary); }
.theme-nav-link:hover::after { transform: scaleX(1); }

.site-nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	flex-shrink: 0;
	z-index: 1;
}
@media (min-width: 768px) { .site-nav-right { gap: 0.75rem; } }

/*
 * CTA: visible from md up (matches Lovable). Grid layout keeps it from
 * overlapping the center nav — no absolute centering.
 */
.theme-header-cta {
	display: none;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: 999px;
	transition: background-color 0.2s, color 0.2s;
	white-space: nowrap;
	flex-shrink: 0;
}
@media (min-width: 768px) {
	.theme-header-cta { display: inline-flex; }
}
/* Compact CTA + tighter nav gaps in the collision-prone lg band. */
@media (min-width: 1024px) and (max-width: 1279px) {
	.theme-header-cta {
		padding: 0.4rem 0.75rem;
		font-size: 11px;
		letter-spacing: 0.08em;
		max-width: 11.5rem;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.theme-nav-list,
	.theme-nav-fallback { gap: 0.85rem; }
	.theme-nav-link {
		font-size: 11px;
		letter-spacing: 0.08em;
	}
}
.theme-header-cta:hover {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}

.theme-cart-btn { position: relative; padding: 0.5rem; transition: opacity 0.2s; color: var(--color-foreground); }
.theme-cart-btn:hover { opacity: 0.6; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 1.25rem; height: 1.25rem; padding: 0 3px;
	display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500;
	background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle { display: inline-flex; padding: 0.5rem; color: var(--color-foreground); position: relative; z-index: 2; }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }
.theme-mobile-toggle .icon-close { display: none; }
.theme-mobile-toggle.is-open .icon-menu { display: none; }
.theme-mobile-toggle.is-open .icon-close { display: inline; }
.theme-mobile-toggle .icon-menu,
.theme-mobile-toggle .icon-close {
	transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}
.theme-mobile-toggle.is-open .icon-close { animation: gll-icon-pop 0.35s var(--ease-smooth); }

.theme-mobile-menu {
	display: block;
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
	border-top: 1px solid transparent;
	padding: 0;
	transform: translateY(-6px);
	transition:
		max-height 0.45s var(--ease-smooth),
		opacity 0.3s var(--ease-smooth),
		visibility 0.3s,
		transform 0.35s var(--ease-smooth),
		border-color 0.3s,
		padding 0.35s var(--ease-smooth);
}
.theme-mobile-menu.is-open {
	max-height: min(70vh, 28rem);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	border-top-color: var(--color-border);
	padding: 1rem 0 1.25rem;
	overflow-y: auto;
}
.theme-mobile-nav-list,
.theme-mobile-menu .theme-nav-fallback {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.theme-mobile-nav-list a,
.theme-mobile-menu .theme-nav-link {
	text-align: left;
	font-size: 1rem;
	font-weight: 500;
	padding: 0.75rem 0.25rem;
	text-transform: none;
	letter-spacing: normal;
	opacity: 0;
	transform: translateY(10px);
	transition: color 0.2s, opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}
.theme-mobile-menu.is-open .theme-mobile-nav-list a,
.theme-mobile-menu.is-open .theme-nav-link,
.theme-mobile-menu.is-open .theme-nav-fallback a {
	opacity: 1;
	transform: translateY(0);
}
.theme-mobile-menu.is-open .theme-mobile-nav-list li:nth-child(1) a,
.theme-mobile-menu.is-open .theme-nav-fallback > a:nth-child(1) { transition-delay: 0.05s; }
.theme-mobile-menu.is-open .theme-mobile-nav-list li:nth-child(2) a,
.theme-mobile-menu.is-open .theme-nav-fallback > a:nth-child(2) { transition-delay: 0.09s; }
.theme-mobile-menu.is-open .theme-mobile-nav-list li:nth-child(3) a,
.theme-mobile-menu.is-open .theme-nav-fallback > a:nth-child(3) { transition-delay: 0.13s; }
.theme-mobile-menu.is-open .theme-mobile-nav-list li:nth-child(4) a,
.theme-mobile-menu.is-open .theme-nav-fallback > a:nth-child(4) { transition-delay: 0.17s; }
.theme-mobile-menu.is-open .theme-mobile-nav-list li:nth-child(5) a,
.theme-mobile-menu.is-open .theme-nav-fallback > a:nth-child(5) { transition-delay: 0.21s; }
.theme-mobile-menu.is-open .theme-mobile-nav-list li:nth-child(6) a,
.theme-mobile-menu.is-open .theme-nav-fallback > a:nth-child(6) { transition-delay: 0.25s; }
/*
 * Scroll lock + pin header. Sticky headers leave the viewport when body
 * gets overflow:hidden while scrolled — keep the bar fixed and freeze scroll.
 */
body.mobile-menu-open {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
	touch-action: none;
}
body.mobile-menu-open .site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 50;
	max-height: 100dvh;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
body.admin-bar.mobile-menu-open .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar.mobile-menu-open .site-header { top: 46px; }
}
.theme-mobile-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 1rem;
	padding: 0.75rem 1.25rem;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: var(--font-body);
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: 999px;
	width: 100%;
	opacity: 0;
	transform: translateY(10px);
	transition: color 0.2s, background-color 0.2s, opacity 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
	transition-delay: 0.28s;
}
.theme-mobile-menu.is-open .theme-mobile-cta {
	opacity: 1;
	transform: translateY(0);
}
.theme-mobile-cta:hover {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}
@media (min-width: 1024px) {
	.theme-mobile-menu { display: none !important; }
	body.mobile-menu-open {
		position: static;
		overflow: visible;
		touch-action: auto;
	}
	body.mobile-menu-open .site-header {
		position: sticky;
		max-height: none;
		overflow: visible;
	}
}
@keyframes gll-icon-pop {
	0% { transform: scale(0.7) rotate(-45deg); opacity: 0; }
	100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
	.theme-mobile-menu,
	.theme-mobile-nav-list a,
	.theme-mobile-menu .theme-nav-link {
		transition: none !important;
	}
	.theme-mobile-toggle.is-open .icon-close { animation: none; }
}

/* Home / inner pages: keep header offset, but PDP owns its own top padding. */
body.theme-no-hero .theme-page-main,
body.theme-no-hero .theme-shop-archive,
body.theme-no-hero .theme-404-main {
	padding-top: 2rem;
}

/* -------------------------------------------------------------------------
 * HERO
 * ---------------------------------------------------------------------- */
.theme-hero { position: relative; background: var(--color-leaf-deep); overflow: hidden; }
.theme-hero-media-wrap { position: relative; width: 100%; min-height: calc(100svh - 176px); display: flex; align-items: flex-end; }
@media (min-width: 768px) { .theme-hero-media-wrap { min-height: calc(100svh - 184px); } }
.theme-hero-video { z-index: 0; }
.theme-hero-overlay { position: absolute; inset: 0; }
.theme-hero-overlay-1 { background: color-mix(in srgb, var(--color-leaf-deep) 35%, transparent); }
.theme-hero-overlay-2 { background: linear-gradient(to top, color-mix(in srgb, var(--color-leaf-deep) 95%, transparent), color-mix(in srgb, var(--color-leaf-deep) 65%, transparent), color-mix(in srgb, var(--color-leaf-deep) 20%, transparent)); }
.theme-hero-overlay-3 { background: linear-gradient(to right, color-mix(in srgb, var(--color-leaf-deep) 80%, transparent), color-mix(in srgb, var(--color-leaf-deep) 20%, transparent), transparent); }
.theme-hero-content { padding-top: 6rem; padding-bottom: 3.5rem; width: 100%; }
@media (min-width: 768px) { .theme-hero-content { padding-top: 7rem; padding-bottom: 5rem; } }
.theme-hero-text { max-width: 56rem; color: var(--color-primary-foreground); }
.hero-title {
	font-family: var(--font-display); font-weight: 400; font-size: 40px; line-height: 0.95; letter-spacing: -0.02em;
	margin-bottom: 1.5rem; text-shadow: 0 2px 24px color-mix(in srgb, var(--color-leaf-deep) 50%, transparent);
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 76px; } }
@media (min-width: 1280px) { .hero-title { font-size: 88px; } }
.hero-subtitle { font-size: 1rem; line-height: 1.65; margin-bottom: 2rem; max-width: 36rem; color: color-mix(in srgb, var(--color-primary-foreground) 95%, transparent); }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.theme-hero-ctas { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 25%, transparent); width: fit-content; }
.theme-hero-ctas .theme-hero-cta-btn:not(:last-child) { border-right: 1px solid color-mix(in srgb, var(--color-primary-foreground) 25%, transparent); }

/* -------------------------------------------------------------------------
 * TRUST MARQUEE
 * ---------------------------------------------------------------------- */
.theme-marquee { position: relative; background: var(--color-butter); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); overflow: hidden; }
.theme-marquee-track { display: flex; white-space: nowrap; animation: gll-marquee 60s linear infinite; will-change: transform; }
.theme-marquee-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; flex-shrink: 0; color: var(--color-primary); }
.theme-marquee-item span:not(.theme-marquee-dot) { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
@media (min-width: 768px) { .theme-marquee-item { padding-top: 1.25rem; padding-bottom: 1.25rem; } }
.theme-marquee-dot { margin-left: 2rem; height: 4px; width: 4px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); }

/* -------------------------------------------------------------------------
 * SECTION HEADINGS (per-section scales — Section 2.2)
 * ---------------------------------------------------------------------- */
.section-heading { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; }
.shop-heading { font-size: 2.25rem; line-height: 0.98; }
@media (min-width: 768px) { .shop-heading { font-size: 3.75rem; } }
@media (min-width: 1280px) { .shop-heading { font-size: 4.5rem; } }
.about-heading { font-size: 2.25rem; line-height: 1.02; }
@media (min-width: 768px) { .about-heading { font-size: 3rem; } }
@media (min-width: 1280px) { .about-heading { font-size: 3.75rem; } }
.subs-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .subs-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .subs-heading { font-size: 2.625rem; } }
@media (min-width: 1280px) { .subs-heading { font-size: 3rem; } }
.partner-heading { font-size: 2.25rem; line-height: 1.02; }
@media (min-width: 768px) { .partner-heading { font-size: 3rem; } }
@media (min-width: 1280px) { .partner-heading { font-size: 3.75rem; } }
.family-heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .family-heading { font-size: 3rem; } }
@media (min-width: 1280px) { .family-heading { font-size: 3.75rem; } }
.contact-cta-heading { font-family: var(--font-display); font-weight: 400; font-size: 40px; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 2rem; text-shadow: 0 2px 24px color-mix(in srgb, var(--color-leaf-deep) 55%, transparent); }
@media (min-width: 640px) { .contact-cta-heading { font-size: 3rem; } }
@media (min-width: 768px) { .contact-cta-heading { font-size: 3.75rem; } }
@media (min-width: 1280px) { .contact-cta-heading { font-size: 88px; } }
.related-heading, .shop-heading { }
.related-heading { font-size: 1.875rem; line-height: 1.02; }
@media (min-width: 768px) { .related-heading { font-size: 3rem; } }

/* -------------------------------------------------------------------------
 * SHOP SECTION + PRODUCT CARDS
 * ---------------------------------------------------------------------- */
.theme-shop-section { background: var(--color-background); padding-top: 6rem; padding-bottom: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .theme-shop-section { padding-top: 8rem; padding-bottom: 8rem; } }
.theme-shop-header { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: end; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .theme-shop-header { grid-template-columns: 7fr 5fr; gap: 2.5rem; margin-bottom: 5rem; } }
.theme-shop-desc { color: var(--color-muted-foreground); line-height: 1.65; }
.theme-shop-badge { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--color-border); background: var(--color-butter); padding: 0.375rem 0.75rem; }
.theme-shop-badge .dot { height: 6px; width: 6px; border-radius: 999px; background: var(--color-primary); }
.theme-shop-badge span:last-child { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

.theme-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.5rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-home-shop-grid { grid-template-columns: repeat(5, minmax(0,1fr)); column-gap: 2rem; row-gap: 3.5rem; } }
@media (min-width: 1024px) { .theme-related-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.theme-shop-empty { text-align: center; color: var(--color-muted-foreground); padding: 3rem 0; grid-column: 1 / -1; }

.theme-product-card-wrap { display: flex; }
.theme-product-card { position: relative; display: flex; flex-direction: column; width: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__quick-add, .theme-product-card__quick-add * { pointer-events: auto; }

.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; margin-bottom: 1.25rem;
	transition: transform 0.3s var(--ease-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-4px); }
.theme-product-card__image { transition: transform 0.9s var(--ease-smooth); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.05); }
.theme-product-card__image.is-sold-out { opacity: 0.6; }

.theme-product-badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; padding: 0.25rem 0.75rem;
	font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; font-family: var(--font-body);
}
.theme-product-badge-soldout { background: var(--color-foreground); color: var(--color-background); }

.theme-product-card__quick-add {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3; width: 2.5rem; height: 2.5rem; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center; background: var(--color-background); color: var(--color-foreground);
	box-shadow: var(--shadow-soft); opacity: 0; transition: opacity 0.3s, transform 0.2s;
}
@media (max-width: 767px) { .theme-product-card__quick-add { opacity: 1; } }
.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; }
.theme-product-card__quick-add:hover { transform: scale(1.08); }
.theme-product-card__quick-add:active { transform: scale(0.92); }

.theme-product-card__info { margin-top: 1rem; text-align: center; display: flex; flex-direction: column; gap: 0.375rem; }
.theme-product-card__cat { display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 80%, transparent); font-family: var(--font-body); }
.theme-product-card__cat::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 70%, transparent); }
.theme-product-card__title { font-family: var(--font-display); font-weight: 400; font-size: 1.125rem; line-height: 1.3; transition: color 0.3s; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.25rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 13px; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-product-card__price del { opacity: 0.6; margin-right: 0.4em; }
.theme-product-card__price ins { text-decoration: none; }

/* -------------------------------------------------------------------------
 * ABOUT SECTION
 * ---------------------------------------------------------------------- */
.theme-about-section { background: var(--color-butter); padding-top: 6rem; padding-bottom: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .theme-about-section { padding-top: 8rem; padding-bottom: 8rem; } }
.theme-about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.theme-about-media { position: relative; }
.theme-about-image-frame { position: relative; aspect-ratio: 1/1; width: 100%; overflow: hidden; box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 10%, transparent); }
.theme-about-floating-label {
	position: absolute; bottom: 1.5rem; left: -0.75rem; background: var(--color-butter); border: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	box-shadow: var(--shadow-soft); padding: 1.25rem 1.5rem; max-width: 18rem;
}
@media (min-width: 1024px) { .theme-about-floating-label { left: -2rem; } }
.label-eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-lake); font-weight: 600; margin-bottom: 0.25rem; font-family: var(--font-body); }
.label-body { font-family: var(--font-display); font-size: 0.875rem; line-height: 1.3; }
.theme-about-story { display: flex; flex-direction: column; }
.theme-about-body { color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-size: 1.125rem; line-height: 1.65; margin-bottom: 3rem; }
.theme-about-notes { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 3rem; }
.note-label { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-lake); font-weight: 600; margin-bottom: 0.5rem; font-family: var(--font-body); }
.note-body { font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.65; border-left: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); padding-left: 1.25rem; }
.theme-about-closing { font-size: 1rem; line-height: 1.3; }
@media (min-width: 768px) { .theme-about-closing { font-size: 1.125rem; } }
.theme-about-stats { margin-top: 5rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
@media (min-width: 768px) { .theme-about-stats { margin-top: 7rem; } }
.theme-stat { padding: 2rem 1rem; border-right: 1px solid var(--color-border); }
.theme-stat:last-child { border-right: none; }
@media (min-width: 768px) { .theme-stat { padding: 2rem 2rem; } }
.stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); line-height: 1; }
@media (min-width: 768px) { .stat-value { font-size: 2.25rem; } }
.stat-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: 0.75rem; font-family: var(--font-body); }

/* -------------------------------------------------------------------------
 * SUBSCRIPTIONS SECTION
 * ---------------------------------------------------------------------- */
.theme-subs-section { background: var(--color-background); padding-top: 6rem; padding-bottom: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .theme-subs-section { padding-top: 8rem; padding-bottom: 8rem; } }
.theme-subs-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .theme-subs-grid { grid-template-columns: 4fr 8fr; gap: 2.5rem; } }
@media (min-width: 1280px) { .theme-subs-grid { grid-template-columns: 3fr 9fr; } }
.subs-heading { color: var(--color-primary); margin-bottom: 1.25rem; }
.theme-subs-desc { font-size: 1.125rem; color: color-mix(in srgb, var(--color-primary) 80%, transparent); line-height: 1.65; max-width: 36rem; }
.theme-subs-plans { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .theme-subs-plans { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.theme-sub-card { display: flex; flex-direction: column; background: var(--color-butter); border: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); transition: border-color 0.5s; height: 100%; }
.theme-sub-card:hover { border-color: color-mix(in srgb, var(--color-primary) 30%, transparent); }
.theme-sub-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.theme-sub-card-media img { transition: transform 0.9s var(--ease-smooth); }
.theme-sub-card:hover .theme-sub-card-media img { transform: scale(1.05); }
.theme-sub-card-tag {
	position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.375rem;
	font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; background: color-mix(in srgb, var(--color-butter) 95%, transparent);
	backdrop-filter: blur(4px); padding: 0.25rem 0.625rem; color: var(--color-primary); font-family: var(--font-body);
}
.theme-sub-card-tag .dot { height: 4px; width: 4px; border-radius: 999px; background: var(--color-lake); }
.theme-sub-card-body { display: flex; flex-direction: column; flex: 1; padding: 1.75rem 2rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); }
.theme-sub-card-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.25rem; }
.theme-sub-card-price .price { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-primary); line-height: 1; }
@media (min-width: 768px) { .theme-sub-card-price .price { font-size: 2.25rem; } }
.theme-sub-card-price .cadence { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 60%, transparent); font-family: var(--font-body); }
.theme-sub-card-desc { font-size: 14.5px; color: color-mix(in srgb, var(--color-primary) 85%, transparent); line-height: 1.65; margin-bottom: 2rem; }
.theme-sub-card-cta {
	margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%;
	background: var(--color-primary); color: var(--color-primary-foreground); padding: 1rem 1.5rem; font-size: 12px;
	letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; font-family: var(--font-body); transition: background-color 0.2s;
}
.theme-sub-card-cta:hover { background: var(--color-leaf-deep); }
.theme-quote-strip {
	margin-top: 2.5rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
	padding: 1.75rem 2rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); background: var(--color-butter);
}
@media (min-width: 768px) { .theme-quote-strip { flex-direction: row; align-items: center; margin-top: 3rem; } }
.quote-strip-left { display: flex; align-items: flex-start; gap: 1rem; max-width: 42rem; }
.quote-strip-icon { margin-top: 0.25rem; display: flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); flex-shrink: 0; color: var(--color-primary); }
.quote-strip-label { display: block; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-lake); font-weight: 600; margin-bottom: 0.375rem; font-family: var(--font-body); }
.quote-strip-body { font-size: 15px; color: color-mix(in srgb, var(--color-primary) 85%, transparent); line-height: 1.65; }
.theme-quote-strip .theme-btn-outline { border-color: var(--color-primary); color: var(--color-primary); flex-shrink: 0; }
.theme-quote-strip .theme-btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-subs-footnote { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); display: flex; flex-direction: column; gap: 0.75rem; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 60%, transparent); font-weight: 500; font-family: var(--font-body); }
@media (min-width: 768px) { .theme-subs-footnote { flex-direction: row; justify-content: space-between; align-items: center; } }
.theme-subs-footnote .right { text-align: right; }

/* -------------------------------------------------------------------------
 * PARTNERSHIPS SECTION
 * ---------------------------------------------------------------------- */
.theme-partner-section { background: var(--color-surface-deep); color: var(--color-surface-deep-foreground); scroll-margin-top: 6rem; }
.theme-partner-grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .theme-partner-grid { grid-template-columns: 55fr 45fr; } }
.theme-partner-media { position: relative; min-height: 420px; overflow: hidden; order: 1; }
@media (min-width: 1024px) { .theme-partner-media { min-height: 100%; } }
.theme-partner-media img { transform: scale(1.06); transition: transform 1.4s ease-out; }
.theme-partner-media.is-visible img { transform: scale(1); }
.theme-partner-media-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-surface-deep) 15%, transparent); mix-blend-mode: multiply; }
.theme-partner-media-overlay::after {
	content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent, color-mix(in srgb, var(--color-surface-deep) 60%, transparent));
}
@media (min-width: 1024px) { .theme-partner-media-overlay::after { background: linear-gradient(to right, transparent, color-mix(in srgb, var(--color-surface-deep) 25%, transparent)); } }
.theme-partner-panel { order: 2; display: flex; align-items: center; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .theme-partner-panel { padding: 7rem 3rem; } }
@media (min-width: 1280px) { .theme-partner-panel { padding: 7rem 6rem; } }
.theme-partner-panel-inner { max-width: 36rem; width: 100%; }
.theme-partner-body { opacity: 0.85; line-height: 1.65; margin-bottom: 2.5rem; max-width: 28rem; }
.theme-partner-features { display: grid; grid-template-columns: 1fr; border-top: 1px solid color-mix(in srgb, var(--color-surface-deep-foreground) 15%, transparent); margin-bottom: 2.5rem; }
@media (min-width: 640px) { .theme-partner-features { grid-template-columns: 1fr 1fr; } }
.theme-partner-feature { padding: 1.25rem 0; border-bottom: 1px solid color-mix(in srgb, var(--color-surface-deep-foreground) 15%, transparent); display: flex; align-items: center; gap: 1rem; min-width: 0; }
.theme-partner-feature .feature-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--color-lake-soft) 35%, transparent); color: var(--color-lake-soft); }
.theme-partner-feature .feature-label { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.theme-partner-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.theme-chip { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-lake-soft) 40%, transparent); padding: 0.375rem 0.75rem; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--color-lake-soft); }
.theme-chip .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--color-lake-soft); }
.theme-partner-cta {
	display: inline-flex; align-items: center; gap: 0.75rem; background: var(--color-surface-deep-foreground); color: var(--color-surface-deep);
	padding: 1rem 2rem; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; font-family: var(--font-body); transition: background-color 0.2s;
}
.theme-partner-cta:hover { background: var(--color-lake-soft); }
.theme-partner-cta:hover svg { transform: translateX(4px); }
.theme-partner-cta svg { transition: transform 0.2s; }

/* -------------------------------------------------------------------------
 * FAMILY SECTION
 * ---------------------------------------------------------------------- */
.theme-family-section { background: var(--color-butter); padding-top: 6rem; padding-bottom: 6rem; scroll-margin-top: 6rem; }
@media (min-width: 768px) { .theme-family-section { padding-top: 8rem; padding-bottom: 8rem; } }
.theme-family-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-family-grid { grid-template-columns: 6fr 6fr; gap: 5rem; } }
.theme-family-media-inner { position: relative; }
.theme-family-image-frame { position: relative; aspect-ratio: 1/1; overflow: hidden; background: color-mix(in srgb, var(--color-primary) 5%, transparent); }
.theme-family-map-label {
	position: absolute; bottom: 0; left: 0; background: var(--color-butter); padding: 0.75rem 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
	border-right: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent); display: flex; align-items: center; gap: 0.75rem;
}
.theme-family-map-label span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary); font-weight: 600; font-family: var(--font-body); }
.theme-family-map-label svg { color: var(--color-lake); }
.theme-family-detail-frame {
	display: none; position: absolute; bottom: -2rem; right: -1.5rem; width: 11rem; height: 11rem; overflow: hidden;
	border: 10px solid var(--color-butter); box-shadow: 0 20px 60px -20px color-mix(in srgb, var(--color-primary) 25%, transparent); background: color-mix(in srgb, var(--color-primary) 5%, transparent);
}
@media (min-width: 768px) { .theme-family-detail-frame { display: block; } }
@media (min-width: 1024px) { .theme-family-detail-frame { right: -2.5rem; width: 14rem; height: 14rem; } }
.theme-family-body { font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.65; margin-bottom: 2rem; max-width: 36rem; }
.theme-family-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0; font-size: 12px; letter-spacing: 0.05em; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 2rem; }
.theme-family-chips .sep { margin: 0 0.75rem; font-size: 8px; color: color-mix(in srgb, var(--color-lake) 70%, transparent); }
.theme-family-quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.3; margin-bottom: 2.5rem; max-width: 28rem; color: color-mix(in srgb, var(--color-primary) 75%, transparent); }
@media (min-width: 768px) { .theme-family-quote { font-size: 1.25rem; } }
.theme-family-cta { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 1.75rem; background: var(--color-primary); color: var(--color-primary-foreground); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; font-family: var(--font-body); transition: opacity 0.2s; }
.theme-family-cta:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.theme-family-cta:hover svg { transform: translateX(4px); }
.theme-family-cta svg { transition: transform 0.2s; }

/* -------------------------------------------------------------------------
 * CONTACT CTA SECTION
 * ---------------------------------------------------------------------- */
.theme-contact-cta-section { position: relative; overflow: hidden; background: var(--color-leaf-deep); color: var(--color-primary-foreground); scroll-margin-top: 6rem; }
.theme-contact-video { z-index: 0; }
.theme-contact-overlay { position: absolute; inset: 0; }
.theme-contact-overlay-1 { background: color-mix(in srgb, var(--color-leaf-deep) 70%, transparent); }
.theme-contact-overlay-2 { background: linear-gradient(to bottom, color-mix(in srgb, var(--color-leaf-deep) 40%, transparent), color-mix(in srgb, var(--color-leaf-deep) 70%, transparent), var(--color-leaf-deep)); }
.theme-contact-overlay-3 { background: linear-gradient(to right, color-mix(in srgb, var(--color-leaf-deep) 80%, transparent), color-mix(in srgb, var(--color-leaf-deep) 25%, transparent), transparent); }
.theme-contact-content { position: relative; padding-top: 7rem; padding-bottom: 8rem; }
@media (min-width: 768px) { .theme-contact-content { padding-top: 10rem; padding-bottom: 12rem; } }
.theme-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .theme-contact-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.theme-contact-cta-body { font-size: 1rem; line-height: 1.65; max-width: 36rem; color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-contact-cta-body { font-size: 1.125rem; } }
.theme-contact-cta-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.theme-contact-cta-buttons .theme-hero-cta-btn--fill {
	color: var(--color-leaf-deep);
}
.theme-contact-cta-buttons .btn-hero-outline {
	border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 40%, transparent);
}
.theme-contact-panel { margin-top: 1rem; }
@media (min-width: 1024px) { .theme-contact-panel { margin-top: 0.5rem; } }
.theme-contact-panel-inner { background: color-mix(in srgb, var(--color-leaf-deep) 55%, transparent); backdrop-filter: blur(4px); border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); padding: 2rem 2.5rem; }
.theme-contact-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.theme-contact-panel-head span:first-child { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-lake-soft); font-family: var(--font-body); }
.theme-contact-panel-head .rule { height: 1px; flex: 1; margin-left: 1rem; background: color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); }
.theme-contact-panel-list { display: flex; flex-direction: column; gap: 1.5rem; }
.theme-contact-panel-item { display: flex; align-items: flex-start; gap: 1rem; }
.theme-contact-panel-item .icon { margin-top: 0.25rem; display: flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 25%, transparent); flex-shrink: 0; transition: border-color 0.2s; }
.theme-contact-panel-item:hover .icon { border-color: var(--color-leaf-soft); }
.text-col { display: flex; flex-direction: column; }
.text-col .label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-lake-soft); font-family: var(--font-body); }
.text-col .value { font-size: 0.9375rem; color: var(--color-primary-foreground); transition: color 0.2s; word-break: break-all; }
@media (min-width: 768px) { .text-col .value { font-size: 1rem; } }
.theme-contact-panel-item:hover .text-col .value { color: var(--color-leaf-soft); }
.theme-contact-panel-tag { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); display: flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-lake-soft); font-family: var(--font-body); }
.theme-contact-panel-tag .dot { width: 6px; height: 6px; background: var(--color-leaf-soft); }
.theme-contact-signature { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .theme-contact-signature { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 7rem; } }
.theme-contact-signature span:first-child { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-lake-soft); font-family: var(--font-body); }
.theme-contact-signature .italic-accent { font-size: 1.125rem; color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); }
@media (min-width: 768px) { .theme-contact-signature .italic-accent { font-size: 1.25rem; } }

/* -------------------------------------------------------------------------
 * FOOTER
 * ---------------------------------------------------------------------- */
.site-footer { background: var(--color-surface-deep); color: var(--color-surface-deep-foreground); }
.theme-footer-inner { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .theme-footer-inner { padding-top: 5rem; padding-bottom: 5rem; } }
.theme-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer-grid { grid-template-columns: repeat(12, 1fr); } }
.theme-footer-col-brand { grid-column: span 5 / span 5; }
.theme-footer-col-explore { grid-column: span 3 / span 3; }
.theme-footer-col-contact { grid-column: span 4 / span 4; }
@media (max-width: 767px) { .theme-footer-col-brand, .theme-footer-col-explore, .theme-footer-col-contact { grid-column: auto; } }
.footer-logo-img { height: 4rem; }
@media (min-width: 768px) { .footer-logo-img { height: 5rem; } }
.footer-logo-text { font-family: var(--font-display); font-size: 1.5rem; }
.theme-footer-desc { margin-top: 1.5rem; font-size: 0.875rem; line-height: 1.65; opacity: 0.8; max-width: 28rem; }
.theme-footer-heading { font-family: var(--font-display); font-size: 0.875rem; letter-spacing: 0.025em; font-weight: 400; margin: 0 0 1rem; }
.theme-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.75rem; /* Lovable gap-3 */
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-footer-nav li { margin: 0; padding: 0; list-style: none; }
.theme-footer-nav-link,
.theme-footer-nav a {
	display: block;
	text-align: left;
	font-family: var(--font-body);
	font-size: 0.875rem; /* text-sm */
	font-weight: 400;
	line-height: 1.25rem;
	letter-spacing: normal;
	text-transform: none;
	opacity: 0.8;
	color: inherit;
	transition: opacity 0.2s;
	padding: 0;
	margin: 0;
	position: static;
}
.theme-footer-nav-link::after,
.theme-footer-nav a::after { display: none !important; content: none !important; }
.theme-footer-nav-link:hover,
.theme-footer-nav a:hover { opacity: 1; }
.theme-footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-contact-link, .theme-footer-contact-static { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; opacity: 0.85; transition: opacity 0.2s; }
.theme-footer-contact-link:hover { opacity: 1; }
.theme-footer-social { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
.theme-social-btn { display: inline-flex; padding: 0.5rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-surface-deep-foreground) 25%, transparent); transition: background-color 0.2s, color 0.2s; }
.theme-social-btn:hover { background: var(--color-surface-deep-foreground); color: var(--color-surface-deep); }
.theme-footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-surface-deep-foreground) 15%, transparent); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .theme-footer-bottom { flex-direction: row; justify-content: space-between; } }
.theme-footer-copyright, .theme-footer-credit { font-size: 12px; opacity: 0.7; letter-spacing: 0.02em; margin: 0; }
.theme-footer-credit a { text-decoration: underline; }
.theme-footer-credit a:hover { opacity: 1; }

/* -------------------------------------------------------------------------
 * SIDE CART: OVERLAY + DRAWER
 * ---------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); z-index: 90;
	opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease-smooth);
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-butter);
	z-index: 91; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.35s var(--ease-smooth);
}
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.25rem 1.5rem; border-bottom: 1px solid var(--color-border); background: var(--color-background); }
.theme-cart-drawer-eyebrow { display: block; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-lake); margin-bottom: 2px; font-family: var(--font-body); }
.theme-cart-drawer-title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1; }
.theme-cart-drawer-close { padding: 0.25rem; transition: opacity 0.2s; }
.theme-cart-drawer-close:hover { opacity: 0.6; }

.theme-cart-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer-empty-icon { width: 4rem; height: 4rem; background: var(--color-background); border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--color-primary); }
.theme-cart-drawer-empty-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-lake); margin-bottom: 0.5rem; display: block; font-family: var(--font-body); }
.theme-cart-drawer-empty-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-cart-drawer-empty-desc { color: var(--color-muted-foreground); margin-bottom: 1.5rem; font-size: 14px; line-height: 1.65; max-width: 20rem; }

.theme-cart-drawer-items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; }
.theme-cart-item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); }
.theme-cart-item:last-child { border-bottom: none; }
.theme-cart-item-image { width: 5rem; height: 6rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); position: relative; display: block; }
.theme-cart-item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.theme-cart-item-image:hover img { transform: scale(1.05); }
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-cat { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary) 80%, transparent); margin-bottom: 0.25rem; font-family: var(--font-body); }
.theme-cart-item-name { font-family: var(--font-display); font-size: 17px; line-height: 1.2; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.2s; }
.theme-cart-item-name:hover { color: var(--color-primary); }
.theme-cart-item-price { font-size: 12px; color: var(--color-muted-foreground); margin-top: 0.25rem; font-family: var(--font-body); }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-qty-mini { display: inline-flex; align-items: center; border: 1px solid var(--color-border); background: var(--color-background); }
.theme-qty-mini button { padding: 0.375rem 0.5rem; transition: background-color 0.2s; }
.theme-qty-mini button:hover { background: var(--color-secondary); }
.theme-qty-mini span { font-size: 13px; width: 2rem; text-align: center; font-family: var(--font-body); }
.theme-cart-item-remove { margin-left: auto; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.2s; font-family: var(--font-body); }
.theme-cart-item-remove:hover { color: var(--color-destructive); }

.theme-cart-drawer-footer { border-top: 1px solid var(--color-border); background: var(--color-background); }
.theme-cart-trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); }
.theme-cart-trust-strip li { padding: 0.75rem 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.375rem; text-align: center; border-right: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent); color: var(--color-primary); }
.theme-cart-trust-strip li:last-child { border-right: none; }
.theme-cart-trust-strip span { font-size: 10.5px; letter-spacing: 0.02em; color: var(--color-muted-foreground); font-family: var(--font-body); line-height: 1.3; }
.theme-cart-drawer-summary { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-cart-subtotal-row { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-body); }
.theme-cart-subtotal-row span:first-child { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-cart-subtotal-value { font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer-note { font-size: 11.5px; color: var(--color-muted-foreground); line-height: 1.65; font-family: var(--font-body); }
.theme-cart-checkout-btn { width: 100%; }
.theme-cart-empty-btn { width: 100%; }

/* -------------------------------------------------------------------------
 * CONTACT MODAL
 * ---------------------------------------------------------------------- */
.theme-contact-modal { position: fixed; inset: 0; z-index: 95; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-contact-modal[hidden] { display: none; }
.theme-contact-modal-overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 45%, transparent); animation: gll-fade-in 0.2s var(--ease-smooth); }
.theme-contact-modal-panel {
	position: relative; z-index: 1; width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; background: var(--color-background);
	padding: 2rem; box-shadow: var(--shadow-elevated); animation: gll-slide-up 0.3s var(--ease-smooth);
}
.theme-contact-modal.is-closing .theme-contact-modal-panel,
.theme-contact-modal.is-closing .theme-contact-modal-overlay { animation: gll-fade-in 0.2s var(--ease-smooth) reverse; }
.theme-contact-modal-close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.375rem; transition: opacity 0.2s; }
.theme-contact-modal-close:hover { opacity: 0.6; }
.theme-contact-modal-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-contact-modal-desc { color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; }
.theme-contact-modal-quicklinks { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 14px; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-contact-modal-quicklinks a:hover { color: var(--color-foreground); }
.theme-contact-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form-row { grid-template-columns: 1fr 1fr; } }
.theme-form-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.theme-form-field label { font-size: 14px; font-weight: 500; }
.theme-form-field input, .theme-form-field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	font-size: 1rem; font-family: var(--font-body); border-radius: 4px; transition: box-shadow 0.3s;
}
.theme-form-field textarea { resize: none; }
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-contact-form-actions { display: flex; justify-content: flex-end; }
.theme-contact-success { text-align: center; padding: 2rem 0; }
.theme-contact-success .success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-success p { color: var(--color-muted-foreground); font-size: 14px; }

/* -------------------------------------------------------------------------
 * SINGLE PRODUCT PAGE — mirrors ProductDetail.tsx
 * ---------------------------------------------------------------------- */
body.theme-no-hero .single-product-main {
	padding-top: 2rem !important; /* pt-8 */
	padding-bottom: 0;
	background: var(--color-background);
}
@media (min-width: 768px) {
	body.theme-no-hero .single-product-main {
		padding-top: 2.5rem !important; /* pt-10 */
	}
}
.single-product-main {
	background: var(--color-background);
	overflow-x: clip;
}

/* Kill leftover WC chrome on classic PDP */
.single-product-main .woocommerce-product-gallery,
.single-product-main .woocommerce-tabs,
.single-product-main .product_meta,
.single-product-main .onsale,
.single-product-main .woocommerce-product-rating,
.single-product-main .summary .price,
.single-product-main form.cart,
.single-product-main .woocommerce-breadcrumb {
	display: none !important;
}

.theme-breadcrumb {
	padding: 1rem 0;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb .current { color: var(--color-foreground); }

.single-product-main .theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem; /* gap-10 */
	padding-bottom: 6rem; /* pb-24 */
	padding-top: 1rem; /* pt-4 */
	align-items: start;
	min-width: 0;
}
@media (min-width: 1024px) {
	.single-product-main .theme-product-layout {
		grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
		gap: 4rem; /* lg:gap-16 */
	}
}

.theme-product-gallery,
.theme-product-info {
	min-width: 0;
	max-width: 100%;
}

/* Mobile gallery */
.theme-product-gallery-mobile { display: block; }
.theme-product-gallery-desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery-mobile { display: none; }
	.theme-product-gallery-desktop {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}

.theme-product-gallery-slot {
	position: relative;
	background: var(--color-secondary);
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
}
.theme-pdp-image {
	position: static !important;
	inset: auto !important;
	display: block;
	width: 100% !important;
	height: auto !important;
	max-width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	transition: transform 1.2s var(--ease-smooth);
}
.theme-product-gallery-slot:hover .theme-pdp-image {
	transform: scale(1.03);
}
@media (min-width: 1024px) {
	.theme-product-gallery-slot:hover .theme-pdp-image {
		transform: scale(1.04);
		transition-duration: 1.4s;
	}
}

.theme-gallery-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(4px);
	padding: 0.25rem 0.625rem;
	color: var(--color-primary);
	font-family: var(--font-body);
}

.theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	max-width: 100%;
}
.theme-thumb-btn {
	position: relative;
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
	border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	padding: 0;
}
.theme-thumb-img {
	position: static !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	opacity: 0.6;
	transition: opacity 0.2s;
}
.theme-thumb-btn.is-active .theme-thumb-img,
.theme-thumb-btn:hover .theme-thumb-img { opacity: 1; }
.theme-thumb-btn.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
}

.theme-product-info { padding-left: 0; }
@media (min-width: 1024px) {
	.theme-product-info {
		padding-left: 1rem;
		position: sticky;
		top: 7rem; /* lg:top-28 */
		align-self: start;
	}
}

.theme-pdp-eyebrow {
	font-size: 11px;
	letter-spacing: 0.14em;
	color: var(--color-lake);
	margin-bottom: 0;
}
.theme-pdp-eyebrow .theme-eyebrow-line {
	width: 1.5rem;
	background: color-mix(in srgb, var(--color-lake) 60%, transparent);
}

.product-title {
	font-family: var(--font-display) !important;
	font-weight: 400 !important;
	font-size: 1.875rem; /* text-3xl */
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } } /* text-4xl */
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }

.theme-product-price {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
	font-weight: 400;
}
.theme-product-price .amount,
.theme-product-price bdi,
.theme-product-price .woocommerce-Price-amount {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.theme-product-intro {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-muted-foreground);
	margin-bottom: 2rem;
}

.theme-farm-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	margin-bottom: 2rem;
}
.theme-farm-strip li {
	padding: 1rem 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	border-right: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
	color: var(--color-primary);
}
.theme-farm-strip li:last-child { border-right: none; }
.theme-farm-strip span {
	font-size: 11px;
	line-height: 1.35;
	letter-spacing: 0.02em;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
	white-space: pre-line;
}

.theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 0;
}
.theme-qty-label {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-muted-foreground);
	margin: 0 0 0.75rem;
}
.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	background: var(--color-background);
}
.theme-qty-minus,
.theme-qty-plus {
	padding: 0.75rem 0.875rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s;
	color: var(--color-foreground);
}
.theme-qty-minus:hover,
.theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-display {
	min-width: 52px;
	padding: 0.75rem 1.25rem;
	text-align: center;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--color-foreground);
}
.theme-qty-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.theme-pdp-atc.single_add_to_cart_button,
.theme-pdp-atc.single_add_to_cart_button.button {
	width: 100% !important;
	gap: 0.5rem !important;
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	min-height: unset !important;
	padding: 1rem 1.5rem !important;
	font-size: 12px !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	font-weight: 500 !important;
	border-radius: 0 !important;
	transition: background-color 0.2s ease, opacity 0.2s ease !important;
}
.theme-pdp-atc.single_add_to_cart_button:hover,
.theme-pdp-atc.single_add_to_cart_button.button:hover {
	background-color: var(--color-leaf-deep) !important;
	opacity: 1 !important;
	color: var(--color-primary-foreground) !important;
}
.theme-pdp-atc.disabled,
.theme-pdp-atc:disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}

.theme-quote-btn {
	width: 100%;
	margin-top: 0.75rem;
	border-color: var(--color-border);
	color: var(--color-foreground);
}
.theme-quote-btn:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.theme-quote-note {
	margin-top: 0.75rem;
	font-size: 12px;
	color: var(--color-muted-foreground);
	line-height: 1.65;
	font-family: var(--font-body);
}

.theme-pdp-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	text-align: left;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: var(--color-foreground);
}
.theme-accordion-trigger svg { transition: transform 0.2s; flex-shrink: 0; }
.theme-accordion.is-open .theme-accordion-trigger svg { transform: rotate(180deg); }
.theme-accordion-panel { display: none; padding-bottom: 1.5rem; font-family: var(--font-body); }
.theme-accordion.is-open .theme-accordion-panel { display: block; }
.theme-accordion-desc {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.65;
	margin-bottom: 1rem;
	white-space: pre-line;
	overflow-wrap: break-word;
}
.theme-accordion-details { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-accordion-details li {
	font-size: 15px;
	color: var(--color-muted-foreground);
	display: flex;
	align-items: flex-start;
}
.theme-accordion-details .dot {
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: var(--color-primary);
	margin-top: 0.625rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}
.theme-accordion-panel p {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.65;
	margin-bottom: 0.75rem;
}
.theme-accordion-panel p:last-child { margin-bottom: 0; }

.theme-related-products {
	padding: 5rem 0; /* py-20 */
	border-top: 1px solid var(--color-border);
}
.theme-related-header { margin-bottom: 3rem; }
.theme-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 1024px) {
	.theme-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}

/* Ensure related cards are visible (no reveal opacity trap) */
.theme-related-grid .theme-product-card-wrap {
	opacity: 1;
	transform: none;
}

/* -------------------------------------------------------------------------
 * SHOP ARCHIVE PAGE
 * ---------------------------------------------------------------------- */
.theme-shop-archive { padding-bottom: 6rem; background: var(--color-background); }
.theme-shop-archive-inner { padding-top: 2rem; }
.theme-shop-archive-header { margin-bottom: 3rem; }

/* -------------------------------------------------------------------------
 * 404 PAGE
 * ---------------------------------------------------------------------- */
.theme-404-main { min-height: 60vh; display: flex; align-items: center; background: var(--color-background); }
.theme-404-inner { text-align: center; padding: 4rem 0; }
.theme-404-code { font-family: var(--font-display); font-size: 4rem; margin-bottom: 1rem; }
.theme-404-text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

/* -------------------------------------------------------------------------
 * GENERIC PAGE
 * ---------------------------------------------------------------------- */
.theme-page-main { background: var(--color-background); min-height: 50vh; padding-bottom: 4rem; }
.theme-page-container { padding-top: 3rem; }
.page-title { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; margin-bottom: 2rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .page-title { font-size: 3rem; } }

/* -------------------------------------------------------------------------
 * WOOCOMMERCE: ADD TO CART BUTTON OVERRIDES (Section 11.4.1, mandatory)
 * ---------------------------------------------------------------------- */
.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: var(--btn-text-transform) !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;
}
.ajax_add_to_cart.theme-btn-loading {
	opacity: 0.6 !important;
	pointer-events: none !important;
	cursor: wait !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button — overrides global .add_to_cart_button rules */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	width: 2.5rem !important;
	height: 2.5rem !important;
	padding: var(--btn-icon-padding) !important;
	border-radius: 50% !important;
	text-transform: none !important;
	letter-spacing: normal !important;
}

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart */
.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,
#theme-cart-drawer .woocommerce-message {
	display: none;
}
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	font-family: var(--font-body);
	background: var(--color-butter);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-primary);
	padding: 1rem 1.25rem;
	list-style: none;
	margin: 0 0 1.5rem 0;
	font-size: 14px;
	color: var(--color-foreground);
}
.woocommerce-error { border-left-color: var(--color-destructive); }

/* -------------------------------------------------------------------------
 * WOOCOMMERCE: OTHER PAGES WIDTH & ALIGNMENT PARITY (Section 13.7)
 * ---------------------------------------------------------------------- */
body.woocommerce-cart .theme-page-container,
body.woocommerce-checkout .theme-page-container,
body.woocommerce-account .theme-page-container,
body.theme-thankyou-page .theme-page-container {
	max-width: 100%;
}
.woocommerce-cart-form table.shop_table,
.woocommerce table.shop_table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-body);
	margin-bottom: 2rem;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; }
.woocommerce-cart .cart-collaterals { margin-top: 2rem; }
@media (min-width: 768px) {
	.woocommerce-cart .cart-collaterals { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; margin: 0 0 2rem 0; padding: 0; }
@media (min-width: 768px) {
	.woocommerce-account .woocommerce { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; align-items: start; }
}
.woocommerce-account .woocommerce-MyAccount-navigation a { font-size: 14px; padding: 0.5rem 0.75rem; display: block; border: 1px solid var(--color-border); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.woocommerce-account input, .woocommerce-account select, .woocommerce-account textarea {
	width: 100%; padding: 0.75rem; border: 1px solid var(--color-border); font-family: var(--font-body); margin-bottom: 1rem;
}
.woocommerce-account button, .woocommerce-account input[type="submit"] { }
.woocommerce-account .button { display: inline-flex; align-items: center; justify-content: center; background: var(--color-primary); color: var(--color-primary-foreground); padding: 0.85rem 1.75rem; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; border: none; }

/* -------------------------------------------------------------------------
 * WOOCOMMERCE CHECKOUT BLOCK (Section 13)
 * Layout targets real DOM: .wc-block-components-sidebar-layout (and alias
 * .wc-block-checkout-sidebar-layout), not only .wc-block-checkout.
 * Works on body.woocommerce-checkout and any .entry-content with the block.
 * ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .theme-page-main {
	padding-top: var(--header-height, 80px);
	padding-bottom: 4rem;
	width: 100%;
	max-width: none;
}

/* Parents must not compress the Checkout block. */
body.woocommerce-checkout #page-content,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .theme-page-main,
body.woocommerce-checkout .theme-page-container,
body.woocommerce-checkout article,
body.woocommerce-checkout .entry-content {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

/* Checkout root: desired content width, centered. */
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .entry-content .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout {
	display: block;
	width: 100%;
	max-width: var(--checkout-max-width, 1280px);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Notices: same width/alignment as checkout content (class is notices with “s”). */
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-checkout .wc-block-components-notices,
.entry-content .wp-block-woocommerce-checkout .wc-block-components-notices {
	width: 100%;
	max-width: var(--checkout-max-width, 1280px);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Two-column layout lives on the sidebar-layout wrapper. */
body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
.entry-content .wp-block-woocommerce-checkout .wc-block-checkout-sidebar-layout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
.entry-content .wc-block-components-sidebar-layout.wc-block-checkout {
	display: flex;
	flex-direction: column;
	gap: var(--checkout-gap, 1.5rem);
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout > *,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > *,
.entry-content .wc-block-components-sidebar-layout > *,
.entry-content .wc-block-checkout-sidebar-layout > *,
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__main,
.entry-content .wc-block-checkout__sidebar {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
.entry-content .wc-block-components-sidebar-layout > .wc-block-components-notices,
.entry-content .wc-block-checkout-sidebar-layout > .wc-block-components-notices {
	order: 1;
	width: 100%;
	max-width: 100%;
}

body.woocommerce-checkout .wc-block-checkout__main,
.entry-content .wc-block-checkout__main {
	order: 2;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar {
	order: 3;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

@media (min-width: 992px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
	.entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
	.entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout,
	.entry-content .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
	.entry-content .wp-block-woocommerce-checkout .wc-block-checkout-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	.entry-content .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	.entry-content .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap, 1.5rem);
		align-items: start;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
	.entry-content .wc-block-components-sidebar-layout > .wc-block-components-notices,
	.entry-content .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
	body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notices,
	.entry-content .wc-block-checkout > .wc-block-components-notices {
		grid-column: 1 / -1;
		order: 1;
	}

	body.woocommerce-checkout .wc-block-checkout__main,
	.entry-content .wc-block-checkout__main {
		order: 2;
		min-width: 0;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar,
	.entry-content .wc-block-checkout__sidebar {
		order: 3;
		min-width: 360px;
		width: 100%;
		max-width: 100%;
	}
}

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,
.entry-content .wc-block-checkout .wc-block-components-text-input input,
.entry-content .wc-block-checkout .wc-block-components-select select,
.entry-content .wc-block-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	background: var(--color-background);
	color: var(--color-foreground);
	border-radius: 4px;
	padding: revert;
	box-sizing: border-box;
}
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-text-input input:focus-visible {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 1px var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }
body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar {
	background-color: var(--color-butter);
	border-radius: var(--card-radius);
	padding: var(--section-padding, 2rem);
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 13px;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background: var(--color-leaf-deep) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner,
body.woocommerce-checkout .wc-block-components-notices {
	border-radius: 4px;
	font-family: var(--font-body);
}
body.woocommerce-checkout h2, body.woocommerce-checkout h3 {
	font-family: var(--font-display);
}
body.woocommerce-checkout .wc-block-cart-items { font-family: var(--font-body); }

/* -------------------------------------------------------------------------
 * THANK YOU PAGE (Section 22.8)
 * ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .theme-thankyou-wrap { padding-top: 1rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
	display: block;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; margin: 0 0 2rem 0; background: var(--color-butter);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-family: var(--font-body); font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; font-family: var(--font-body); margin-bottom: 2rem; }
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-customer-details address {
	min-width: 0; overflow-wrap: break-word; font-family: var(--font-body); border: 1px solid var(--color-border); padding: 1rem;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
	}
}
