/* ==========================================================================
   Scarlet's Corner theme stylesheet
   ========================================================================== */

:root {
	--color-background: #150e14;
	--color-foreground: #f9eef2;
	--color-primary: #ac1465;
	--color-primary-foreground: #fdf1f6;
	--color-secondary: #241a22;
	--color-accent: #e01586;
	--color-accent-foreground: #fdf1f6;
	--color-muted: #332a31;
	--color-muted-foreground: #b6a5ae;
	--color-border: #392e37;
	--color-button-text: #fdf1f6;
	--color-footer-bg: #f8d9e8;
	--color-footer-text: #1f1519;

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;
	--font-script: 'Great Vibes', cursive;

	--radius: 2px;
	--card-radius: 4px;
	--btn-radius: 999px;
	--btn-height: 48px;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--header-height: 88px;
	--section-padding: 2rem;
	--checkout-gap: 2rem;
	--logo-height: 72px;
	--container-max: 72rem;
	--container-width: 90%;

	--surface-blush: color-mix(in srgb, var(--color-accent) 14%, var(--color-background));
	--surface-sage: color-mix(in srgb, #7a4d94 22%, var(--color-background));
	--surface-butter: color-mix(in srgb, var(--color-accent) 20%, var(--color-background));
	--surface-sky: color-mix(in srgb, #5f3d84 22%, var(--color-background));
	--surface-oat: color-mix(in srgb, var(--color-primary) 8%, var(--color-background));

	--shadow-soft: 0 6px 24px -8px rgba(20, 4, 14, 0.55);
	--shadow-elevated: 0 14px 40px -12px rgba(20, 4, 14, 0.7);
	--ease-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ---------------- RESET / BASE ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 128px 128px;
}

/* Surface gradient utilities (Lovable parity) */
.surface-oat {
	background-image:
		radial-gradient(120% 90% at 0% 0%, color-mix(in srgb, var(--surface-blush) 55%, transparent), transparent 60%),
		radial-gradient(110% 80% at 100% 100%, color-mix(in srgb, var(--surface-sage) 45%, transparent), transparent 65%),
		linear-gradient(135deg, var(--surface-oat) 0%, var(--color-background) 100%);
}
.surface-blush {
	background-image:
		radial-gradient(90% 70% at 15% 20%, color-mix(in srgb, var(--color-accent) 22%, transparent), transparent 70%),
		radial-gradient(100% 80% at 85% 80%, color-mix(in srgb, var(--surface-sky) 55%, transparent), transparent 70%),
		linear-gradient(140deg, var(--surface-blush) 0%, color-mix(in srgb, var(--surface-butter) 70%, var(--surface-blush)) 100%);
}
.surface-sage {
	background-image:
		radial-gradient(100% 80% at 20% 30%, color-mix(in srgb, var(--surface-sky) 70%, transparent), transparent 70%),
		radial-gradient(90% 70% at 90% 90%, color-mix(in srgb, var(--color-accent) 18%, transparent), transparent 70%),
		linear-gradient(135deg, var(--surface-sage) 0%, color-mix(in srgb, var(--surface-blush) 85%, var(--surface-sage)) 100%);
}
.surface-sky {
	background-image:
		radial-gradient(110% 90% at 80% 10%, color-mix(in srgb, var(--color-primary) 18%, transparent), transparent 70%),
		radial-gradient(90% 70% at 10% 90%, color-mix(in srgb, var(--surface-sage) 80%, transparent), transparent 70%),
		linear-gradient(150deg, var(--surface-sky) 0%, var(--surface-blush) 100%);
}
.surface-butter {
	background-image:
		radial-gradient(100% 80% at 90% 20%, color-mix(in srgb, var(--color-accent) 35%, transparent), transparent 65%),
		radial-gradient(110% 90% at 10% 85%, color-mix(in srgb, var(--surface-sky) 60%, transparent), transparent 70%),
		linear-gradient(135deg, var(--surface-butter) 0%, var(--surface-blush) 100%);
}
.surface-oat-tape {
	background: color-mix(in srgb, var(--surface-oat) 80%, transparent);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
	line-height: 1.05;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
img.cover-img, .hero-bg-img, .promo-content img.cover-img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; max-width: none;
}

.container-wide { width: var(--container-width); max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
.container-editorial { width: var(--container-width); max-width: var(--container-max); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) {
	.container-wide, .container-editorial { padding: 0 1.25rem; }
}
@media (min-width: 1024px) {
	.container-wide, .container-editorial { padding: 0 1.5rem; }
}

.eyebrow, .label-eyebrow {
	font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
	font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	display: block;
}
.heading-accent-rule {
	display: inline-block; width: 48px; height: 3px; border-radius: 999px; margin-top: 1.25rem;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

/* ---------------- BUTTONS ---------------- */
.btn-pill, .btn-technical, .btn-technical-inverse, .btn-gradient,
.shop-cta-btn, .custom-order-primary-btn, .promo-cta-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 48px; padding: 0 2rem; font-size: 12px; letter-spacing: 0.28em;
	text-transform: uppercase; font-weight: 600; font-family: var(--font-body);
	transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
	cursor: pointer; border: 1px solid transparent;
}
.btn-pill { border-radius: 999px; background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.btn-pill:hover { background: transparent; color: var(--color-foreground); }
.btn-technical { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.btn-technical:hover { background: transparent; color: var(--color-foreground); }
.btn-technical-inverse { background: var(--color-background); color: var(--color-foreground); border-color: var(--color-foreground); }
.btn-technical-inverse:hover { background: var(--color-foreground); color: var(--color-background); }
.btn-gradient {
	border-radius: 999px; color: var(--color-primary-foreground);
	background-image: linear-gradient(120deg, var(--color-primary) 0%, var(--color-accent) 100%);
	box-shadow: 0 10px 30px -8px color-mix(in srgb, var(--color-accent) 55%, transparent), 0 2px 8px -2px color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.btn-gradient:hover { transform: translateY(-1px); }
.promo-cta-btn { background: var(--color-foreground); color: var(--color-background); }
.promo-cta-btn:hover { background: var(--color-accent); color: var(--color-accent-foreground); }
.custom-order-primary-btn { background: var(--color-foreground); color: var(--color-background); font-weight: 700; }
.custom-order-primary-btn:hover { opacity: 0.9; }

/* ---------------- REVEAL ANIMATIONS (Section 2.1) ---------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
.theme-product-card-wrap.reveal-item { opacity: 1; transform: none; }
.theme-product-card-wrap.reveal-item.reveal-pending { opacity: 0; transform: translateY(24px); }
.theme-product-card-wrap.reveal-item.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .theme-product-card-wrap.reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: theme-fade-in 0.8s var(--ease-smooth) forwards; }
.animate-slide-up { animation: theme-slide-up 0.8s var(--ease-smooth) forwards; }

/* Scroll progress bar */
#theme-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 70;
	pointer-events: none;
	transform-origin: 0% 50%;
	transform: scaleX(0);
	background: var(--color-primary-foreground);
	transition: background-color 0.3s ease;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.5s ease;
}
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
@media (min-width: 1024px) {
	.site-nav {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		height: 104px;
	}
}
.site-nav-left { display: flex; align-items: center; flex: 1; }
@media (min-width: 1024px) { .site-nav-left { display: none; } }
.site-logo { display: flex; align-items: center; gap: 0.6rem; z-index: 2; }
.site-logo-centered {
	position: absolute; left: 50%; transform: translateX(-50%);
}
@media (min-width: 1024px) {
	.site-logo-centered {
		position: static; left: auto; transform: none;
		grid-column: 1; justify-self: start;
	}
}
.site-logo-img { height: 64px !important; width: auto !important; }
@media (min-width: 1024px) { .site-logo-img { height: 80px !important; } }
.mobile-logo-img { height: 56px !important; }
.site-logo-text, .site-logo-text-secondary { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; }
.site-nav-center { display: none; align-items: center; gap: 2.25rem; justify-content: center; }
@media (min-width: 1024px) {
	.site-nav-center {
		display: flex;
		grid-column: 2;
		justify-self: center;
	}
}
.nav-link, .nav-link-btn {
	font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	transition: color 0.3s ease; color: var(--color-foreground);
	display: inline-flex; align-items: center; gap: 0.25rem;
}
.nav-link:hover, .nav-link-btn:hover, .nav-item-wrap.is-open .nav-link-btn { color: var(--color-primary); }
.nav-chevron { width: 12px; height: 12px; }
.nav-item-wrap { position: static; }
.site-nav-icons { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: flex-end; }
@media (min-width: 1024px) {
	.site-nav-icons {
		grid-column: 3;
		justify-self: end;
		flex: unset;
	}
}
.icon-btn { padding: 0.5rem; position: relative; transition: opacity 0.3s ease; }
.icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; width: 20px; height: 20px;
	display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 600;
	background: var(--color-accent); color: var(--color-accent-foreground); border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

/* Hamburger */
.mobile-menu-toggle {
	display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
	gap: 5px; padding: 0.5rem;
}
.hamburger-line {
	display: block; height: 2.5px; background: var(--color-foreground); border-radius: 1px;
	transition: all 0.3s ease-out; transform-origin: center;
}
.hamburger-line-1 { width: 20px; }
.hamburger-line-2 { width: 28px; }
.hamburger-line-3 { width: 14px; transition: width 0.3s ease-out; }
.mobile-menu-toggle:hover .hamburger-line-3 { width: 24px; }
.mobile-menu-toggle.is-active .hamburger-line-1 { width: 28px; transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle.is-active .hamburger-line-2 { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.is-active .hamburger-line-3 { width: 28px; transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mega menu */
.mega-menu-panel {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
	width: 100vw; z-index: 40;
}
.mega-menu-panel:not([hidden]) { animation: theme-fade-in 0.8s var(--ease-smooth) forwards; }
.mega-menu-panel-inner {
	background: var(--color-background);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
}
.mega-menu-grid {
	display: grid; grid-template-columns: 1fr; gap: 2.5rem;
	max-width: var(--container-max); width: var(--container-width); margin: 0 auto; padding: 2.5rem 1rem;
}
@media (min-width: 1024px) {
	.mega-menu-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); padding: 2.5rem 1.5rem; }
}
.mega-menu-columns {
	grid-column: span 12;
	display: grid; gap: 2.5rem;
	grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr));
}
@media (min-width: 1024px) {
	.mega-menu-columns.has-feature { grid-column: span 8; }
}
.mega-menu-col-title {
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border);
}
.mega-menu-col-list { display: flex; flex-direction: column; gap: 0.75rem; }
.mega-menu-link {
	text-align: left; font-size: 14px; font-weight: 500; text-transform: uppercase;
	letter-spacing: 0.12em; color: var(--color-foreground); transition: color 0.25s ease;
}
.mega-menu-link:hover { color: var(--color-primary); }
.mega-menu-shop-all {
	margin-top: 2rem; align-self: flex-start; font-size: 11px; letter-spacing: 0.3em;
	text-transform: uppercase; font-weight: 600; color: var(--color-foreground);
	border-bottom: 1px solid var(--color-foreground); padding-bottom: 0.25rem;
	transition: color 0.25s ease, border-color 0.25s ease;
}
.mega-menu-shop-all:hover { color: var(--color-primary); border-color: var(--color-primary); }
.mega-menu-feature {
	display: none; text-align: left; overflow: hidden;
}
@media (min-width: 1024px) { .mega-menu-feature { display: block; grid-column: span 4; } }
.mega-menu-feature-image {
	position: relative; aspect-ratio: 4/5; width: 100%; overflow: hidden;
}
.mega-menu-feature-image img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	transition: transform 1.2s ease;
}
.mega-menu-feature:hover .mega-menu-feature-image img { transform: scale(1.05); }
.mega-menu-feature-gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2));
}
.mega-menu-feature-eyebrow {
	position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem;
	font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
	color: color-mix(in srgb, var(--color-primary-foreground) 95%, transparent);
}
.mega-menu-feature-copy {
	position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: var(--color-primary-foreground);
}
.mega-menu-feature-title {
	font-family: var(--font-display); font-size: 1.5rem; line-height: 1.2; margin-bottom: 0.75rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.mega-menu-feature-cta {
	display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px;
	letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 80%, transparent);
	padding-bottom: 0.25rem;
}
.mega-menu-footer {
	max-width: var(--container-max); width: var(--container-width); margin: 0 auto; padding: 0 1rem 2rem;
	border-top: 1px solid var(--color-border); padding-top: 2rem;
	display: flex; justify-content: center;
}
@media (min-width: 1024px) { .mega-menu-footer { justify-content: flex-start; padding-left: 1.5rem; padding-right: 1.5rem; } }
.mega-menu-quote-btn {
	display: inline-flex; align-items: center; justify-content: center;
	height: 48px; padding: 0 2rem; background: var(--color-foreground); color: var(--color-background);
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
	transition: background-color 0.25s ease;
}
.mega-menu-quote-btn:hover { background: var(--color-primary); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.mobile-menu::before { content:''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu.is-open::before { opacity: 1; }
.mobile-menu-inner {
	position: absolute; top: 0; left: 0; bottom: 0; width: 88vw; max-width: 380px;
	background: var(--color-background); border-right: 1px solid var(--color-border);
	transform: translateX(-100%); transition: transform 0.35s var(--ease-smooth);
	display: flex; flex-direction: column;
}
.mobile-menu.is-open .mobile-menu-inner { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 88px; border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.mobile-nav { flex: 1; overflow-y: auto; padding: 0.75rem 1rem; }
.mobile-nav-list { display: flex; flex-direction: column; width: 100%; }
.mobile-nav-item { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.mobile-nav-toggle, .mobile-nav-flat {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 0.75rem; text-align: left;
}
.mobile-nav-toggle span, .mobile-nav-flat { font-family: var(--font-display); font-size: 1.125rem; }
.mobile-nav-chevron { transition: transform 0.3s ease; }
.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-chevron { transform: rotate(180deg); }
.mobile-nav-submenu { padding: 0 0.75rem 0.75rem; }
.mobile-nav-submenu[hidden] { display: none; }
.mobile-nav-col { margin-bottom: 1rem; }
.mobile-nav-col-title { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-bottom: 0.5rem; }
.mobile-nav-sublink {
	width: 100%; text-align: left; padding: 0.625rem 0; font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.25s ease;
}
.mobile-nav-sublink:hover { color: var(--color-primary); }
.mobile-nav-sublink-all { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; }
.mobile-nav-cta-wrap { padding: 1rem 0.75rem; }
.mobile-nav-cta {
	width: 100%; height: 48px; background: var(--color-foreground); color: var(--color-background);
	font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
}
.mobile-menu-footer {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem;
	padding: 1rem 0.75rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	flex-shrink: 0;
}
.mobile-menu-footer-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	height: 44px; border: 1px solid var(--color-border); font-size: 12px;
	letter-spacing: 0.24em; text-transform: uppercase; transition: border-color 0.25s ease;
}
.mobile-menu-footer-btn:hover { border-color: var(--color-foreground); }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider { position: relative; width: 100%; height: 100svh; min-height: 640px; overflow: hidden; background: var(--color-foreground); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease-smooth); }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-gradient-h { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,4,14,0.85), rgba(20,4,14,0.55) 50%, rgba(20,4,14,0.2)); }
.hero-gradient-v { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,4,14,0.75), transparent 60%); }
@media (min-width: 1024px) { .hero-gradient-h { background: linear-gradient(90deg, rgba(20,4,14,0.2), rgba(20,4,14,0.55) 50%, rgba(20,4,14,0.9)); } }
.hero-slide-copy {
	position: relative; z-index: 2; max-width: 42rem; margin-left: auto;
	height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
	padding: 7rem 1.5rem 6rem; text-align: right; color: #fdf1f6;
}
.container-wide.hero-slide-copy {}
@media (min-width: 1024px) { .hero-slide-copy { justify-content: center; padding: 8rem 2.5rem; } }
.hero-slide-copy { padding-left: 1.5rem; padding-right: 1.5rem; }
.hero-script { display: block; font-family: var(--font-script); font-size: 2rem; color: var(--color-accent); margin-bottom: 0.5rem; text-shadow: 0 2px 18px rgba(0,0,0,0.55); }
.hero-title { font-size: 3rem; line-height: 1.02; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5.5rem; } }
.hero-sub { margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.6; opacity: 0.9; text-shadow: 0 1px 10px rgba(0,0,0,0.5); margin-left: auto; max-width: 34rem; }
.hero-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; justify-content: flex-end; }
.hero-shop-btn { height: auto; padding: 0.875rem 1.75rem; font-size: 13px; text-transform: none; letter-spacing: 0.02em; font-weight: 400; }
.hero-link-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: #fdf1f6; position: relative; }
.hero-link-cta::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transition: transform 0.3s ease; }
.hero-link-cta:hover::after { transform: scaleX(1); }
.hero-controls {
	position: absolute; z-index: 5; bottom: 1.5rem; right: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
	background: color-mix(in srgb, var(--color-background) 85%, transparent); backdrop-filter: blur(6px);
	padding: 0.6rem 1rem; border-radius: 999px; box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) { .hero-controls { bottom: 2.5rem; right: 2.5rem; } }
.hero-counter { font-size: 11px; letter-spacing: 0.22em; opacity: 0.8; }
.hero-controls button { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--color-border); transition: all 0.25s ease; }
.hero-controls button:hover { background: var(--color-foreground); color: var(--color-background); }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 1.5rem 0; }
@media (min-width: 1024px) { .trust-strip-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; padding: 1.75rem 0; } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
@media (min-width: 1024px) { .trust-item { justify-content: flex-start; } }
.trust-icon { color: var(--color-primary); flex-shrink: 0; }
.trust-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
.trust-title { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
.trust-sub { font-size: 12px; color: var(--color-muted-foreground); line-height: 1.2; }

/* ==========================================================================
   WELCOME SECTION
   ========================================================================== */
.welcome-section { background: var(--surface-blush); padding: 4rem 0; }
@media (min-width: 1024px) { .welcome-section { padding: 5.5rem 0; } }
.welcome-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.welcome-inner .eyebrow { margin-bottom: 1.5rem; }
.welcome-text { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.35; }
@media (min-width: 768px) { .welcome-text { font-size: 1.875rem; } }
@media (min-width: 1024px) { .welcome-text { font-size: 2.25rem; } }

/* ==========================================================================
   CUSTOM ORDER STUDIO
   ========================================================================== */
.custom-order-section { padding: 4rem 0; }
@media (min-width: 1024px) { .custom-order-section { padding: 5.5rem 0; } }
.custom-order-card {
	position: relative; overflow: hidden; border-radius: var(--radius);
	background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 85%, transparent), var(--color-accent));
	color: #fdf1f6; padding: 4rem 1.5rem;
}
@media (min-width: 768px) { .custom-order-card { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .custom-order-card { padding: 6rem 3rem; } }
.custom-order-blob-1, .custom-order-blob-2 { position: absolute; border-radius: 999px; filter: blur(60px); pointer-events: none; }
.custom-order-blob-1 { top: -3rem; right: -3rem; width: 18rem; height: 18rem; background: rgba(255,255,255,0.1); }
.custom-order-blob-2 { bottom: -4rem; left: -4rem; width: 18rem; height: 18rem; background: color-mix(in srgb, var(--color-accent) 40%, transparent); }
.custom-order-inner { position: relative; max-width: 48rem; margin: 0 auto; text-align: center; }
.custom-order-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; opacity: 0.85; margin-bottom: 1.25rem; }
.custom-order-title { font-size: 2.25rem; line-height: 1.02; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .custom-order-title { font-size: 3rem; } }
@media (min-width: 1024px) { .custom-order-title { font-size: 3.75rem; } }
.custom-order-body { font-size: 15px; opacity: 0.85; line-height: 1.6; max-width: 36rem; margin: 0 auto 2.5rem; }
.custom-order-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 42rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .custom-order-features { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.custom-order-feature { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1rem 0.75rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); }
.custom-order-feature p { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; line-height: 1.3; opacity: 0.95; }
.custom-order-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.25rem; }
@media (min-width: 640px) { .custom-order-actions { flex-direction: row; } }
.custom-order-email-link { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; opacity: 0.85; text-decoration: underline; text-underline-offset: 6px; }
.custom-order-email-link:hover { opacity: 1; }

/* ==========================================================================
   SHOP CATEGORIES
   ========================================================================== */
.shop-categories-section { padding-top: 4rem; padding-bottom: 3rem; }
@media (min-width: 1024px) { .shop-categories-section { padding-top: 5rem; padding-bottom: 4rem; } }
.section-heading-center { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
@media (min-width: 1024px) { .section-heading-center { margin-bottom: 3.5rem; } }
.shop-cat-heading, .pricing-title { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .shop-cat-heading, .pricing-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .shop-cat-heading, .pricing-title { font-size: 3rem; } }
.shop-categories-track { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
@media (min-width: 1024px) { .shop-categories-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; overflow: visible; } }
.shop-cat-card { flex-shrink: 0; width: 170px; text-align: center; display: block; }
@media (min-width: 1024px) { .shop-cat-card { width: auto; } }
.shop-cat-circle { position: relative; aspect-ratio: 1/1; border-radius: 999px; overflow: hidden; }
.shop-cat-circle img { transition: transform 0.7s ease; }
.shop-cat-card:hover .shop-cat-circle img { transform: scale(1.06); }
.shop-cat-card.is-active .shop-cat-circle { box-shadow: 0 0 0 4px var(--color-primary), 0 0 0 6px var(--color-background); }
.shop-cat-name { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-top: 1rem; }
.shop-cat-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.5rem; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-primary); }

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.promo-banner-inner { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .promo-banner-inner { height: 70vh; } }
.promo-gradient { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,4,14,0.75), rgba(20,4,14,0.55) 50%, rgba(20,4,14,0.3)); }
.promo-content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
@media (min-width: 768px) { .promo-content-wrap { align-items: center; } }
.promo-content { max-width: 34rem; margin: 0 auto; text-align: center; padding-bottom: 3rem; }
@media (min-width: 768px) { .promo-content { margin: 0 0 0 auto; text-align: left; padding-bottom: 0; } }
.promo-eyebrow { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; opacity: 0.9; margin-bottom: 1rem; color: #fdf1f6; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.promo-title { color: #fdf1f6; font-size: 2rem; line-height: 0.95; margin-bottom: 2rem; text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
@media (min-width: 768px) { .promo-title { font-size: 3rem; } }
@media (min-width: 1024px) { .promo-title { font-size: 3.75rem; } }

/* ==========================================================================
   BRAND PILLARS
   ========================================================================== */
.pillars-section { background: var(--surface-butter); padding: 4rem 0; }
@media (min-width: 1024px) { .pillars-section { padding: 5rem 0; } }
.pillars-heading { margin-bottom: 3rem; max-width: 48rem; }
.pillars-title { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .pillars-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .pillars-title { font-size: 3rem; } }
.pillars-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-item { padding: 2rem 1rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
@media (min-width: 640px) { .pillar-item:nth-child(odd) { border-right: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); } }
@media (min-width: 1024px) { .pillar-item { border-right: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); } .pillar-item:nth-child(3n) { border-right: none; } }
.pillar-icon { margin-bottom: 1.25rem; }
.pillar-label { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar-sub { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.5; }

/* ==========================================================================
   SHOP SECTION + PRODUCT CARDS
   ========================================================================== */
.shop-section-head { padding-top: 4rem; padding-bottom: 1.5rem; }
@media (min-width: 1024px) { .shop-section-head { padding-top: 5.5rem; } }
.shop-title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .shop-title { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-title { font-size: 3.75rem; } }
.shop-title em, .pricing-title em, .founder-quote, .promo-title em { font-style: italic; }
.shop-body { margin-top: 1.25rem; font-size: 15px; color: var(--color-muted-foreground); line-height: 1.6; max-width: 42rem; margin-left: auto; margin-right: auto; }
.shop-featured-carousel-wrap { padding-bottom: 3rem; }
.shop-featured-carousel { position: relative; }
.carousel-controls { display: none; justify-content: center; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .carousel-controls { display: flex; } }
.carousel-controls button { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--color-background); border: 1px solid var(--color-border); box-shadow: var(--shadow-soft); transition: all 0.25s ease; }
.carousel-controls button:hover { background: var(--color-foreground); color: var(--color-background); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 0.625rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.875rem; } }
.theme-shop-grid-slot[hidden] { display: none; }
.theme-product-grid--carousel { display: flex; overflow-x: auto; gap: 1rem; margin: 0 -1.5rem; padding: 0 1.5rem; scroll-snap-type: x mandatory; }
.theme-product-grid--carousel::-webkit-scrollbar { display: none; }
.theme-product-grid--carousel .theme-product-card-wrap { flex: 0 0 78vw; scroll-snap-align: start; }
@media (min-width: 640px) { .theme-product-grid--carousel .theme-product-card-wrap { flex-basis: 46vw; } }
@media (min-width: 768px) { .theme-product-grid--carousel .theme-product-card-wrap { flex-basis: 32vw; } }
@media (min-width: 1024px) { .theme-product-grid--carousel .theme-product-card-wrap { flex-basis: calc((100% - 3rem) / 4); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; 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__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.theme-product-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.7s ease; }
.theme-product-card__image--alt { opacity: 0; }
.theme-product-card:hover .theme-product-card__image--primary { opacity: 0; }
.theme-product-card:hover .theme-product-card__image--alt { opacity: 1; }
.theme-product-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; padding: 0.35rem 0.65rem; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__info { flex: 1; padding-top: 1rem; padding-bottom: 0.25rem; }
.theme-product-card__title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; min-width: 0; }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.25s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 15px; white-space: nowrap; }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { color: var(--color-muted-foreground); font-size: 13px; margin-right: 0.35rem; }
.theme-product-card__category { margin-top: 0.25rem; font-size: 13px; color: var(--color-muted-foreground); }
.theme-card-add-btn.ajax_add_to_cart {
	position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3; pointer-events: auto;
	width: 40px; height: 40px; min-height: unset !important; padding: 0.6rem !important;
	border-radius: 50% !important; background: var(--color-primary) !important; color: var(--color-button-text) !important;
	display: inline-flex !important; align-items: center; justify-content: center;
	opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
}
.theme-product-card:hover .theme-card-add-btn.ajax_add_to_cart { opacity: 1; transform: translateY(0); }
@media (max-width: 767px) { .theme-card-add-btn.ajax_add_to_cart { opacity: 1; transform: none; } }

.shop-catalog { padding-top: 1rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .shop-catalog { padding-bottom: 5rem; } }
.shop-catalog-heading { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; margin-bottom: 2rem; }
.shop-catalog-title { font-size: 1.5rem; }
@media (min-width: 768px) { .shop-catalog-title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .shop-catalog-title { font-size: 2.25rem; } }
.shop-catalog-sub { font-size: 14px; color: var(--color-muted-foreground); max-width: 28rem; }
.shop-filter-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.shop-filter-chip { padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; border: 1px solid var(--color-border); transition: all 0.25s ease; }
.shop-filter-chip.is-active, .shop-filter-chip:hover { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.shop-price-filter { max-width: 28rem; margin: 0 auto 2.5rem; padding: 0 0.5rem; }
.shop-price-filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.shop-price-display { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.theme-hidden-initial { display: none; }
.shop-load-more-wrap { margin-top: 2.5rem; display: flex; justify-content: center; }
.shop-load-more-btn { height: 48px; padding: 0 2rem; border: 1px solid var(--color-foreground); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; transition: all 0.25s ease; }
.shop-load-more-btn:hover { background: var(--color-foreground); color: var(--color-background); }
.shop-load-more-btn[hidden] { display: none; }
.shop-empty-message, .shop-empty-state { text-align: center; padding: 4rem 1rem; border: 1px dashed var(--color-border); }
.shop-empty-title { display: block; font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty-body { display: block; font-size: 14px; color: var(--color-muted-foreground); }

/* Price range slider (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); box-shadow: var(--shadow-soft); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); border: 2px solid var(--color-background); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

/* ==========================================================================
   SPLIT BANNERS
   ========================================================================== */
.split-banners { padding-top: 4rem; }
@media (min-width: 1024px) { .split-banners { padding-top: 6rem; } }
.split-banner { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .split-banner { grid-template-columns: repeat(2, 1fr); } }
.split-banner + .split-banner { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.split-banner-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
@media (min-width: 1024px) { .split-banner-image { aspect-ratio: auto; min-height: 520px; } .split-banner-reverse .split-banner-image { order: 2; } }
.split-banner-copy { display: flex; align-items: center; padding: 4rem 2rem; }
@media (min-width: 1024px) { .split-banner-copy { padding: 6rem 5rem; } .split-banner-reverse .split-banner-copy { order: 1; } }
.split-banner-heading { font-size: 1.875rem; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .split-banner-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .split-banner-heading { font-size: 3rem; } }
.split-banner-body { font-size: 15px; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 2rem; }
.split-banner-cta { font-size: 15px; text-decoration: underline; text-underline-offset: 6px; transition: color 0.25s ease; }
.split-banner-cta:hover { color: var(--color-primary); }

/* ==========================================================================
   PORTFOLIO
   ========================================================================== */
.bg-aurora { background: radial-gradient(60% 50% at 15% 20%, var(--surface-sky), transparent 70%), radial-gradient(55% 50% at 85% 25%, color-mix(in srgb, var(--color-accent) 28%, transparent), transparent 70%), linear-gradient(135deg, var(--surface-blush), var(--surface-oat)); }
.portfolio-section { padding: 4rem 0; }
@media (min-width: 1024px) { .portfolio-section { padding: 5rem 0; } }
.portfolio-heading { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .portfolio-heading { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.portfolio-title { font-size: 1.875rem; line-height: 1.2; }
@media (min-width: 768px) { .portfolio-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .portfolio-title { font-size: 3rem; } }
.portfolio-tag { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; opacity: 0.55; }
.portfolio-carousel { position: relative; }
.portfolio-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.portfolio-track::-webkit-scrollbar { display: none; }
.portfolio-item { position: relative; flex: 0 0 70vw; aspect-ratio: 4/5; overflow: hidden; scroll-snap-align: start; }
@media (min-width: 640px) { .portfolio-item { flex-basis: 40vw; } }
@media (min-width: 1024px) { .portfolio-item { flex-basis: 22vw; } }
.portfolio-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 999px; background: var(--color-background); border: 1px solid var(--color-border); display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .portfolio-nav { display: flex; } }
.portfolio-nav-prev { left: -20px; } .portfolio-nav-next { right: -20px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section { padding: 5rem 0; background: var(--color-background); }
@media (min-width: 1024px) { .testimonials-section { padding: 6.5rem 0; } }
.testimonials-container { max-width: 100%; width: 100%; }
.testimonials-heading { margin-bottom: 4rem; max-width: 48rem; }
@media (min-width: 1024px) { .testimonials-heading { margin-bottom: 5rem; } }
.testimonials-title { font-size: 2.25rem; line-height: 1.02; }
@media (min-width: 768px) { .testimonials-title { font-size: 3rem; } }
@media (min-width: 1024px) { .testimonials-title { font-size: 3.75rem; } }
.testimonials-title em { font-style: italic; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .testimonials-grid { gap: 3.5rem; } }
.testimonial-note {
	position: relative; padding: 1.75rem 1.5rem; min-height: 260px;
	display: flex; flex-direction: column;
	box-shadow: 2px 3px 12px rgba(0,0,0,0.08);
	transition: box-shadow 0.5s ease;
}
@media (min-width: 768px) { .testimonial-note { padding: 2rem 1.75rem; min-height: 280px; } }
.testimonial-note:hover { box-shadow: 3px 5px 20px rgba(0,0,0,0.12); }
.testimonial-tape {
	position: absolute; top: -0.625rem; left: 50%; width: 4rem; height: 1.25rem;
	transform: translateX(-50%) rotate(-1deg); box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.testimonial-modal .testimonial-tape { width: 5rem; }
.testimonial-mark {
	display: block; font-family: var(--font-display); font-style: italic;
	font-size: 2.8rem; line-height: 1; color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	margin-bottom: 0.75rem;
}
.testimonial-body { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.testimonial-quote {
	font-family: var(--font-body); font-style: italic; font-size: 15px; line-height: 1.5;
}
@media (min-width: 768px) { .testimonial-quote { font-size: 16px; } }
.testimonial-quote.is-clamped {
	display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.testimonial-read-more {
	margin-top: 0.75rem; align-self: flex-start; font-size: 11px; letter-spacing: 0.16em;
	text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	text-decoration: underline; text-underline-offset: 4px; transition: color 0.25s ease;
}
.testimonial-read-more:hover { color: var(--color-foreground); }
.testimonial-caption {
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	padding-top: 1rem; margin-top: auto; flex-shrink: 0;
}
.testimonial-name {
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
}
.testimonial-role {
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem;
}
.testimonial-modal {
	position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center;
	padding: 1.5rem; visibility: hidden; opacity: 0; transition: opacity 0.25s var(--ease-smooth), visibility 0.25s;
}
.testimonial-modal.is-open { visibility: visible; opacity: 1; }
.testimonial-modal-backdrop {
	position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 25%, transparent);
	backdrop-filter: blur(4px);
}
.testimonial-modal-card {
	position: relative; width: 100%; max-width: 32rem; padding: 2rem 2.5rem;
	box-shadow: 4px 8px 30px rgba(0,0,0,0.18);
	transform: scale(0.95) translateY(20px);
	transition: transform 0.25s var(--ease-smooth);
}
.testimonial-modal.is-open .testimonial-modal-card { transform: scale(1) translateY(0); }
.testimonial-modal-close {
	position: absolute; top: 0.75rem; right: 0.75rem; padding: 0.375rem; border-radius: 999px;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: background-color 0.2s ease, color 0.2s ease;
}
.testimonial-modal-close:hover { color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.testimonial-modal-quote { font-family: var(--font-body); font-style: italic; font-size: 15px; line-height: 1.55; margin-bottom: 2rem; }
@media (min-width: 768px) { .testimonial-modal-quote { font-size: 17px; } }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: 1fr; min-height: 80vh; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
.process-image { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .process-image { min-height: 100%; order: 1; } }
.process-copy { display: flex; flex-direction: column; justify-content: center; padding: 3rem 2rem; order: 1; }
@media (min-width: 1024px) { .process-copy { padding: 5rem; order: 2; } }
.process-title { font-size: 2.25rem; line-height: 1.05; margin: 1.5rem 0 2rem; }
@media (min-width: 768px) { .process-title { font-size: 3rem; } }
.process-body { display: flex; flex-direction: column; gap: 1rem; color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; margin-bottom: 2.5rem; }
.process-quote { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; padding-top: 2rem; border-top: 1px solid var(--color-border); }
@media (min-width: 768px) { .process-quote { font-size: 1.5rem; } }

/* ==========================================================================
   BRAND / STORY / FOUNDER
   ========================================================================== */
.story-banner { position: relative; width: 100%; height: 60vh; overflow: hidden; background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 85%, transparent), var(--color-accent)); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.story-banner[style*="background-image"] { background-color: var(--color-primary); }
@media (min-width: 768px) { .story-banner { height: 70vh; } }
.story-banner-inner { max-width: 42rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.story-title { color: #fdf1f6; font-size: 2.25rem; line-height: 0.95; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .story-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .story-title { font-size: 4.5rem; } }
.story-body { color: color-mix(in srgb, #fdf1f6 90%, transparent); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .story-body { font-size: 15px; } }
.founder-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; } }
.founder-copy { padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .founder-copy { padding: 6rem 5rem; } }
.founder-name { font-size: 3rem; line-height: 0.9; margin: 1.5rem 0 2.5rem; }
@media (min-width: 768px) { .founder-name { font-size: clamp(3rem, 7vw, 6rem); } }
.founder-body { display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 15px; line-height: 1.6; max-width: 36rem; }
.founder-body .drop-cap::first-letter { font-family: var(--font-display); float: left; margin-right: 0.75rem; margin-top: 0.25rem; font-size: 4.5rem; line-height: 0.85; }
.founder-quote { font-family: var(--font-display); font-size: 1.5rem; padding-top: 1rem; }
@media (min-width: 1024px) { .founder-quote { font-size: 1.875rem; } }
.founder-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); padding-top: 0.5rem; }
.founder-image { position: relative; min-height: 400px; }
@media (min-width: 1024px) { .founder-image { min-height: 700px; } }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section { padding: 4rem 0; }
@media (min-width: 1024px) { .pricing-section { padding: 5.5rem 0; } }
.pricing-body { margin-top: 1.25rem; font-size: 15px; color: var(--color-muted-foreground); line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; } }
.pricing-card { padding: 2rem; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .pricing-card { padding: 2.5rem; } }
.pricing-card-name { font-family: var(--font-display); font-size: 1.5rem; margin: 0.75rem 0; }
@media (min-width: 768px) { .pricing-card-name { font-size: 1.875rem; } }
.pricing-card-from { font-family: var(--font-display); font-style: italic; opacity: 0.8; font-size: 1.125rem; margin-bottom: 1.5rem; }
.pricing-card-from span { font-style: normal; }
.pricing-card-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 14px; line-height: 1.6; margin-bottom: 2rem; flex: 1; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 1.25rem; }
.pricing-card-list li { display: flex; gap: 0.75rem; }
.pricing-card-list li span:first-child { opacity: 0.5; margin-top: 0.15rem; }
.pricing-card .btn-pill { align-self: flex-start; }

/* ==========================================================================
   FAQ + CTA BAND
   ========================================================================== */
.faq-section { padding: 4rem 0; }
@media (min-width: 1024px) { .faq-section { padding: 5.5rem 0; } }
.faq-heading { font-size: 2.25rem; text-align: center; margin-bottom: 4rem; line-height: 1.2; }
@media (min-width: 768px) { .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-heading { font-size: 3.75rem; } }
.faq-list { max-width: 48rem; margin: 0 auto; border-top: 1px solid var(--color-border); }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-question span:first-child { font-size: 1rem; transition: color 0.25s ease; }
@media (min-width: 768px) { .faq-question span:first-child { font-size: 1.125rem; } }
.faq-question:hover span:first-child { color: var(--color-primary); }
.faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 6px; background: var(--color-foreground); color: var(--color-background); display: inline-flex; align-items: center; justify-content: center; position: relative; }
.faq-icon-plus, .faq-icon-minus { position: absolute; transition: opacity 0.2s ease, transform 0.2s ease; }
.faq-icon-minus { opacity: 0; }
.faq-item[data-open="true"] .faq-icon-plus { opacity: 0; }
.faq-item[data-open="true"] .faq-icon-minus { opacity: 1; }
.faq-answer-wrap { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth); }
.faq-answer-wrap[data-open="true"] { opacity: 1; }
.faq-answer { padding-bottom: 1.5rem; padding-right: 3rem; }
.faq-answer p { color: var(--color-muted-foreground); font-size: 15px; line-height: 1.6; }

.cta-band { position: relative; margin-top: 6rem; overflow: hidden; border-radius: var(--radius); background-size: cover; background-position: center; }
.cta-band-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,4,14,0.7), rgba(20,4,14,0.6) 50%, rgba(20,4,14,0.75)); }
.cta-band-content { position: relative; text-align: center; padding: 5rem 0; }
@media (min-width: 768px) { .cta-band-content { padding: 6.5rem 0; } }
.cta-band-content .label-eyebrow { color: color-mix(in srgb, #fdf1f6 80%, transparent); margin-bottom: 1.25rem; }
.cta-band-title { color: #fdf1f6; font-size: 2.25rem; line-height: 1.05; margin-bottom: 2rem; }
@media (min-width: 768px) { .cta-band-title { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-band-title { font-size: 3.75rem; } }
.cta-band-body { max-width: 32rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, #fdf1f6 85%, transparent); font-size: 15px; line-height: 1.6; }
.cta-band-actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-band-actions { flex-direction: row; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); }
.footer-newsletter-band { border-bottom: 1px solid color-mix(in srgb, var(--color-footer-text) 15%, transparent); }
.footer-newsletter-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; padding: 3.5rem 0; }
@media (min-width: 1024px) { .footer-newsletter-grid { grid-template-columns: repeat(12, 1fr); padding: 4rem 0; } }
.footer-newsletter-grid > div { grid-column: span 6; }
.footer-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; opacity: 0.6; margin-bottom: 0.75rem; }
.footer-newsletter-title { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.05; }
@media (min-width: 1024px) { .footer-newsletter-title { font-size: 2.25rem; } }
.footer-newsletter-form { grid-column: span 6; display: flex; width: 100%; }
.footer-newsletter-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid color-mix(in srgb, var(--color-footer-text) 40%, transparent); padding: 0.75rem 0.25rem; font-size: 14px; }
.footer-newsletter-submit { margin-left: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.5rem; height: 48px; background: var(--color-footer-text); color: var(--color-footer-bg); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; transition: all 0.25s ease; }
.footer-newsletter-submit:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.footer-main-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-main-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-main-grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; padding: 5rem 0; } }
.footer-col-brand { grid-column: span 1; } @media (min-width: 1024px) { .footer-col-brand { grid-column: span 4; } }
.footer-logo { height: 80px !important; }
.footer-about-text { margin-top: 1.5rem; font-size: 14px; max-width: 24rem; line-height: 1.6; opacity: 0.7; }
.footer-social { margin-top: 1.75rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-social-btn { padding: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-footer-text) 30%, transparent); transition: all 0.25s ease; }
.footer-social-btn:hover { border-color: var(--color-footer-text); color: var(--color-primary); }
.footer-col { grid-column: span 1; } @media (min-width: 1024px) { .footer-col { grid-column: span 2; } }
.footer-col-title { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; opacity: 0.6; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a, .footer-links button { font-size: 14px; opacity: 0.8; transition: opacity 0.25s ease; text-align: left; }
.footer-links a:hover, .footer-links button:hover { opacity: 1; }
.footer-contact-links li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-contact-links svg { margin-top: 0.15rem; flex-shrink: 0; }
.footer-bottom { padding: 1.5rem 0 3rem; margin-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-footer-text) 15%, transparent); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: center; gap: 1.5rem; } }
.footer-copyright, .footer-credit { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; opacity: 0.55; }
.footer-credit:hover { opacity: 0.85; }

/* ==========================================================================
   MODALS (search, contact, custom order)
   ========================================================================== */
.theme-modal { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.theme-modal.is-open { visibility: visible; }
.theme-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 0.3s ease; }
.theme-modal.is-open .theme-modal-overlay { opacity: 1; }
.theme-modal-panel {
	position: relative; margin: 4vh auto; width: 92vw; max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border: 1px solid var(--color-border); padding: 2rem;
	opacity: 0; transform: translateY(16px) scale(0.98); transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}
.theme-modal.is-open .theme-modal-panel { opacity: 1; transform: translateY(0) scale(1); }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; padding: 0.4rem; }
.theme-modal-title { font-family: var(--font-display); font-size: 1.5rem; margin: 0.5rem 0 0.75rem; }
.theme-modal-desc { font-size: 15px; line-height: 1.5; color: var(--color-muted-foreground); }
.theme-contact-info { display: flex; flex-direction: column; gap: 0.4rem; font-size: 14px; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin: 1rem 0; }
.theme-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-form-row-2 { grid-template-columns: 1fr 1fr; } }
.theme-form label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--color-muted-foreground); display: block; margin-bottom: 0.4rem; }
.theme-form input, .theme-form select, .theme-form textarea { width: 100%; padding: 0.65rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border); font-size: 14px; }
.theme-form input::placeholder,
.theme-form textarea::placeholder,
.footer-newsletter-input::placeholder,
.theme-search-input-row input::placeholder {
	color: color-mix(in srgb, var(--color-muted-foreground) 85%, #444);
	opacity: 1;
}
.theme-form input:focus, .theme-form select:focus, .theme-form textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-form textarea { resize: none; }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-status { font-size: 13px; min-height: 1.2em; }
.theme-form-status.is-success { color: var(--color-primary); }
.theme-form-status.is-error { color: #d33; }

.theme-search-panel { max-width: 40rem; padding: 1.5rem; }
.theme-search-input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid var(--color-border); padding-bottom: 1rem; }
.theme-search-input-row input { flex: 1; background: transparent; border: none; font-size: 16px; }
.theme-search-input-row input:focus { outline: none; }
.theme-search-results { margin-top: 1rem; max-height: 60vh; overflow-y: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-search-result-item { display: flex; gap: 0.75rem; align-items: center; padding: 0.5rem; transition: background 0.2s ease; }
.theme-search-result-item:hover { background: var(--color-secondary); }
.theme-search-result-item img { width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; }

/* ==========================================================================
   WOOCOMMERCE — GLOBAL
   ========================================================================== */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	list-style: none; padding: 1rem 1.5rem; margin: 0 auto 1.5rem; max-width: var(--container-max); width: var(--container-width); border-radius: var(--card-radius);
	background: var(--color-secondary); border-left: 3px solid var(--color-primary); font-size: 14px;
}
.woocommerce-error { border-left-color: #d33; }
.single-product .woocommerce-message, .single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

.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; }

.site-main { padding-top: var(--header-height); }
body.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 24px); }
@media (min-width: 1024px) { .site-main { padding-top: 104px; } body.theme-no-hero .site-main { padding-top: 128px; } }

.page-title-wrap { padding-top: 2.5rem; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-title { font-size: 2.5rem; } }
.entry-content-wrap { padding-bottom: 4rem; }

/* Shop / archive */
.woo-archive-head { padding: 2.5rem 0 1.5rem; }
.woo-archive-title { font-size: 2rem; }
.woo-archive-grid { padding-bottom: 3rem; }
.woo-archive-pagination { display: flex; justify-content: center; padding-bottom: 4rem; }
.woo-archive-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; margin: 0 0.2rem; border: 1px solid var(--color-border); font-size: 13px; }
.woo-archive-pagination .page-numbers.current { background: var(--color-foreground); color: var(--color-background); }
.woo-archive-empty { text-align: center; padding: 4rem 0; font-size: 15px; color: var(--color-muted-foreground); }

/* Single product */
.single-product-main { padding-bottom: 3rem; }
.back-to-shop-row { padding: 1.5rem 0; }
.back-to-shop-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.25s ease; }
.back-to-shop-link:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { display: flex; flex-direction: column-reverse; gap: 1rem; }
@media (min-width: 640px) { .theme-product-gallery { flex-direction: row-reverse; } }
.theme-product-main-image-wrap { position: relative; flex: 1; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-oat); }
.theme-product-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 100%; }
@media (min-width: 640px) { .theme-product-thumbnails { flex-direction: column; flex-wrap: nowrap; overflow-y: auto; max-height: 32rem; } }
.theme-product-thumb { width: 64px; height: 64px; flex-shrink: 0; overflow: hidden; border: 2px solid transparent; opacity: 0.6; transition: all 0.25s ease; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-foreground); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.theme-product-cats, .posted_in { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-cats a { color: var(--color-primary); }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 1.5rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .product-title { font-size: 2rem; } }
.theme-product-price { font-size: 1.5rem; margin-bottom: 1rem; }
.theme-stock-status { display: inline-flex; align-items: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; padding: 0.35rem 0.85rem; border-radius: 999px; }
.theme-stock-status.is-in-stock { background: color-mix(in srgb, var(--color-primary) 15%, transparent); color: var(--color-primary); }
.theme-stock-status.is-out-of-stock { background: color-mix(in srgb, #d33 15%, transparent); color: #d33; }
.theme-product-description { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }

.theme-quantity-wrapper { display: inline-flex; align-items: stretch; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus { width: 44px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: background 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input { width: 48px; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); text-align: center; -moz-appearance: textfield; background: transparent; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-details-heading { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.theme-product-details ul { list-style: disc; padding-left: 1.25rem; }
.theme-product-details li { margin-bottom: 0.5rem; font-size: 14px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.woocommerce-product-details__short-description, .woocommerce-variation-description { overflow-wrap: break-word; word-break: break-word; }

/* Variations */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.4rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; padding-bottom: 1.5rem; }
.variations { margin-bottom: 0.5rem; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill { padding: 0.5rem 1rem; border: 1px solid var(--color-border); font-size: 13px; transition: all 0.2s ease; }
.theme-attr-pill.is-selected, .theme-attr-pill:hover { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }
.single_variation_wrap .woocommerce-variation-price { margin-bottom: 1rem; }

/* Add-to-cart button style override (Section 11.4.1) */
.single_add_to_cart_button.button, .add_to_cart_button.button,
a.single_add_to_cart_button, a.add_to_cart_button, button.single_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;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important; padding: var(--btn-icon-padding) !important; border-radius: 50% !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; }

/* Related products */
.related-products-section { padding: 4rem 0 6rem; }
.related-products-heading { font-family: var(--font-display); font-size: 1.875rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .related-products-heading { font-size: 2.25rem; } }

/* ==========================================================================
   SIDE CART DRAWER
   ========================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 90; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }
#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem; z-index: 91;
	background: var(--color-background); box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s 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: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer-title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1.25rem; color: var(--color-muted-foreground); }
.theme-cart-continue-btn { border: 1px solid var(--color-border); padding: 0.6rem 1.5rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; }
.theme-cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-item { display: flex; gap: 1.25rem; }
.theme-cart-item-image { width: 96px; height: 128px; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; }
.theme-cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-item-title { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }
.theme-cart-item-variation { font-size: 12px; color: var(--color-muted-foreground); font-style: italic; margin-top: 0.35rem; }
.theme-cart-item-price { font-size: 14px; margin-top: 0.35rem; }
.theme-cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-qty-control { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-qty-control button { padding: 0.4rem 0.6rem; }
.theme-cart-qty-control span { padding: 0 0.75rem; font-size: 14px; min-width: 28px; text-align: center; }
.theme-cart-remove-btn { font-size: 12px; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer-footer { padding: 1.5rem 2rem 2rem; border-top: 1px solid var(--color-border); }
.theme-cart-subtotal-row { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.75rem; }
.theme-cart-tax-note { font-size: 12px; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-cart-checkout-btn { display: flex; align-items: center; justify-content: center; height: 48px; background: var(--color-foreground); color: var(--color-background); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; transition: opacity 0.2s ease; }
.theme-cart-checkout-btn:hover { opacity: 0.85; }

/* ==========================================================================
   CHECKOUT (native WooCommerce Blocks)
   ========================================================================== */
body.woocommerce-checkout .entry-content { max-width: 100%; }
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + 24px); padding-bottom: 4rem; }
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout__main ~ .wc-block-checkout__sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0; width: 100%; max-width: none; box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-sidebar {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-components-order-summary-item,
body.woocommerce-checkout .wc-block-components-totals-wrapper {
	width: 100%;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important; max-width: none !important;
	font-family: var(--font-body); border-radius: var(--card-radius); border-color: var(--color-border);
	background: var(--color-background); color: var(--color-foreground);
	box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder,
body.woocommerce-checkout input::placeholder,
body.woocommerce-checkout textarea::placeholder {
	color: #5a5a5a;
	opacity: 1;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: var(--color-primary); }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary); border-radius: var(--card-radius); padding: var(--section-padding);
}
@media (max-width: 767px) {
	body.woocommerce-checkout .wc-block-checkout__sidebar { width: 100%; }
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important; color: var(--color-button-text) !important; border-radius: var(--btn-radius) !important;
	text-transform: uppercase; letter-spacing: 0.15em; font-size: 13px;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--card-radius); }

/* Cart / My Account / Thank you page width & alignment parity (13.7) */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + 24px); }
body.woocommerce-cart .page-title, body.woocommerce-account .page-title { max-width: var(--container-max); width: var(--container-width); margin-left: auto; margin-right: auto; }

/* Thank you page */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: calc(var(--header-height) + 24px); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
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; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0 0 1.5rem; margin: 0 0 1.5rem; border-bottom: 1px solid var(--color-border); }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.6rem; border-bottom: 1px solid var(--color-border); font-size: 14px; text-align: left; }
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 {
	display: flex; flex-direction: column; gap: 1.5rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px; overflow-wrap: break-word; font-style: normal; font-size: 14px; line-height: 1.6;
}

/* 404 */
.notfound-wrap { padding: 8rem 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.notfound-title { font-size: 3rem; }
.notfound-body { color: var(--color-muted-foreground); max-width: 28rem; }

/* Generic page */
.theme-generic-post { padding: 4rem 0; }
