/* ==========================================================================
   IntuiTerra theme stylesheet
   Colors are emitted as CSS variables by wp_add_inline_style() (see
   functions.php / inc/defaults.php). The hex fallbacks below match the
   Customizer defaults exactly (Section 6.1) so the page still renders
   correctly before that inline block loads.
   ========================================================================== */

:root {
	--color-background: #f8f6f1;
	--color-foreground: #1e2920;
	--color-card: #fcfbf8;
	--color-primary: #2d3e2f;
	--color-primary-foreground: #faf8f5;
	--color-secondary: #f0ece5;
	--color-muted: #e9e4dd;
	--color-muted-foreground: #59695b;
	--color-accent: #c48b73;
	--color-accent-foreground: #1a281c;
	--color-border: #e0dad1;
	--color-destructive: #b24538;
	--color-destructive-foreground: #faf8f5;
	--color-dark-bg: #151e16;
	--color-button-text: var(--color-primary-foreground);

	/* Decorative, non-editable derived tokens (Section 6: not exposed as controls). */
	--color-sand: #dcd3c6;
	--color-sage: #8da088;
	--color-moss: #465d46;
	--color-ochre: #c5a57d;
	--color-dark-card: #1c261e;
	--color-clay: #c48671;

	--logo-height: 56px;
	--radius: 0.5rem;
	--shadow-soft: 0 8px 26px -16px rgba(30, 41, 32, 0.22);
	--shadow-elevated: 0 26px 60px -26px rgba(30, 41, 32, 0.30);

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Jost', system-ui, -apple-system, sans-serif;

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.02em;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--header-height: 80px;
	--checkout-gap: 2rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
}

.theme-dark {
	--color-background: var(--color-dark-bg);
	--color-foreground: #f6f4ee;
	--color-card: var(--color-dark-card);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.product-main-img):not(.theme-cart-drawer__item-image img) {
	max-width: 100%;
	height: auto;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: inherit;
	margin: 0;
	letter-spacing: -0.005em;
}
.font-display { font-family: var(--font-display); font-weight: 600; font-size: inherit; }
p { margin: 0; }
input, textarea, select { font-family: inherit; font-size: 15px; }

section[id] { scroll-margin-top: 104px; }

a, button, [role="button"] {
	transition: color 300ms cubic-bezier(0.22, 1, 0.36, 1),
		background-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 350ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 300ms ease;
}
.icon-pop, .icon-spin, .icon-swing, .icon-nudge, .theme-icon { transition: transform 400ms cubic-bezier(0.34,1.56,0.64,1), color 300ms ease; will-change: transform; }
a:hover .icon-pop, button:hover .icon-pop, .icon-pop:hover { transform: translateY(-2px) rotate(-8deg) scale(1.16); }
.icon-spin { transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
a:hover .icon-spin, button:hover .icon-spin { transform: rotate(180deg) scale(1.12); }
@keyframes icon-swing { 0% { transform: rotate(0) scale(1); } 25% { transform: rotate(-12deg) scale(1.14); } 55% { transform: rotate(9deg) scale(1.12); } 80% { transform: rotate(-4deg) scale(1.06); } 100% { transform: rotate(0) scale(1.08); } }
.group:hover .icon-swing, a:hover .icon-swing, button:hover .icon-swing { animation: icon-swing 700ms cubic-bezier(0.34, 1.56, 0.64, 1); }
a:hover .icon-nudge, button:hover .icon-nudge { transform: translateX(5px) scale(1.1); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container-wide { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container-wide { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }

.eyebrow { font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; }
.italic-accent {
	font-style: italic;
	background: linear-gradient(120deg, hsl(18 41% 61%), hsl(34 38% 63%) 55%, hsl(107 11% 58%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Section headings — Lovable: font-display text-4xl md:text-5xl lg:text-[3.6rem] leading-[1.05] */
.section-heading,
.about-section__heading,
.services-section__heading,
.shop-heading,
.faq-heading,
.contact-title,
.wellness-section__heading {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 2.25rem;
	line-height: 1.05;
	color: var(--color-foreground);
}
@media (min-width: 768px) {
	.section-heading,
	.about-section__heading,
	.services-section__heading,
	.shop-heading,
	.faq-heading,
	.contact-title,
	.wellness-section__heading { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.section-heading,
	.about-section__heading,
	.services-section__heading,
	.shop-heading,
	.faq-heading,
	.contact-title,
	.wellness-section__heading { font-size: 3.6rem; }
}

/* Reviews heading — Lovable: text-4xl md:text-5xl leading-tight (no lg bump) */
.reviews-section__heading {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 2.25rem;
	line-height: 1.25;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .reviews-section__heading { font-size: 3rem; } }

/* Secondary section headings */
.about-section__heading2 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1.15;
	margin-bottom: 1.75rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .about-section__heading2 { font-size: 2.6rem; } }

.pillar-card__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.375;
	margin-bottom: 0.5rem;
	color: var(--color-foreground);
	transition: color 300ms ease;
}

.related-products-section__heading {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1.2;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }

.theme-light { background-color: var(--color-background); color: var(--color-foreground); }
.theme-light, .theme-dark { padding-top: 6rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .theme-light, .theme-dark { padding-top: 8rem; padding-bottom: 8rem; } }
.hero-section.theme-dark,
.precontact-section.theme-dark,
.site-footer.theme-dark { padding-top: 0; padding-bottom: 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	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);
	height: var(--btn-height);
	padding: var(--btn-padding);
	border: 1px solid transparent;
	transition: transform 320ms cubic-bezier(0.34,1.56,0.64,1), box-shadow 320ms ease, opacity 200ms ease, background-color 300ms ease, color 300ms ease, border-color 300ms ease;
	cursor: pointer;
}
.btn:hover { transform: scale(1.02) translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn.disabled, .btn:disabled { opacity: 0.5; pointer-events: none; cursor: not-allowed; }

.btn-primary, .btn-hero-primary { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); text-transform: none; }
.btn-primary:hover { background-color: var(--color-primary); opacity: 0.9; }
.btn-accent { background-color: var(--color-accent); color: var(--color-accent-foreground); border-color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.12em; box-shadow: var(--shadow-elevated); }
.btn-accent:hover { background-color: var(--color-accent); opacity: 0.9; }
.btn-outline, .btn-hero-outline { background-color: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); text-transform: none; }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn-glass-outline { background: rgba(255,255,255,0.10); backdrop-filter: blur(6px); color: #fff; border-color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.12em; }
.btn-glass-outline:hover { background: #fff; color: var(--color-primary); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--color-foreground); opacity: 0.7; }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); opacity: 1; }
.btn-lg { height: 3.25rem; padding: 0 2rem; }

/* ==========================================================================
   Cards / hovers / lift
   ========================================================================== */
.lift-card { transition: transform 500ms cubic-bezier(0.22,1,0.36,1), box-shadow 500ms cubic-bezier(0.22,1,0.36,1), border-color 400ms ease; }
.lift-card:hover { transform: translateY(-6px) scale(1.012); box-shadow: var(--shadow-elevated), 0 0 0 1px color-mix(in srgb, var(--color-accent) 35%, transparent); border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); }

.magnetic {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}
.magnetic::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
	transform: translateX(-120%);
	transition: transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.magnetic:hover::after { transform: translateX(120%); }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fade-in 700ms ease-out both; }
.animate-slide-in-bottom { animation: slide-in-bottom 900ms cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ==========================================================================
   Scroll reveal (AOS-equivalent). Fallback for Customizer preview and
   no-IntersectionObserver contexts is mandatory (Section 2.1 / 4.2.2).
   ========================================================================== */
[data-aos], .reveal-item, .scale-in-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
[data-aos].is-revealed, .reveal-item.is-visible, .scale-in-item.is-visible {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}
body.is-customizer [data-aos],
body.is-customizer .reveal-item,
body.is-customizer .scale-in-item {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	[data-aos], .reveal-item, .scale-in-item { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@keyframes marquee-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.marquee-track { width: max-content; animation: marquee-scroll 45s linear infinite; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

.skeleton-shimmer { background: linear-gradient(90deg, var(--color-muted) 0%, var(--color-secondary) 50%, var(--color-muted) 100%); background-size: 200% 100%; animation: shimmer 1.6s linear infinite; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	width: 100%;
	border-bottom: 1px solid transparent;
	background-color: transparent;
	transition: background-color 500ms ease-out, border-color 500ms ease-out, box-shadow 500ms ease-out;
	--logo-ink: #ffffff;
	--logo-ring: rgba(255,255,255,0.55);
	--logo-leaf: rgba(255,255,255,0.18);
}
.site-header.is-solid {
	background-color: var(--color-background);
	border-color: var(--color-border);
	box-shadow: var(--shadow-soft);
	--logo-ink: var(--color-primary);
	--logo-ring: #8F9E8B;
	--logo-leaf: rgba(143,158,139,0.22);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; }
@media (min-width: 1024px) { .site-header__inner { height: 5rem; } }
.site-header__left { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.site-header__burger { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; border: none; background: transparent; color: #fff; }
.site-header.is-solid .site-header__burger { color: var(--color-primary); }
.site-header__burger:hover { background: color-mix(in srgb, currentColor 12%, transparent); }
.site-header__burger-icon-close { display: none; }
.site-header__burger.is-open .site-header__burger-icon-menu { display: none; }
.site-header__burger.is-open .site-header__burger-icon-close { display: inline-flex; }
@media (min-width: 1024px) { .site-header__burger { display: none; } }

.site-header__brand { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.site-logo-wrap { display: flex; align-items: center; height: var(--logo-height); flex-shrink: 0; }
.site-logo-wrap .brand-mark { height: 100%; width: auto; }
.brand-mark { height: 2.75rem; width: auto; flex-shrink: 0; transition: transform 500ms ease-out; }
@media (min-width: 1024px) { .site-logo-wrap { height: var(--logo-height); } .brand-mark { height: 100%; } }
.site-header__brand:hover .brand-mark { transform: scale(1.05); }
.site-header__brand-text { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.2em; white-space: nowrap; color: #fff; transition: color 500ms ease; text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
.site-header.is-solid .site-header__brand-text { color: var(--color-primary); text-shadow: none; }
@media (min-width: 1024px) { .site-header__brand-text { font-size: 1.4rem; } }
.site-logo-img { height: 100% !important; width: auto !important; max-height: 100%; display: block; }

.site-header__nav { display: none; }
@media (min-width: 1024px) { .site-header__nav { display: flex; flex: 1; justify-content: center; min-width: 0; } }
.theme-nav-list { display: flex; align-items: center; gap: 0.25rem; }
.theme-nav-list .menu-item a, .theme-nav-list li a {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 999px;
	white-space: nowrap;
	color: rgba(255,255,255,0.8);
	text-shadow: 0 1px 10px rgba(0,0,0,0.45);
	transition: color 300ms ease;
}
@media (min-width: 1280px) { .theme-nav-list .menu-item a, .theme-nav-list li a { padding: 0.5rem 1rem; } }
.theme-nav-list .menu-item a::after, .theme-nav-list li a::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.25rem;
	height: 1px;
	border-radius: 999px;
	background: #fff;
	opacity: 0;
	transform: scaleX(0.5);
	transition: opacity 300ms ease-out, transform 300ms ease-out;
}
@media (min-width: 1280px) { .theme-nav-list .menu-item a::after, .theme-nav-list li a::after { left: 1rem; right: 1rem; } }
.site-header.is-solid .theme-nav-list .menu-item a::after, .site-header.is-solid .theme-nav-list li a::after { background: var(--color-accent); }
.theme-nav-list .menu-item.is-spy-active > a, .theme-nav-list li.is-spy-active > a,
.theme-nav-list .current-menu-item > a { color: #fff; }
.theme-nav-list .menu-item.is-spy-active > a::after, .theme-nav-list li.is-spy-active > a::after,
.theme-nav-list .current-menu-item > a::after { opacity: 1; transform: scaleX(1); }
.site-header.is-solid .theme-nav-list .menu-item a, .site-header.is-solid .theme-nav-list li a { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); text-shadow: none; }
.theme-nav-list .menu-item a:hover, .theme-nav-list li a:hover { color: #fff; }
.site-header.is-solid .theme-nav-list .menu-item a:hover, .site-header.is-solid .theme-nav-list li a:hover { color: var(--color-primary); }
.site-header.is-solid .theme-nav-list .menu-item.is-spy-active > a, .site-header.is-solid .theme-nav-list li.is-spy-active > a,
.site-header.is-solid .theme-nav-list .current-menu-item > a { color: var(--color-primary); }

.site-header__right { display: flex; align-items: center; gap: 0.5rem; }
.site-header__cta { display: none; height: 2.5rem; padding: 0 1.25rem; border-radius: 999px; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; align-items: center; border: 1px solid rgba(255,255,255,0.7); color: #fff; }
@media (min-width: 1280px) { .site-header__cta { display: inline-flex; } }
.site-header.is-solid .site-header__cta { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.site-header__cta:hover { background-color: #fff; color: var(--color-primary); }
.site-header.is-solid .site-header__cta:hover { opacity: 0.9; }

.site-header__cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 50%; border: none; background: transparent; color: #fff; }
.site-header.is-solid .site-header__cart { color: var(--color-primary); }
.site-header__cart:hover { background: color-mix(in srgb, currentColor 12%, transparent); }
.site-header__cart .theme-cart-count {
	position: absolute; top: -2px; right: -2px;
	min-width: 19px; height: 19px; padding: 0 4px;
	border-radius: 999px; display: flex; align-items: center; justify-content: center;
	background: var(--color-accent); color: var(--color-accent-foreground);
	font-size: 14px; font-weight: 600;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile { display: none; border-top: 1px solid var(--color-border); background: var(--color-background); }
.site-header__mobile.is-open { display: block; animation: fade-in 300ms ease-out both; }
.theme-nav-list--mobile { display: flex; flex-direction: column !important; align-items: stretch !important; padding: 0.5rem 0; }
.theme-nav-list--mobile li a { display: block; padding: 0.9rem 1.25rem; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); border-bottom: 1px solid var(--color-border); text-shadow: none; }
.theme-nav-list--mobile li:last-child a { border-bottom: none; }
.theme-nav-list--mobile li a:hover { color: var(--color-primary); transform: translateX(4px); }
@media (min-width: 1024px) { .site-header__mobile { display: none !important; } }

/* Home hero must fill the viewport under the fixed transparent header. */
.site-main { padding-top: var(--header-height); }
body.theme-no-hero .site-main { padding-top: var(--header-height); }
.hero-section { padding-top: 0; }
body:not(.theme-no-hero) .site-main:has(.hero-section) { padding-top: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #141C16; }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(20,28,22,0.52) 0%, rgba(20,28,22,0.34) 45%, rgba(20,28,22,0.60) 100%); }
.hero-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-block: 8rem 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-block: 10rem 8rem; } }
.hero-section__badge-row { display: flex; justify-content: center; margin-bottom: 1.75rem; animation: fade-in 700ms ease-out both; }
.hero-section__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; backdrop-filter: blur(4px); transition: all 500ms ease-out; }
.hero-section__badge:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); transform: scale(1.03); }
.hero-section__title { font-family: var(--font-display); font-weight: 600; color: #fff; line-height: 1.02; margin: 0 auto; max-width: 64rem; font-size: clamp(2.75rem, 8vw, 6rem); filter: drop-shadow(0 2px 20px rgba(0,0,0,0.45)); animation: slide-in-bottom 900ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-section__title-line2 {
	font-style: italic;
	background: linear-gradient(120deg, hsl(18 41% 61%), hsl(34 38% 63%) 55%, hsl(107 11% 58%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-section__subtitle { margin: 1.75rem auto 0; max-width: 42rem; font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.625; filter: drop-shadow(0 1px 10px rgba(0,0,0,0.4)); animation: slide-in-bottom 900ms cubic-bezier(0.22, 1, 0.36, 1) both 120ms; }
@media (min-width: 640px) { .hero-section__subtitle { font-size: 18px; } }
.hero-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; animation: slide-in-bottom 900ms cubic-bezier(0.22, 1, 0.36, 1) both 240ms; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; gap: 1rem; } }

/* ==========================================================================
   About section
   ========================================================================== */
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section__col { display: flex; flex-direction: column; min-width: 0; }
@media (min-width: 1024px) { .about-section__col--right { padding-left: 1.5rem; } }
.about-section__intro { margin-top: 1.25rem; font-size: 16px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.625; max-width: 24rem; }
.about-section__quote { margin-top: 2.5rem; }
.about-section__quote blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.25; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); }
@media (min-width: 768px) { .about-section__quote blockquote { font-size: 2rem; } }
.about-section__quote figcaption { margin-top: 1rem; font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.about-section__callout-wrap { margin-top: auto; padding-top: 2.5rem; }
.about-section__callout { border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-card); padding: 1.25rem; box-shadow: var(--shadow-soft); }
.about-section__callout-label { font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); margin-bottom: 0.4rem; }
.about-section__callout-text { font-size: 15px; }
.about-section__narrative { display: flex; flex-direction: column; gap: 1.25rem; font-size: 16px; line-height: 1.8; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); flex: 1; }
.about-section__emphasis { font-family: var(--font-display); color: color-mix(in srgb, var(--color-foreground) 90%, transparent); font-size: 1.25rem; font-style: italic; }
@media (min-width: 768px) { .about-section__emphasis { font-size: 1.5rem; } }
.about-section__features { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; border-top: 1px solid var(--color-border); padding-top: 2rem; }
@media (max-width: 639px) { .about-section__features { grid-template-columns: 1fr; } }
.about-feature { min-width: 0; }
.about-feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: var(--radius); margin-bottom: 0.75rem; background: var(--color-secondary); border: 1px solid var(--color-border); color: var(--color-primary); }
.about-feature__value { font-family: var(--font-display); font-size: 1.25rem; }
@media (min-width: 768px) { .about-feature__value { font-size: 1.5rem; } }
.about-feature__label { margin-top: 0.1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.about-feature__line { margin-top: 0.75rem; display: block; height: 1px; width: 1.75rem; background: color-mix(in srgb, var(--color-accent) 40%, transparent); transition: all 500ms ease-out; }
.about-feature:hover .about-feature__line { width: 4rem; background: var(--color-accent); }

/* ==========================================================================
   Mantra marquee — matches src/components/sections/MantraMarquee.tsx
   ========================================================================== */
.mantra-section {
	position: relative;
	overflow: hidden;
	padding: 1.75rem 0;
	background: linear-gradient(100deg, hsl(128 18% 14%), hsl(120 14% 22%) 50%, hsl(128 18% 14%));
}
@media (min-width: 768px) { .mantra-section { padding: 2.5rem 0; } }
.mantra-section__fade { position: absolute; inset-block: 0; width: 4rem; z-index: 10; pointer-events: none; }
@media (min-width: 768px) { .mantra-section__fade { width: 8rem; } }
.mantra-section__fade--left { left: 0; background: linear-gradient(to right, hsl(128 18% 14%), transparent); }
.mantra-section__fade--right { right: 0; background: linear-gradient(to left, hsl(128 18% 14%), transparent); }
.mantra-section__track { display: flex; align-items: center; gap: 2.5rem; white-space: nowrap; }
@media (min-width: 768px) { .mantra-section__track { gap: 4rem; } }
.mantra-section__item { display: flex; align-items: center; gap: 2.5rem; flex-shrink: 0; }
@media (min-width: 768px) { .mantra-section__item { gap: 4rem; } }
.mantra-section__phrase {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	color: rgba(255, 255, 255, 0.95);
	font-size: clamp(1.25rem, 3.2vw, 2.6rem);
}
.mantra-section__dot {
	display: inline-block;
	border-radius: 999px;
	flex-shrink: 0;
	background: var(--color-clay);
	width: clamp(6px, 0.6vw, 10px);
	height: clamp(6px, 0.6vw, 10px);
}

/* ==========================================================================
   Services / philosophy pillars
   ========================================================================== */
.services-section { position: relative; overflow: hidden; }
.services-section__glow { pointer-events: none; position: absolute; left: -8rem; top: 33%; width: 24rem; height: 24rem; border-radius: 999px; opacity: 0.2; filter: blur(60px); background: radial-gradient(circle, var(--color-sage), transparent 70%); }
.services-section__intro { max-width: 48rem; margin-bottom: 3.5rem; position: relative; }
.services-section__intro-text { margin-top: 1.25rem; font-size: 16px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.625; }
.services-section__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-section__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-section__grid { grid-template-columns: repeat(4, 1fr); } }

.pillar-card { position: relative; height: 100%; display: flex; flex-direction: column; background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-soft); overflow: hidden; transition: border-color 500ms ease-out, box-shadow 500ms ease-out, transform 500ms ease-out; cursor: pointer; }
@media (min-width: 768px) { .pillar-card { padding: 1.75rem; } }
.pillar-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); transform: translateY(-8px); }
.pillar-card:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.pillar-card__top-line { position: absolute; inset-inline: 0; top: 0; height: 1px; background: var(--color-accent); opacity: 0; transition: opacity 500ms ease; }
.pillar-card:hover .pillar-card__top-line { opacity: 1; }
.pillar-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: var(--radius); margin-bottom: 1.25rem; background: var(--color-secondary); border: 1px solid var(--color-border); color: var(--color-primary); transition: transform 500ms ease-out; }
.pillar-card:hover .pillar-card__icon { transform: scale(1.05); color: var(--color-accent); }
.pillar-card:hover .pillar-card__title { color: var(--color-primary); }
.pillar-card__text { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); flex: 1; }
.pillar-card__line { margin-top: 1.5rem; display: block; height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-accent) 50%, transparent); transition: all 500ms ease-out; }
.pillar-card:hover .pillar-card__line { width: 5rem; background: var(--color-accent); }

/* ==========================================================================
   Shop section
   ========================================================================== */
.shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-section__intro-text { margin-top: 1.25rem; font-size: 16px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.625; max-width: 36rem; }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.shop-section__search input { width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem; border-radius: 999px; background: var(--color-secondary); border: 1px solid var(--color-border); font-size: 15px; color: var(--color-foreground); }
.shop-section__search input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search input:focus { outline: none; border-color: var(--color-primary); }

.shop-section__tabs { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 3rem; }
.shop-cat-filter { height: 2.5rem; padding: 0 1.25rem; border-radius: 999px; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: transform 320ms cubic-bezier(0.34,1.56,0.64,1), border-color 300ms ease, color 300ms ease, background-color 300ms ease; }
.shop-cat-filter:hover { border-color: var(--color-accent); color: var(--color-accent); }
.shop-cat-filter.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); box-shadow: var(--shadow-soft); }

.shop-section__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__more { margin-top: 3.5rem; display: flex; justify-content: center; }
.shop-section__more .btn-outline { text-transform: uppercase; letter-spacing: 0.12em; }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); row-gap: 3rem; } }
.theme-shop-card--hidden { display: none !important; }
.theme-shop-card--filtered { display: none !important; }

/* ==========================================================================
   Product card — matches src/components/product/ProductCard.tsx
   ========================================================================== */
.theme-product-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 0.75rem;
	border: 1px solid var(--color-border);
	background: var(--color-card);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1), border-color 400ms ease;
}
.theme-product-card:hover {
	transform: translateY(-6px) scale(1.012);
	box-shadow: var(--shadow-elevated), 0 0 0 1px color-mix(in srgb, var(--color-accent) 35%, transparent);
	border-color: color-mix(in srgb, var(--color-accent) 60%, transparent);
}
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); }
.theme-product-card__media-link {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
}
.theme-product-card__image, .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.06); }
.theme-product-card__scrim {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
	opacity: 0;
	transition: opacity 500ms ease;
}
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-card__badge {
	position: absolute;
	top: 0.75rem;
	font-size: 14px;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	z-index: 4;
	pointer-events: none;
}
.theme-product-card__badge--size { left: 0.75rem; background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__badge--oos { right: 0.75rem; background: var(--color-destructive); color: var(--color-destructive-foreground); }
.theme-product-card__hover-actions {
	position: absolute;
	inset-inline: 0.75rem;
	bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	opacity: 0;
	transition: opacity 500ms ease-out;
	z-index: 5;
}
.theme-product-card:hover .theme-product-card__hover-actions { opacity: 1; }
.btn-quick-add {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: var(--color-accent);
	color: var(--color-accent-foreground);
	border: none;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(30, 41, 32, 0.12);
	transition: background-color 300ms ease, opacity 300ms ease, transform 300ms ease;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	cursor: pointer;
}
.btn-quick-add:hover { background: color-mix(in srgb, var(--color-accent) 90%, transparent); opacity: 1; }
.btn-quick-add:active { transform: scale(0.97); }
.btn-quick-add.theme-btn-loading { opacity: 0.6; pointer-events: none; cursor: wait; }
.theme-product-card__quickview {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	box-shadow: 0 1px 3px rgba(30, 41, 32, 0.12);
	text-decoration: none;
	transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}
.theme-product-card__quickview:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
.theme-product-card__cat { font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.375rem; }
.theme-product-card__title { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; line-height: 1.375; margin: 0; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.5rem; } }
.theme-product-card__title-link { color: var(--color-foreground); text-decoration: none; transition: color 300ms ease; }
.theme-product-card:hover .theme-product-card__title-link { color: var(--color-primary); }
.theme-product-card__variants { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; position: relative; z-index: 2; }
.variant-pill {
	height: 2rem;
	padding: 0 0.875rem;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	font-size: 14px;
	letter-spacing: 0.08em;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	background: transparent;
	cursor: pointer;
	transition: border-color 300ms ease-out, color 300ms ease-out, background-color 300ms ease-out;
}
.variant-pill:hover:not(:disabled) { border-color: var(--color-accent); color: var(--color-accent); }
.variant-pill.is-active { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-primary-foreground); }
.variant-pill:disabled { opacity: 0.4; cursor: not-allowed; }
.theme-product-card__price, .product-price { margin-top: auto; padding-top: 0.75rem; font-size: 16px; font-weight: 500; color: var(--color-primary); }
.theme-product-card__price .woocommerce-Price-amount, .product-price .woocommerce-Price-amount { font-weight: 500; }
.theme-product-card__price del, .product-price del { opacity: 0.5; margin-right: 0.4rem; font-weight: 400; }

/* Add-to-cart WooCommerce 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;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact quick-add button overrides the global rules above. */
.theme-product-card .theme-quick-add.btn-quick-add {
	min-height: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0 1rem !important;
	border-radius: 999px !important;
}

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

/* WooCommerce notices - scoped visibility only (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: 80rem; margin: 1rem auto; padding: 1rem 1.5rem; border-radius: var(--radius);
	background: var(--color-secondary); color: var(--color-foreground); border-left: 3px solid var(--color-accent);
	list-style: none; font-size: 15px;
}
.woocommerce-error { border-left-color: var(--color-destructive); }

/* ==========================================================================
   Reviews / testimonials marquee
   ========================================================================== */
.reviews-section__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.5rem; }
.reviews-marquee { position: relative; padding: 2.5rem 0; overflow-x: clip; overflow-y: visible; }
@media (min-width: 768px) { .reviews-marquee { padding: 3.5rem 0; } }
.reviews-marquee__fade { position: absolute; inset-block: 0; width: 4rem; z-index: 10; pointer-events: none; }
@media (min-width: 768px) { .reviews-marquee__fade { width: 6rem; } }
.reviews-marquee__fade--left { left: 0; background: linear-gradient(to right, var(--color-background), transparent); }
.reviews-marquee__fade--right { right: 0; background: linear-gradient(to left, var(--color-background), transparent); }
.reviews-marquee__track { display: flex; gap: 1.5rem; align-items: stretch; }
.reviews-marquee:hover .reviews-marquee__track { animation-play-state: paused; }
.review-card { flex-shrink: 0; width: 300px; transition: transform 500ms ease-out, filter 500ms ease-out, opacity 500ms ease-out; }
@media (min-width: 640px) { .review-card { width: 340px; } }
@media (min-width: 768px) { .review-card { width: 380px; } }
.reviews-marquee:hover .review-card { opacity: 0.6; filter: blur(2px); }
.review-card:hover { opacity: 1 !important; filter: none !important; transform: scale(1.03); z-index: 20; }
.review-card__inner, .review-card { height: 100%; }
.review-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; box-shadow: var(--shadow-soft); transition: border-color 500ms ease, box-shadow 500ms ease, transform 500ms ease-out, filter 500ms ease-out, opacity 500ms ease-out; }
.review-card:hover { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-elevated); }
.review-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.review-card__stars { display: flex; gap: 0.15rem; color: var(--color-accent); }
.review-card__quote-icon { color: color-mix(in srgb, var(--color-accent) 40%, transparent); }
.review-card__text { font-size: 17px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); flex: 1; }
@media (min-width: 768px) { .review-card__text { font-size: 18px; } }
.review-card__footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); }
.review-card__name { font-size: 15px; font-weight: 500; }
.review-card__product { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.1rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section__head { max-width: 42rem; margin: 0 auto; text-align: center; }
.faq-section__intro { margin-top: 1.25rem; font-size: 16px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; }
.faq-section__list { margin: 3rem auto 0; max-width: 48rem; display: flex; flex-direction: column; gap: 0.875rem; }
@media (min-width: 768px) { .faq-section__list { margin-top: 3.5rem; } }
.faq-item { border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-secondary); transition: transform 500ms ease-out, box-shadow 500ms ease-out, border-color 400ms ease; }
.faq-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.faq-item.is-open { border-color: color-mix(in srgb, var(--color-accent) 60%, transparent); box-shadow: var(--shadow-soft); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.25rem 1.75rem; background: transparent; border: none; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.35; color: var(--color-foreground); transition: color 300ms ease; }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.45rem; } }
.faq-item.is-open .faq-item__question span:first-child { color: var(--color-primary); }
.faq-item:hover .faq-item__question span:first-child { color: var(--color-primary); }
.faq-item__chevron { flex-shrink: 0; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); transition: transform 500ms cubic-bezier(0.34,1.56,0.64,1), color 500ms ease; }
.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); color: var(--color-accent); }
.faq-item:hover .faq-item__chevron { color: var(--color-accent); transform: scale(1.1); }
.faq-item.is-open:hover .faq-item__chevron { transform: rotate(180deg) scale(1.1); }
.faq-item__panel { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 500ms cubic-bezier(0.22,1,0.36,1); }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel p { padding: 0 1.75rem 1.5rem; font-size: 15px; line-height: 1.8; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* ==========================================================================
   Pre-contact CTA
   ========================================================================== */
.precontact-section { position: relative; overflow: hidden; background: #141C16; display: flex; align-items: center; min-height: 680px; }
@media (min-width: 768px) { .precontact-section { min-height: 85vh; } }
@media (min-width: 1024px) { .precontact-section { min-height: 100vh; } }
.precontact-section__video { position: absolute; inset: 0; width: 100%; height: 100%; min-width: 100%; min-height: 100%; object-fit: cover; object-position: center; pointer-events: none; transform: scale(1.02); }
.precontact-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(20,28,22,0.48) 0%, rgba(20,28,22,0.34) 50%, rgba(20,28,22,0.56) 100%); }
.precontact-section__content { position: relative; z-index: 10; padding-block: 6rem; text-align: center; text-shadow: 0 2px 10px rgba(0,0,0,0.45); color: #fff; }
@media (min-width: 768px) { .precontact-section__content { padding-block: 9rem; } }
.precontact-section__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; }
.precontact-section__rule { height: 1px; width: 2rem; background: rgba(255,255,255,0.5); }
.precontact-section__heading { font-family: var(--font-display); font-weight: 600; color: #fff; line-height: 1.05; margin: 0 auto; max-width: 56rem; font-size: clamp(2rem, 5.2vw, 3.8rem); }
.precontact-section__text { margin-top: 1.5rem; max-width: 36rem; margin-inline: auto; font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.precontact-section__cta { margin-top: 2.25rem; text-shadow: none; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-section__left { display: flex; flex-direction: column; height: 100%; }
.contact-section__intro { margin-top: 1.25rem; font-size: 16px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 28rem; }
.contact-section__touchpoints { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1rem; }
.touchpoint { display: flex; align-items: center; gap: 1rem; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-card); padding: 1rem; box-shadow: var(--shadow-soft); }
.touchpoint__icon { width: 2.75rem; height: 2.75rem; border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--color-secondary); border: 1px solid var(--color-border); color: var(--color-primary); transition: transform 500ms ease-out; }
.touchpoint:hover .touchpoint__icon { transform: scale(1.05); color: var(--color-accent); }
.touchpoint__text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.touchpoint__label { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.touchpoint__value { font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 300ms ease; }
.touchpoint:hover .touchpoint__value { color: var(--color-primary); }
.contact-section__quote-wrap { margin-top: auto; padding-top: 2rem; }
.contact-section__quote { position: relative; border-radius: var(--radius); border: 1px solid var(--color-border); background: var(--color-secondary); padding: 2.25rem 1.5rem; text-align: center; overflow: hidden; }
@media (min-width: 768px) { .contact-section__quote { padding: 2.75rem 2.5rem; } }
.contact-section__quote-rule { display: block; margin: 0 auto 1rem; height: 1px; width: 3rem; background: color-mix(in srgb, var(--color-accent) 70%, transparent); }
.contact-section__quote blockquote { margin: 0; font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); line-height: 1.3; font-size: 1.25rem; max-width: 28rem; margin-inline: auto; }
@media (min-width: 768px) { .contact-section__quote blockquote { font-size: 1.5rem; } }
.contact-section__quote figcaption { margin-top: 1.25rem; font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.contact-form { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-soft); height: 100%; transition: box-shadow 500ms ease-out, border-color 500ms ease-out; }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form:hover { box-shadow: var(--shadow-elevated); border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__field--grow { flex: 1; min-height: 160px; }
.contact-form label { display: block; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-form input, .contact-form select, .contact-form textarea {
	width: 100%; height: 3rem; padding: 0 1rem; background: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--radius);
	font-size: 15px; color: var(--color-foreground);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-form__field--grow textarea { flex: 1; height: 100%; min-height: 140px; padding: 0.75rem 1rem; resize: none; }
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-form__select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form__actions { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-form__submit { width: 100%; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-form__note { font-size: 14px; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid rgba(255,255,255,0.1); background: hsl(128 18% 10%); color: #fff; }
.site-footer__inner { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__col { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.625rem; }
.site-footer__brand .site-logo-wrap { height: 3.5rem; }
.site-footer__brand .brand-mark { height: 100%; --logo-ink: #fff; --logo-ring: rgba(255,255,255,0.55); --logo-leaf: rgba(255,255,255,0.18); transition: transform 500ms ease-out; }
.site-footer__brand .site-logo-img { height: 100% !important; }
.site-footer__brand:hover .brand-mark { transform: scale(1.05); }
.site-footer__tagline { margin-top: 1rem; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 20rem; }
.site-footer__heading { font-family: var(--font-display); font-size: 1.25rem; color: #fff; margin-bottom: 1rem; letter-spacing: 0.025em; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__list--contact { gap: 0.75rem; }
.site-footer__list a, .site-footer__list button { font-size: 13px; color: rgba(255,255,255,0.7); background: none; border: none; text-align: left; padding: 0; cursor: pointer; transition: color 300ms ease, transform 300ms ease; display: inline-block; }
.site-footer__list a:hover, .site-footer__list button:hover { color: var(--color-clay); transform: translateX(4px); }
.site-footer__touchpoint { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.75); word-break: break-all; transition: color 300ms ease; }
.site-footer__touchpoint:hover { color: var(--color-clay); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copyright, .site-footer__credit { font-size: 13px; color: rgba(255,255,255,0.6); flex: 1; }
@media (min-width: 640px) { .site-footer__copyright { text-align: left; } .site-footer__credit { text-align: right; } }
.site-footer__totop { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: rgba(255,255,255,0.7); background: none; border: none; cursor: pointer; transition: color 300ms ease; }
.site-footer__totop:hover { color: var(--color-clay); }
.site-footer__totop-icon { width: 2rem; height: 2rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.25); display: inline-flex; align-items: center; justify-content: center; transition: all 300ms ease; }
.site-footer__totop:hover .site-footer__totop-icon { border-color: var(--color-clay); transform: translateY(-2px); }
.site-footer__credit a { display: inline-flex; align-items: center; gap: 0.25rem; color: rgba(255,255,255,0.8); position: relative; transition: color 300ms ease; }
.site-footer__credit a:hover { color: var(--color-clay); }
.site-footer__credit a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 450ms ease; }
.site-footer__credit a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   Wellness page
   ========================================================================== */
.wellness-page .site-main { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; background: var(--color-background); }
.wellness-page .wellness-section.theme-light { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .wellness-page .wellness-section.theme-light { padding-top: 7rem; padding-bottom: 7rem; } }
.wellness-section { width: 100%; }
.wellness-section__intro { max-width: 42rem; margin: 0 auto; text-align: center; }
.wellness-section__intro-text { margin-top: 1.25rem; font-size: 16px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; }
.wellness-section__grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin-inline: auto; }
@media (min-width: 768px) { .wellness-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.wellness-card { border-radius: 0.75rem; border: 1px solid var(--color-border); background: var(--color-card); padding: 1.75rem; box-shadow: var(--shadow-soft); }
.wellness-card__icon { display: inline-flex; color: var(--color-accent); margin-bottom: 1rem; transition: transform 300ms ease; }
.wellness-card:hover .wellness-card__icon { transform: scale(1.1) rotate(6deg); }
.wellness-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; margin-bottom: 0.65rem; color: var(--color-foreground); }
.wellness-card__text { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.wellness-section__actions { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
.wellness-section__actions .btn { text-transform: uppercase; letter-spacing: 0.12em; }
@media (min-width: 640px) { .wellness-section__actions { flex-direction: row; } }

/* ==========================================================================
   404
   ========================================================================== */
.theme-404 { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; background: var(--color-muted); padding-top: 0; }
.theme-404__inner { padding: 2rem 0; text-align: center; }
.theme-404__code { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-foreground); }
.theme-404__title { font-size: 1.25rem; margin-bottom: 1rem; color: var(--color-muted-foreground); }
.theme-404__link { color: var(--color-primary); text-decoration: underline; font-size: 1rem; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ==========================================================================
   Single product page (Section 11.13 responsive rules)
   ========================================================================== */
.single-product .site-main { padding-top: 6rem; padding-bottom: 5rem; background: var(--color-background); }
@media (min-width: 1024px) { .single-product .site-main { padding-top: 7rem; } }
.breadcrumb-trail { padding: 1.5rem 0; font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.breadcrumb-trail a:hover { color: var(--color-primary); }
.breadcrumb-trail__sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumb-trail__current { color: var(--color-foreground); }
.back-to-shop-link { display: none; }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }

.theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1/1; width: 100%; background: var(--color-secondary); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.product-main-img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { aspect-ratio: 1/1; background: var(--color-secondary); border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; padding: 0; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover:not(.is-active) { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }

.theme-product-info { min-width: 0; max-width: 100%; }
.product-category { font-size: 15px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.product-title { font-family: var(--font-display); font-weight: 400; font-size: 1.875rem; line-height: 1.05; margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.6rem; } }
.single-product .product-price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; padding-top: 0; margin-top: 0; }
.product-stock { font-size: 15px; margin-bottom: 1.5rem; display: inline-block; padding: 0.35rem 0.9rem; border-radius: 999px; }
.product-stock--oos { background: color-mix(in srgb, var(--color-destructive) 12%, transparent); color: var(--color-destructive); }
.product-description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.product-description p { margin-bottom: 1rem; }

.theme-variant-attr { margin-bottom: 1.5rem; }
.theme-variant-attr__label { font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-variant-attr__pills { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.theme-variant-attr .variant-pill { height: auto; padding: 0.625rem 1.25rem; font-size: 15px; letter-spacing: normal; color: var(--color-foreground); }
.theme-variant-attr .variant-pill:hover:not(:disabled):not(.is-active) { border-color: var(--color-primary); color: var(--color-primary); }
.theme-attr-select-hidden { display: none !important; }
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: none; }
.single-product .single_variation_wrap .woocommerce-variation { display: none; }

.product-quantity-block { margin-bottom: 1.5rem; }
.product-quantity-block__label { font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 999px; height: auto; }
.theme-quantity-wrapper button { display: inline-flex; align-items: center; justify-content: center; padding: 0.625rem 1rem; background: none; border: none; color: var(--color-foreground); }
.theme-quantity-wrapper button:hover { color: var(--color-primary); }
.theme-qty-input { width: 2.75rem; min-width: 2.75rem; text-align: center; border: none; background: none; font-size: 15px; font-weight: 500; padding: 0.625rem 0; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; margin-bottom: 0; }
@media (min-width: 640px) { .theme-add-to-cart-area { flex-direction: row; } }
.theme-add-to-cart-area .single_add_to_cart_button,
.theme-add-to-cart-area .theme-buy-now,
.theme-add-to-cart-area .add_to_cart_button { flex: 1 1 0; width: 100%; min-width: 0; }
.theme-buy-now { height: var(--btn-height); }

.product-trust-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0.75rem; padding-top: 1.5rem; margin-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.product-trust-item { text-align: center; }
.product-trust-item svg { color: var(--color-accent); margin: 0 auto 0.5rem; display: block; transition: transform 300ms ease; }
.product-trust-item:hover svg { transform: scale(1.1) rotate(6deg); }
.product-trust-item p { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.product-details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.product-details__label { font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.woocommerce-product-details__short-description ul { display: flex; flex-direction: column; gap: 0.625rem; overflow-wrap: break-word; word-break: break-word; }
.woocommerce-product-details__short-description li { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; }
.woocommerce-product-details__short-description li::before { content: ''; width: 4px; height: 4px; margin-top: 0.625rem; margin-right: 0.75rem; border-radius: 999px; background: var(--color-primary); flex-shrink: 0; }
.posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.related-products-section__viewall { display: none; align-items: center; gap: 0.4rem; font-size: 15px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 640px) { .related-products-section__viewall { display: inline-flex; } }
.related-products-section__viewall:hover { color: var(--color-primary); }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ==========================================================================
   Side cart drawer
   ========================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; background: rgba(30,41,32,0.3); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 300ms ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-background); z-index: 61; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	opacity: 0; visibility: hidden; transform: translateY(20px);
	transition: opacity 700ms ease-out, transform 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms linear 900ms;
}
body.cart-open #theme-cart-drawer { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 700ms ease-out, transform 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0ms; }
#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-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.4rem; border-radius: 999px; background: none; border: none; color: var(--color-foreground); }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.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 { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 15px; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { width: 5rem; height: 6rem; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--color-secondary); }
.theme-cart-drawer__item-image img { width: 100%; height: 100% !important; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 15px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-variation { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.15rem; }
.theme-cart-drawer__item-price { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.15rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { padding: 0.25rem; border-radius: 0.25rem; background: none; border: none; color: var(--color-foreground); }
.theme-cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty-value { font-size: 15px; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); background: none; border: none; }
.theme-cart-drawer__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); display: flex; flex-direction: column; gap: 1rem; background: color-mix(in srgb, var(--color-secondary) 40%, transparent); }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 15px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; font-size: 14px; }

/* ==========================================================================
   WooCommerce Checkout Block (Section 13)
   ========================================================================== */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; background: var(--color-background); }
body.woocommerce-checkout .site-container,
body.woocommerce-cart .site-container,
body.woocommerce-account .site-container { padding-top: 2rem; }
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-cart { font-family: var(--font-body); color: var(--color-foreground); }

/* One flat 2-column grid (equal width) — no nested checkout grids */
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		gap: var(--checkout-gap) !important;
		align-items: start !important;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	display: block !important;
	min-width: 0 !important;
	width: 100% !important;
	max-width: none !important;
}
body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-sidebar-layout {
	display: block !important;
	grid-template-columns: none !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary) !important;
	border-radius: var(--card-radius) !important;
	padding: var(--section-padding) !important;
}
body.woocommerce-checkout .wc-block-components-title,
body.woocommerce-checkout .wc-block-checkout__form h2 { font-family: var(--font-display); font-weight: 600; }

/* Text inputs — Lovable: h-12, ivory bg, border foreground/15, rounded-md, 15px */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	min-height: 3rem !important;
	font-family: var(--font-body) !important;
	font-size: 15px !important;
	color: var(--color-foreground) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	border-radius: var(--radius) !important;
	background-color: var(--color-background) !important;
	box-shadow: none !important;
	transition: border-color 300ms ease !important;
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}
body.woocommerce-checkout .wc-block-components-textarea textarea {
	height: auto !important;
	min-height: 6rem !important;
	padding-top: 0.75rem !important;
	padding-bottom: 0.75rem !important;
	resize: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 45%, transparent) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
}

/* Select / combobox controls — same shell as inputs; padding left to WC defaults */
body.woocommerce-checkout .wc-block-components-select,
body.woocommerce-checkout .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-combobox-control {
	width: 100% !important;
	max-width: none !important;
}
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-combobox-control button,
body.woocommerce-checkout .wc-block-components-combobox-control .components-button,
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	width: 100% !important;
	max-width: none !important;
	min-height: 3rem !important;
	height: 3rem !important;
	font-family: var(--font-body) !important;
	font-size: 15px !important;
	color: var(--color-foreground) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	border-radius: var(--radius) !important;
	background-color: var(--color-background) !important;
	background-image: none !important;
	box-shadow: none !important;
	transition: border-color 300ms ease !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-combobox-control button:focus,
body.woocommerce-checkout .wc-block-components-combobox-control:focus-within input,
body.woocommerce-checkout .wc-block-components-combobox-control:focus-within button,
body.woocommerce-checkout .wc-block-components-select .components-custom-select-control__button[aria-expanded="true"] {
	outline: none !important;
	border-color: var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-combobox-control__label,
body.woocommerce-checkout .wc-block-components-select .wc-block-components-select__label {
	font-family: var(--font-body) !important;
	font-size: 15px !important;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--radius); }

/* ==========================================================================
   Thank-you page
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem 4rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.75rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 1.5rem; margin: 1.5rem 0; background: var(--color-secondary); border-radius: var(--card-radius); }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 15px; }
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 th,
body.theme-thankyou-page .woocommerce-order-details td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); 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; }
@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; }
}
