/* ==========================================================================
   DIVINE DAUGHTER — theme.css
   Regal dark canvas, rose gold, blush, champagne. All colors are driven by
   CSS custom properties emitted from the Customizer (Section 6 / 6.1).
   ========================================================================== */

:root {
	--color-background: #050505;
	--color-foreground: #fff0f1;
	--color-primary: #b66d78;
	--color-secondary: #1c1214;
	--color-muted: #221b1c;
	--color-muted-foreground: #d8b6ba;
	--color-accent: #f1e2ac;
	--color-card: #110d0e;
	--color-destructive: #da2f35;
	--color-button-text: #050505;

	--font-display: 'Cinzel', 'Playfair Display', serif;
	--font-serif-soft: 'Cormorant Garamond', 'Playfair Display', serif;
	--font-script: 'Great Vibes', 'Monsieur La Doulaise', cursive;
	--font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;

	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

	--radius: 6px;
	--btn-radius: 6px;
	--btn-height: 56px;
	--btn-padding: 0 2.25rem;
	--btn-icon-padding: 0.75rem;
	--btn-font-size: 0.95rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.01em;
	--btn-text-transform: none;

	--logo-height: 72px;
	--header-height: 104px;
	--checkout-gap: 2.5rem;
	--card-radius: 0;
	--section-padding: 2.5rem;
	--page-gutter: 1.5rem;
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--color-primary); color: var(--color-background); }

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.theme-product-main-image__frame):not(.site-logo-img):not(.theme-product-main-img):not(.theme-product-thumb-img):not(.theme-cart-item__img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .product-card-img, .theme-product-main-img, .theme-product-thumb-img, .theme-cart-item__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.container-wide {
	width: 100%;
	max-width: 84rem;
	margin: 0 auto;
	padding-inline: var(--page-gutter);
	min-width: 0;
}
.container-wide.theme-section__pad,
.container-wide.theme-section__pad-bottom-0,
.container-wide.site-footer__inner,
.container-wide.page-shell {
	padding-inline: var(--page-gutter);
}
@media (min-width: 768px) {
	:root { --page-gutter: 2.5rem; }
}

.theme-section { position: relative; }
.theme-section__pad { padding-block: 5rem; }
.theme-section__pad-bottom-0 { padding-block: 5rem 0; }
@media (min-width: 768px) {
	.theme-section__pad { padding-block: 7rem; }
	.theme-section__pad-bottom-0 { padding-block: 7rem 0; }
}

.eyebrow {
	display: block;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 500;
}
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.normal-case { text-transform: none; }

.font-script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0.01em; }
.font-serif-soft { font-family: var(--font-serif-soft); }
.font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; }

.brass-rule {
	display: block;
	height: 1px;
	width: 4rem;
	background: var(--color-primary);
}

.text-rose-gradient {
	background: linear-gradient(135deg, #f1e5ac 0%, #e4b7b4 30%, var(--color-primary) 70%, #8c4f58 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.theme-icon-inline { width: 1rem; height: 1rem; }

/* ==========================================================================
   ANIMATIONS (Section 2.1)
   ========================================================================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.animate-fade-in { animation: fadeIn 0.7s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.7s var(--transition-smooth) forwards; }
.animate-scale-in { animation: scaleIn 0.6s var(--transition-smooth) forwards; }
.animate-marquee,
.testimonials-marquee { animation: marquee 60s linear infinite; will-change: transform; }
.testimonials-marquee:hover { animation-play-state: paused; }

.reveal-item {
	opacity: 0;
	transform: translateY(0);
	transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo), filter 0.9s var(--ease-out-expo);
	filter: blur(6px);
}
.reveal-item.reveal-up { transform: translateY(28px); }
.reveal-item.reveal-fade { filter: blur(4px); }
.reveal-item.reveal-left { transform: translateX(-40px); }
.reveal-item.reveal-right { transform: translateX(40px); }
.reveal-item.is-visible {
	opacity: 1;
	transform: translateY(0) translateX(0);
	filter: blur(0);
}

/* Customizer preview fallback — reveal content must never be hidden while editing. */
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item, .animate-fade-in, .animate-slide-up, .animate-scale-in, .animate-marquee, .testimonials-marquee {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	white-space: nowrap;
	transition: all 0.3s ease-out;
	border: none;
	cursor: pointer;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
	background: var(--color-primary);
	color: var(--color-button-text);
	box-shadow: 0 2px 0 0 color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.btn-primary:hover {
	background: color-mix(in srgb, var(--color-primary) 90%, white 0%);
	opacity: 0.92;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px -10px color-mix(in srgb, var(--color-primary) 70%, transparent);
}

.btn-outline {
	background: transparent;
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.btn-outline:hover {
	background: color-mix(in srgb, var(--color-accent) 12%, transparent);
	border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent);
	transform: translateY(-2px);
}

.btn-hero-primary {
	background: var(--color-primary);
	color: var(--color-button-text);
	box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 50%, transparent);
	width: 100%;
}
.btn-hero-primary:hover { box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 70%, transparent); opacity: 0.92; }

.btn-hero-outline {
	background: transparent;
	color: var(--color-accent);
	border: 1px solid color-mix(in srgb, var(--color-accent) 60%, transparent);
	width: 100%;
}
.btn-hero-outline:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); border-color: var(--color-accent); }

@media (min-width: 1024px) {
	.btn-hero-primary, .btn-hero-outline { width: auto; }
}

/* ==========================================================================
   ADMIN BAR OFFSET
   ========================================================================== */
body.admin-bar .site-header {
	top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: var(--wp-admin--admin-bar--height, 46px);
	}
}

/* ==========================================================================
   INTERACTIVE CURSORS
   ========================================================================== */
.theme-product-card,
.category-card,
.shop-filter-chip,
.contact-link-row,
.theme-footer-link,
.theme-footer-list a,
.faq-item__question,
.site-branding,
.theme-header-cta,
.theme-nav-list a,
.theme-nav-link,
.theme-mobile-list a,
.theme-cart-toggle,
.theme-mobile-toggle,
.theme-cart-item__name,
.theme-cart-item__remove,
.theme-cart-drawer__close,
#shop-show-more,
label[for] {
	cursor: pointer;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: transparent;
	transition: background-color 0.5s ease, border-color 0.5s ease;
	border-bottom: 1px solid transparent;
}
.site-header.is-solid,
.site-header.is-mobile-open {
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.site-header__scrim {
	position: absolute;
	inset: 0 0 auto 0;
	height: 8rem;
	background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.25), transparent);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.3s ease;
}
.site-header.is-solid .site-header__scrim,
.site-header.is-mobile-open .site-header__scrim { opacity: 0; }

.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 6rem;
	position: relative;
	z-index: 2;
	transition: height 0.3s ease;
}
.site-header.is-solid .site-nav { height: 5rem; }

.site-branding { display: flex; align-items: center; gap: 0.6rem; min-width: 0; max-width: 100%; }
.site-logo-img {
	height: var(--logo-height, 72px);
	max-height: var(--logo-height, 72px);
	width: auto !important;
	max-width: none;
	object-fit: contain;
	transition: height 0.3s ease, max-height 0.3s ease;
}
.site-header.is-solid .site-logo-img {
	height: calc(var(--logo-height, 72px) * 0.8);
	max-height: calc(var(--logo-height, 72px) * 0.8);
}
.site-logo-text { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.03em; color: var(--color-foreground); }

.site-nav__desktop { display: none; align-items: center; gap: 1.75rem; margin-left: auto; margin-right: 1.5rem; }
@media (min-width: 1024px) { .site-nav__desktop { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-list a, .theme-nav-link {
	position: relative;
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.3s ease;
}
.theme-nav-list a:hover, .theme-nav-link:hover { color: var(--color-primary); }
.theme-nav-list a::after, .theme-nav-link::after {
	content: '';
	position: absolute;
	left: 0; bottom: -4px;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s var(--transition-smooth);
}
.theme-nav-list a:hover::after, .theme-nav-link:hover::after { transform: scaleX(1); }

.theme-header-cta {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 1.35rem;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	background: var(--color-primary);
	color: var(--color-button-text);
	transition: all 0.3s ease;
}
.theme-header-cta:hover { background: color-mix(in srgb, var(--color-primary) 90%, transparent); box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 45%, transparent); }
.theme-header-cta--mobile { margin-top: 0.75rem; width: 100%; justify-content: center; padding: 0.85rem; }

.site-nav__actions { display: flex; align-items: center; gap: 0.25rem; }
.theme-cart-toggle { position: relative; padding: 0.5rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); transition: color 0.3s; }
.theme-cart-toggle:hover { color: var(--color-primary); }
.theme-icon { width: 1.25rem; height: 1.25rem; }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	min-width: 1.25rem; height: 1.25rem;
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 500;
	background: var(--color-primary);
	color: var(--color-button-text);
	border-radius: 999px;
	padding: 0 3px;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle { padding: 0.5rem; display: block; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-mobile-toggle .theme-icon-close { display: none; }
.site-header.is-mobile-open .theme-mobile-toggle .theme-icon-open { display: none; }
.site-header.is-mobile-open .theme-mobile-toggle .theme-icon-close { display: block; }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }

.site-nav__mobile { display: none; padding: 1rem 0 1.25rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); }
.site-header.is-mobile-open .site-nav__mobile { display: block; animation: fadeIn 0.4s ease; }
.site-nav__mobile .theme-nav-list,
.site-nav__mobile .theme-mobile-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
}
.site-nav__mobile .theme-nav-list a,
.site-nav__mobile .theme-nav-link,
.site-nav__mobile .theme-mobile-list a {
	display: block;
	padding: 0.75rem 0.5rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.3s, background-color 0.3s;
}
.site-nav__mobile .theme-nav-list a::after,
.site-nav__mobile .theme-nav-link::after { display: none; }
.site-nav__mobile .theme-nav-list a:hover,
.site-nav__mobile .theme-nav-link:hover,
.site-nav__mobile .theme-mobile-list a:hover { color: var(--color-primary); background: var(--color-secondary); }
.theme-mobile-list { display: flex; flex-direction: column; gap: 0.25rem; }
.theme-mobile-list a {
	display: block;
	padding: 0.75rem 0.5rem;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.3s, background-color 0.3s;
}
.theme-mobile-list a:hover { color: var(--color-primary); background: var(--color-secondary); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--color-background); border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
.site-footer__inner { padding-block: 4rem 2rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem 2rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; } }
.site-footer__brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 768px) { .site-footer__brand { grid-column: span 5; align-items: flex-start; text-align: left; } }
.site-logo-img--footer {
	height: 90px;
	max-height: 90px;
	width: auto !important;
}
.site-footer__desc { margin-top: 1.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 28rem; font-weight: 300; line-height: 1.6; }
.site-footer__script {
	margin-top: 1rem;
	font-family: var(--font-script);
	font-size: 1.5rem;
	line-height: 1;
	color: var(--color-accent);
}
@media (min-width: 768px) {
	.site-footer__script { font-size: 1.875rem; }
}
.site-footer__col { grid-column: span 2; }
.site-footer__stay-close { grid-column: span 3; }
.site-footer__heading { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; font-weight: 500; }
.theme-footer-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-link, .theme-footer-list a {
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 0.3s;
	font-weight: 300;
}
.theme-footer-link:hover, .theme-footer-list a:hover { color: var(--color-primary); }
.theme-footer-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; }
.theme-footer-icon { width: 1rem; height: 1rem; color: var(--color-accent); flex-shrink: 0; }
.site-footer__bottom {
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copy, .site-footer__built-by { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.site-footer__built-by a { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.3s; }
.site-footer__built-by a:hover { color: var(--color-accent); text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 100svh;
	background: var(--color-background);
}
@media (min-width: 1024px) { .hero-section { height: 100vh; min-height: 720px; } }
.hero-section__video-wrap { position: absolute; inset: 0; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim { position: absolute; inset: 0; }
.hero-section__scrim--1 { background: color-mix(in srgb, var(--color-background) 45%, transparent); }
.hero-section__scrim--2 { background: linear-gradient(to right, color-mix(in srgb, var(--color-background) 75%, transparent), color-mix(in srgb, var(--color-background) 25%, transparent), color-mix(in srgb, var(--color-background) 45%, transparent)); }
.hero-section__scrim--3 { background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 30%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent)); }
.hero-section__glow {
	position: absolute;
	bottom: -10rem; right: -5rem;
	width: 40rem; height: 40rem;
	border-radius: 50%;
	opacity: 0.3;
	background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
	filter: blur(120px);
	pointer-events: none;
}
.hero-section__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 10; padding-bottom: 3.5rem; }
@media (min-width: 768px) { .hero-section__content { padding-bottom: 5rem; } }
@media (min-width: 1024px) { .hero-section__content { padding-bottom: 6rem; } }
.hero-section__max { max-width: 56rem; }
.hero-section__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-accent); margin-bottom: 1.25rem; }
@media (min-width: 768px) { .hero-section__eyebrow { margin-bottom: 1.5rem; } }
.hero-section__script { font-size: 2.25rem; line-height: 1; margin-bottom: 0.75rem; color: var(--color-accent); }
@media (min-width: 768px) { .hero-section__script { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-section__script { font-size: 3.75rem; margin-bottom: 1rem; } }
.hero-section__title { text-transform: uppercase; letter-spacing: 0.02em; font-size: 2.5rem; line-height: 1.02; }
@media (min-width: 640px) { .hero-section__title { font-size: 3.25rem; } }
@media (min-width: 768px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 5.25rem; } }
.hero-section__title-line { display: block; }
.hero-section__title-line--solid { color: var(--color-foreground); }
.hero-section__desc { margin-top: 1.5rem; max-width: 36rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); font-weight: 300; font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .hero-section__desc { font-size: 1.125rem; } }
.hero-section__ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
@media (min-width: 768px) { .hero-section__ctas { margin-top: 2.5rem; } }
@media (min-width: 1024px) { .hero-section__ctas { flex-direction: row; flex-wrap: wrap; } }

/* ==========================================================================
   SECTION HEADINGS (per-section scale — Section 2.2.5)
   ========================================================================== */
.theme-section-heading { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
@media (min-width: 768px) { .theme-section-heading { margin-bottom: 5rem; } }
.theme-section-desc { margin-top: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }

.categories-section__heading { font-size: 2.25rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; margin-top: 0.75rem; }
@media (min-width: 768px) { .categories-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .categories-section__heading { font-size: 3.75rem; } }
.categories-section__heading .font-script { font-size: 1.2em; }

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.category-card {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-align: left;
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	background: color-mix(in srgb, var(--color-secondary) 60%, transparent);
	transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth), border-color 0.5s var(--transition-smooth);
}
.category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 0 28px color-mix(in srgb, var(--color-primary) 35%, transparent);
	border-color: color-mix(in srgb, var(--color-primary) 70%, transparent);
}
.category-card__image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
@media (min-width: 768px) { .category-card__image-wrap { aspect-ratio: 5 / 6; } }
.category-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.4s ease-out; }
.category-card:hover .category-card__image { transform: scale(1.1); }
.category-card__gradient { position: absolute; inset: 0; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 60%, transparent), color-mix(in srgb, var(--color-background) 10%, transparent)); }
.category-card__frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); }
.category-card__content { position: relative; z-index: 10; margin-top: -10rem; padding: 2rem 2.25rem; display: flex; flex-direction: column; }
@media (min-width: 768px) { .category-card__content { margin-top: -12rem; padding: 2.5rem; } }
.category-card__icon { width: 1.75rem; height: 1.75rem; color: var(--color-accent); margin-bottom: 1.5rem; }
.category-card__script { font-size: 1.875rem; line-height: 1; color: var(--color-accent); }
@media (min-width: 768px) { .category-card__script { font-size: 2.25rem; } }
.category-card__title { font-size: 1.5rem; margin-top: 0.75rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .category-card__title { font-size: 1.875rem; } }
.category-card__desc { margin-top: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-weight: 300; line-height: 1.6; max-width: 38ch; }
@media (min-width: 768px) { .category-card__desc { font-size: 15px; } }
.category-card__cta { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--color-primary); transition: color 0.5s; }
.category-card:hover .category-card__cta { color: var(--color-accent); }
.category-card__arrow { width: 0.875rem; height: 0.875rem; transition: transform 0.5s; }
.category-card:hover .category-card__arrow { transform: translateX(4px); }

/* ==========================================================================
   PILLARS / RITUAL SECTION
   ========================================================================== */
.pillars-section__intro { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: end; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .pillars-section__intro { grid-template-columns: repeat(12, 1fr); gap: 4rem; margin-bottom: 5rem; } }
.pillars-section__intro-main { grid-column: span 7; }
.pillars-section__heading { font-size: 2.25rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; margin-top: 0.75rem; color: var(--color-foreground); }
@media (min-width: 768px) { .pillars-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .pillars-section__heading { font-size: 3.75rem; } }
.pillars-section__intro-desc { grid-column: span 5; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; font-size: 1rem; }
@media (min-width: 768px) { .pillars-section__intro-desc { font-size: 1.125rem; } }

.pillars-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: color-mix(in srgb, var(--color-primary) 25%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
}
@media (min-width: 640px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.pillar-card { position: relative; background: var(--color-card); padding: 1.75rem; display: flex; flex-direction: column; transition: background-color 0.5s; }
@media (min-width: 768px) { .pillar-card { padding: 2.5rem; } }
.pillar-card:hover { background: var(--color-secondary); }
.pillar-card__underline { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(to right, transparent, var(--color-accent), transparent); transform: scaleX(0); transition: transform 0.7s; transform-origin: center; }
.pillar-card:hover .pillar-card__underline { transform: scaleX(1); }
.pillar-card__icon { width: 1.75rem; height: 1.75rem; color: var(--color-primary); margin-bottom: 2rem; transition: all 0.5s; }
.pillar-card:hover .pillar-card__icon { transform: translateY(-4px) scale(1.1); color: var(--color-accent); }
.pillar-card__title { font-size: 1.25rem; margin-bottom: 0.75rem; line-height: 1.3; letter-spacing: 0.02em; text-transform: uppercase; }
@media (min-width: 768px) { .pillar-card__title { font-size: 1.5rem; } }
.pillar-card__desc { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }

/* ==========================================================================
   SHOP SECTION
   ========================================================================== */
.shop-section__intro { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
@media (min-width: 768px) { .shop-section__intro { grid-template-columns: repeat(12, 1fr); gap: 3rem; margin-bottom: 4rem; } }
.shop-section__intro-main { grid-column: span 7; }
.shop-section__heading { font-size: 2.25rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; margin-top: 0.75rem; }
@media (min-width: 768px) { .shop-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-section__heading { font-size: 3.75rem; } }
.shop-section__intro-desc { grid-column: span 5; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }

.shop-filter-bar { background: var(--color-card); border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); padding: 1.25rem; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .shop-filter-bar { padding: 1.5rem; } }
.shop-filter-bar__row { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .shop-filter-bar__row { flex-direction: row; } }
.shop-filter-bar__search { position: relative; flex: 1; }
.shop-filter-bar__search-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-filter-bar__search input {
	width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem;
	background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	font-size: 0.875rem;
	color: var(--color-foreground);
}
.shop-filter-bar__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-filter-bar__search input:focus { outline: none; border-color: var(--color-primary); }
.shop-filter-bar__sort { position: relative; }
@media (min-width: 640px) { .shop-filter-bar__sort { width: 14rem; } }
.shop-filter-bar__sort-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); pointer-events: none; }
.shop-filter-bar__sort select {
	width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem;
	background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	font-size: 0.875rem;
	color: var(--color-foreground);
	appearance: none;
	cursor: pointer;
}
.shop-filter-bar__sort select:focus { outline: none; border-color: var(--color-primary); }
.shop-filter-bar__chips-label { margin-bottom: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.shop-filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.shop-filter-chip {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: var(--color-background);
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: all 0.3s;
}
.shop-filter-chip:hover { border-color: color-mix(in srgb, var(--color-primary) 70%, transparent); color: var(--color-foreground); }
.shop-filter-chip.is-active {
	background: var(--color-primary);
	color: var(--color-button-text);
	border-color: var(--color-primary);
	box-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 40%, transparent);
}

.shop-section__count { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; }
.shop-empty-state { border: 1px dashed color-mix(in srgb, var(--color-primary) 40%, transparent); padding: 4rem 0; text-align: center; }
.shop-empty-state__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.shop-empty-state__desc { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }

.shop-section__show-more-wrap { display: flex; justify-content: center; margin-top: 3rem; }

/* ==========================================================================
   PRODUCT CARD (shared: shop, archive, related — Section 31.13)
   ========================================================================== */
.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-card);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.theme-product-card:hover {
	border-color: color-mix(in srgb, var(--color-primary) 80%, transparent);
	box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4 / 5; background: var(--color-secondary); overflow: hidden; }
.theme-product-card__badge {
	position: absolute; top: 1rem; left: 1rem; z-index: 3;
	padding: 0.25rem 0.6rem;
	font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
	background: color-mix(in srgb, var(--color-background) 85%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	color: var(--color-primary);
}
.theme-product-card__badge:empty { display: none; }
.theme-product-card__image-frame { position: absolute; inset: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); pointer-events: none; }
.theme-product-card__image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-background) 70%, transparent), transparent, transparent); opacity: 0; transition: opacity 0.5s; }
.theme-product-card:hover .theme-product-card__image-overlay { opacity: 1; }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.05); }
.theme-product-card__image-wrapper img { transition: transform 0.8s var(--transition-smooth); }

.theme-product-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.25rem; }
@media (min-width: 768px) { .theme-product-card__body { padding: 1.5rem; } }
.theme-product-card__story { display: block; font-size: 1.25rem; line-height: 1; margin-bottom: 0.25rem; color: var(--color-accent); }
.theme-product-card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; min-width: 0; }
.theme-product-card__title { font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.3; transition: color 0.3s; min-width: 0; }
@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: 0.875rem; font-weight: 500; color: var(--color-accent); white-space: nowrap; margin-top: 0.35rem; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.35rem; }
.theme-product-card__notes { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.theme-product-card__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }
.theme-product-card__view { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--color-primary); transition: color 0.3s; }
.theme-product-card:hover .theme-product-card__view { color: var(--color-accent); }
.theme-product-card__arrow { display: inline-block; transition: transform 0.3s; }
.theme-product-card:hover .theme-product-card__arrow { transform: translateX(4px); }

/* Card-scoped add-to-cart button (design has none currently, kept for future use — Section 11.4.1). */
.theme-product-card .add_to_cart_button.ajax_add_to_cart { min-height: unset; padding: var(--btn-icon-padding); border-radius: 50%; }

/* ==========================================================================
   TESTIMONIALS / REVIEWS MARQUEE
   ========================================================================== */
.testimonials-section { overflow: hidden; }
.testimonials-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonials-section__scrim { position: absolute; inset: 0; }
.testimonials-section__scrim--1 { background: color-mix(in srgb, var(--color-background) 45%, transparent); }
.testimonials-section__scrim--2 { background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 70%, transparent), color-mix(in srgb, var(--color-background) 30%, transparent), color-mix(in srgb, var(--color-background) 70%, transparent)); }
.testimonials-section__intro { position: relative; }
.testimonials-section__heading { margin-top: 0.75rem; }
.testimonials-marquee-wrap { position: relative; overflow: hidden; padding-bottom: 5rem; }
@media (min-width: 768px) { .testimonials-marquee-wrap { padding-bottom: 7rem; } }
.testimonials-marquee-fade { position: absolute; inset-block: 0; width: 6rem; z-index: 10; pointer-events: none; }
@media (min-width: 768px) { .testimonials-marquee-fade { width: 10rem; } }
.testimonials-marquee-fade--left { left: 0; background: linear-gradient(to right, var(--color-background), transparent); }
.testimonials-marquee-fade--right { right: 0; background: linear-gradient(to left, var(--color-background), transparent); }
.testimonials-marquee { position: relative; display: flex; width: max-content; }
.testimonial-card {
	position: relative;
	flex-shrink: 0;
	width: 85vw;
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	background: color-mix(in srgb, var(--color-card) 80%, transparent);
	backdrop-filter: blur(4px);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	margin: 0 0.75rem;
}
@media (min-width: 640px) { .testimonial-card { width: 420px; margin: 0 1rem; padding: 2.25rem; } }
@media (min-width: 768px) { .testimonial-card { width: 440px; } }
.testimonial-card__frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); pointer-events: none; }
.testimonial-card__stars { display: flex; align-items: center; gap: 0.125rem; color: var(--color-accent); }
.testimonial-card__star { width: 0.875rem; height: 0.875rem; fill: currentColor; }
.testimonial-card__quote { margin-top: 1.25rem; font-style: italic; font-size: 1.125rem; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
@media (min-width: 768px) { .testimonial-card__quote { font-size: 19px; } }
.testimonial-card__footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
.testimonial-card__name { font-size: 1.5rem; line-height: 1; color: var(--color-accent); }
.testimonial-card__meta { margin-top: 0.5rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, 1fr); gap: 5rem; } }
.about-section__image-col { grid-column: span 5; order: 2; }
@media (min-width: 1024px) { .about-section__image-col { order: 1; } }
.about-section__copy-col { grid-column: span 7; order: 1; }
@media (min-width: 1024px) { .about-section__copy-col { order: 2; padding-top: 1rem; } }
.about-section__image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); }
.about-section__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-section__image-frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); pointer-events: none; }
.about-section__image-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 70%, transparent), transparent); }
@media (min-width: 768px) { .about-section__image-caption { padding: 2rem; } }
.about-section__name { font-size: 1.875rem; line-height: 1; color: var(--color-accent); }
@media (min-width: 768px) { .about-section__name { font-size: 2.25rem; } }
.about-section__role { margin-top: 0.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.about-section__heading { font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.75rem; } }
.about-section__heading-script { font-size: 1.4rem; }
.about-section__copy { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-weight: 300; font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .about-section__copy { font-size: 1.125rem; } }
.about-section__quote { font-style: italic; color: var(--color-foreground); font-size: 1.125rem; font-weight: 400; }
@media (min-width: 768px) { .about-section__quote { font-size: 1.25rem; } }
.about-section__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .about-section__ctas { flex-direction: row; flex-wrap: wrap; } }
.about-section .brass-rule { margin: 2rem 0; }

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, 1fr); gap: 5rem; } }
.faq-section__image-col { grid-column: span 5; position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); }
@media (min-width: 1024px) { .faq-section__image-col { position: sticky; top: 7rem; } }
.faq-section__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.faq-section__image-frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); pointer-events: none; }
.faq-section__image-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(to top, var(--color-background), color-mix(in srgb, var(--color-background) 70%, transparent), transparent); }
@media (min-width: 768px) { .faq-section__image-caption { padding: 2rem; } }
.faq-section__quote { margin-top: 0.5rem; font-style: italic; font-size: 1.5rem; line-height: 1.4; max-width: 24rem; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-section__quote { font-size: 1.875rem; } }
.faq-section__author { margin-top: 0.75rem; font-size: 1.5rem; color: var(--color-accent); }
.faq-section__content-col { grid-column: span 7; }
.faq-section__heading { font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .faq-section__heading { font-size: 3.75rem; } }
.faq-section__desc { margin-top: 1.25rem; max-width: 32rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }

.faq-accordion { margin-top: 2.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
@media (min-width: 768px) { .faq-accordion { margin-top: 3rem; } }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem 0; text-align: left; }
@media (min-width: 768px) { .faq-item__question { gap: 1.75rem; padding: 1.75rem 0; } }
.faq-item__num { font-size: 1.125rem; flex-shrink: 0; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); transition: color 0.3s; }
@media (min-width: 768px) { .faq-item__num { font-size: 1.25rem; } }
.faq-item__question[aria-expanded="true"] .faq-item__num { color: var(--color-primary); font-style: italic; }
.faq-item__q-text { flex: 1; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.02em; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); transition: color 0.3s; }
@media (min-width: 768px) { .faq-item__q-text { font-size: 1.25rem; } }
.faq-item__question:hover .faq-item__q-text { color: var(--color-foreground); }
.faq-item__question[aria-expanded="true"] .faq-item__q-text { color: var(--color-foreground); }
.faq-item__plus { width: 1rem; height: 1rem; flex-shrink: 0; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); transition: transform 0.3s, color 0.3s; }
.faq-item__question[aria-expanded="true"] .faq-item__plus { transform: rotate(45deg); color: var(--color-primary); }
.faq-item__answer-wrap { overflow: hidden; animation: faqOpen 0.4s var(--transition-smooth); }
@keyframes faqOpen { from { opacity: 0; } to { opacity: 1; } }
.faq-item__answer { padding: 0 1.5rem 1.5rem 2.5rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; font-size: 0.875rem; max-width: 42rem; }
@media (min-width: 768px) { .faq-item__answer { padding: 0 1.5rem 1.75rem 3rem; font-size: 1rem; } }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.contact-section__heading { font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section__heading { font-size: 3.75rem; } }
.contact-section__desc { margin-top: 1.5rem; max-width: 28rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }
.contact-section__links { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-link-row { display: flex; align-items: center; gap: 1rem; }
.contact-link-row__icon { width: 2.75rem; height: 2.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); display: flex; align-items: center; justify-content: center; transition: border-color 0.3s; flex-shrink: 0; }
.contact-link-row__icon svg { color: var(--color-accent); }
.contact-link-row:hover .contact-link-row__icon { border-color: var(--color-primary); }
.contact-link-row__text { font-size: 0.875rem; font-weight: 300; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.3s; overflow-wrap: break-word; }
.contact-link-row:hover .contact-link-row__text { color: var(--color-primary); }

.contact-form { position: relative; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); background: var(--color-card); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form__frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); pointer-events: none; }
.contact-form__header { position: relative; }
.contact-form__script { font-size: 1.875rem; line-height: 1; margin-bottom: 0.25rem; color: var(--color-accent); }
.contact-form__label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.contact-form__fields { position: relative; display: flex; flex-direction: column; gap: 1rem; }
.contact-form__input {
	width: 100%; padding: 0.75rem 1rem;
	background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	font-size: 0.875rem;
	color: var(--color-foreground);
	transition: border-color 0.3s;
}
.contact-form__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.contact-form__input:focus { outline: none; border-color: var(--color-primary); }
.contact-form__textarea { resize: none; }
.contact-form__submit { width: 100%; }

.theme-toast {
	position: fixed;
	bottom: 1.5rem; right: 1.5rem;
	z-index: 100;
	max-width: 24rem;
	background: var(--color-card);
	border: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
	padding: 1rem 1.25rem;
	box-shadow: var(--shadow-elevated, 0 20px 50px -20px rgba(0,0,0,0.8));
	transform: translateY(20px);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.4s var(--transition-smooth), opacity 0.4s var(--transition-smooth);
}
.theme-toast.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.theme-toast__title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.theme-toast__desc { font-size: 0.825rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }

/* ==========================================================================
   404
   ========================================================================== */
.theme-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; animation: scaleIn 0.6s var(--transition-smooth); }
.theme-404__code { font-family: var(--font-display); font-size: 4rem; margin-bottom: 1rem; }
.theme-404__message { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 1rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ==========================================================================
   PAGE SHELL / GENERIC
   ========================================================================== */
.page-title { font-family: var(--font-display); font-size: 2.25rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 2rem; padding-top: 8rem; }
.page-shell { padding-bottom: 4rem; }
.theme-no-hero .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page .page-title,
body.woocommerce-checkout .page-title { padding-top: 8rem; }

/* ==========================================================================
   POLICIES PAGE
   ========================================================================== */
.policies-hero { padding-top: 9rem; padding-bottom: 3rem; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); }
@media (min-width: 768px) { .policies-hero { padding-top: 11rem; padding-bottom: 4rem; } }
.policies-hero__inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.policies-hero__script { font-size: 2.25rem; line-height: 1; margin-top: 0.75rem; color: var(--color-accent); }
@media (min-width: 768px) { .policies-hero__script { font-size: 3rem; } }
.policies-hero__heading { font-size: 2.25rem; margin-top: 1rem; line-height: 1.05; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .policies-hero__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .policies-hero__heading { font-size: 3.75rem; } }
.policies-hero__rule { margin: 2rem auto 0; height: 1px; width: 6rem; background: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.policies-hero__intro { margin-top: 2rem; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }
@media (min-width: 768px) { .policies-hero__intro { font-size: 1.125rem; } }

.policies-list__inner { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .policies-list__inner { gap: 2rem; } }
.policy-card { position: relative; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); background: var(--color-card); padding: 2rem; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .policy-card { padding: 2.5rem; } }
.policy-card__frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); pointer-events: none; }
.policy-card__icon-wrap { position: relative; width: 3rem; height: 3rem; border: 1px solid color-mix(in srgb, var(--color-primary) 60%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.policy-card__icon { color: var(--color-accent); }
.policy-card__title { position: relative; font-size: 1.5rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .policy-card__title { font-size: 26px; } }
.policy-card__rule { position: relative; margin-top: 1.25rem; height: 1px; width: 3rem; background: color-mix(in srgb, var(--color-accent) 70%, transparent); }
.policy-card__body { position: relative; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-weight: 300; line-height: 1.6; }
@media (min-width: 768px) { .policy-card__body { font-size: 15px; } }

.policies-cta__inner { max-width: 48rem; margin: 0 auto; text-align: center; border-top: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); padding-top: 4rem; }
@media (min-width: 768px) { .policies-cta__inner { padding-top: 5rem; } }
.policies-cta__script { font-size: 1.875rem; line-height: 1; color: var(--color-accent); }
@media (min-width: 768px) { .policies-cta__script { font-size: 2.25rem; } }
.policies-cta__heading { font-size: 1.875rem; margin-top: 0.75rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .policies-cta__heading { font-size: 2.25rem; } }
.policies-cta__desc { margin-top: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.6; }
.policies-cta__buttons { margin-top: 2.25rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .policies-cta__buttons { flex-direction: row; } }

/* ==========================================================================
   SINGLE PRODUCT PAGE (Section 11 / 11.13 responsive)
   ========================================================================== */
.single-product-page { padding-top: 6rem; }
@media (min-width: 1024px) { .single-product-page { padding-top: 7rem; } }
.single-product-page__back { padding: 1.5rem 0; }
.theme-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.3s; }
.theme-back-link:hover { color: var(--color-primary); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { padding-block: 2.5rem; } }

.theme-product-main-image { position: relative; aspect-ratio: 3 / 4; background: var(--color-secondary); border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); overflow: hidden; margin-bottom: 1rem; }
.theme-product-main-image > .theme-product-main-img,
.theme-product-main-image > #product-main-img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
}
.theme-product-main-img { display: block; }
.theme-product-main-image__frame { position: absolute; inset: 0.75rem; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); pointer-events: none; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border: 2px solid color-mix(in srgb, var(--color-primary) 25%, transparent); opacity: 0.6; transition: opacity 0.3s, border-color 0.3s; padding: 0; background: var(--color-secondary); }
.theme-product-thumb-img { display: block; }
.theme-product-thumb:hover, .theme-product-thumb.is-active { opacity: 1; border-color: var(--color-primary); }

.theme-product-info__cat-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-primary); font-weight: 500; }
.theme-product-info__story { font-size: 2.25rem; line-height: 1; margin-top: 1rem; color: var(--color-accent); }
@media (min-width: 768px) { .theme-product-info__story { font-size: 3rem; } }
.theme-product-info__title.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-top: 0.75rem;
	margin-bottom: 1rem;
	line-height: 1.1;
}
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.25rem; } }
.theme-product-info__price {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	color: var(--color-accent);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem;
}
.theme-product-info__price .woocommerce-Price-amount { color: inherit; }
.theme-product-info__price-breakdown {
	font-size: 0.875rem;
	font-weight: 400;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.theme-product-info__stock { font-size: 0.9rem; margin-bottom: 1rem; font-weight: 500; }
.theme-product-info__stock.is-out-of-stock { color: var(--color-destructive); }
.theme-product-info__notes { font-size: 0.9rem; font-style: italic; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 1.5rem; }
.theme-product-info__description {
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	line-height: 1.6;
	margin-bottom: 2rem;
	overflow-wrap: break-word;
	word-break: break-word;
	white-space: pre-line;
}
.theme-product-info__description p { margin-bottom: 1rem; }

.theme-product-note { margin: 0 0 1.5rem; }
.theme-product-note__label { display: block; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.theme-product-note__input {
	width: 100%; padding: 0.75rem 1rem;
	background: var(--color-background);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	font-size: 0.875rem; color: var(--color-foreground);
}
.theme-product-note__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-product-note__input:focus { outline: none; border-color: var(--color-primary); }

.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); }
.theme-qty-minus, .theme-qty-plus { padding: 0.85rem 1rem; transition: background-color 0.3s; display: inline-flex; align-items: center; justify-content: center; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	width: 3rem; min-width: 3rem; text-align: center;
	background: transparent; border: none; color: var(--color-foreground);
	-moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-product-info__ingredient-note { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin: 0 0 2rem; line-height: 1.6; }
.theme-product-info__ingredient-note svg { flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }

.theme-product-info__details { border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); padding-top: 2rem; margin-top: 0; }
.theme-product-info__details-heading { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.theme-product-info__details-body ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-info__details-body li { display: flex; align-items: flex-start; font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-product-info__details-body li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); margin: 7px 0.75rem 0 0; flex-shrink: 0; }

.woocommerce-product-details__short-description.posted_in,
.single-product .posted_in { margin-top: 1.5rem; font-size: 0.8rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); overflow-wrap: break-word; word-break: break-word; }
.posted_in a { color: var(--color-primary); }

.theme-related-products { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
.theme-related-products__heading { font-size: 1.5rem; margin-bottom: 2.5rem; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-related-products__heading { font-size: 1.75rem; } }
.theme-related-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-related-products__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.variations.shop_attributes tbody, .variations tbody tr, .variations tbody td { display: block; width: 100%; }
.variations tbody td.label { padding-bottom: 0.25rem; }
.variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }

.single-product .theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0 0 2rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.single-product .single_add_to_cart_button.is-added {
	pointer-events: none;
}
.single-product .single_add_to_cart_button__icon {
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
}

/* ==========================================================================
   SECTION 11.4.1 — ADD TO CART BUTTON STYLE OVERRIDE (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;
	box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 35%, transparent) !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;
	box-shadow: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Section 11.4.2 — hide WooCommerce's injected "View cart" link. */
.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 (Section 14.1) — scoped hiding only
   ========================================================================== */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
.shop-archive-page .woocommerce-message,
.shop-archive-page .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	background: var(--color-card);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	color: var(--color-foreground);
	padding: 1rem 1.5rem;
	border-radius: var(--radius);
	list-style: none;
	font-size: 0.9rem;
}
.woocommerce-error { border-color: var(--color-destructive); }

/* ==========================================================================
   OFF-CANVAS CART DRAWER (Section 12)
   ========================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 90;
	background: color-mix(in srgb, var(--color-background) 60%, transparent);
	backdrop-filter: blur(4px);
	opacity: 0; visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s 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;
	background: var(--color-card);
	border-left: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	z-index: 91;
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.5s var(--transition-smooth);
	box-shadow: -24px 0 70px -24px color-mix(in srgb, var(--color-primary) 45%, transparent), -8px 0 30px -12px rgba(0,0,0,0.85);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
.theme-cart-drawer__script { font-size: 1.5rem; line-height: 1; color: var(--color-accent); }
.theme-cart-drawer__title { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin-top: 0.25rem; }
.theme-cart-drawer__close { padding: 0.25rem; transition: color 0.3s; }
.theme-cart-drawer__close:hover { color: var(--color-primary); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon { width: 3rem; height: 3rem; color: color-mix(in srgb, var(--color-primary) 70%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty-text { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 1.5rem; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 5rem; height: 6rem; background: var(--color-secondary); border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); overflow: hidden; flex-shrink: 0; position: relative; display: block; }
#theme-cart-drawer .theme-cart-item__image > img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: center;
}
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.3s; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__variation, .theme-cart-item__note { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 2px; }
.theme-cart-item__note { font-style: italic; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-accent); margin-top: 2px; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color 0.3s; }
.theme-cart-item__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); transition: color 0.3s; }
.theme-cart-item__remove:hover { color: var(--color-primary); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal-value { font-weight: 500; color: var(--color-accent); }
.theme-cart-drawer__ship-note { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__checkout-btn { width: 100%; }

/* ==========================================================================
   SHOP ARCHIVE
   ========================================================================== */
.shop-archive-page { padding-top: 8rem; }
.shop-archive-page .page-title { padding-top: 0; }

/* ==========================================================================
   WOOCOMMERCE CHECKOUT BLOCK (Section 13)
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .page-title { }

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent);
	background: var(--color-background);
	border-radius: var(--radius);
}
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-text-input input:focus-visible {
	outline: none;
	border-color: var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	box-shadow: 0 0 0 2px var(--color-card);
	color: var(--color-button-text);
}
body.woocommerce-checkout .wc-block-components-order-summary-item__quantity span {
	color: var(--color-button-text);
}
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;
	font-family: var(--font-body) !important;
	text-transform: none !important;
	border: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout h2, body.woocommerce-checkout h3 {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   CART / MY ACCOUNT WIDTH PARITY (Section 13.7)
   ========================================================================== */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { padding-top: 0; }

/* ==========================================================================
   THANK YOU PAGE (Section 22.8)
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { color: var(--color-foreground); }
body.theme-thankyou-page .woocommerce-order-overview {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 1.5rem;
	margin: 1.5rem 0;
	background: var(--color-card);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	margin: 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	padding: 0.75rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* ==========================================================================
   RESPONSIVE POLISH (Lovable parity: px-6 mobile / px-10 tablet+)
   ========================================================================== */
.site-main,
.entry-content,
.page-shell {
	min-width: 0;
	max-width: 100%;
}

@media (max-width: 1023px) {
	.theme-section__pad { padding-block: 4rem; }
	.theme-section__pad-bottom-0 { padding-top: 4rem; }

	.category-card__content { padding-inline: 1.5rem; }
	.pillar-card { padding: 1.5rem; }
	.shop-filter-bar { padding: 1rem; }
	.testimonial-card {
		width: min(85vw, calc(100vw - (var(--page-gutter) * 2)));
		margin-inline: 0.5rem;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 1.5rem;
	}
	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding-inline: 0;
	}

	.hero-section__title {
		font-size: clamp(2rem, 9vw, 2.5rem);
		overflow-wrap: anywhere;
	}
	.hero-section__ctas .btn { width: 100%; max-width: 100%; }
}

@media (max-width: 639px) {
	.theme-product-thumbnails { grid-template-columns: repeat(4, 1fr); }
	.categories-section__heading,
	.pillars-section__heading,
	.shop-section__heading,
	.about-section__heading { font-size: 2rem; }
	.theme-header-cta--mobile { margin-top: 1rem; }
}
