/* ============================================================
   WELLORA VITALS — main.css (Phase 1 Foundation)

   Token base · reset · base typography · pill buttons ·
   nav · footer · scroll-reveal · responsive.

   Section-specific styles arrive in Phase 2 / 3.
   See docs/design-system.md for the full spec.
   ============================================================ */

/* ─────────────────────────────────────────────
   1. TOKENS (design-system §3.5)
───────────────────────────────────────────── */

:root {
	/* Core palette (locked — from logo) */
	--cream:    #F7F7F4;
	--teal:     #1F4F5A;
	--sage:     #3E5F5B;
	--gold:     #B9965F;
	--muted:    #5A716D;            /* darkened from #788C82 to pass AA on cream (~5:1) */
	--white:    #FFFFFF;

	/* Accessibility tokens (calibrated) */
	--gold-cta:           #7C5E32;            /* button bg with white text (~5.3:1 AA) */
	--gold-on-dark:       #EBD0A2;            /* gold for use on sage/teal (~4.8:1 AA) */
	--text-body:          #1F4F5A;            /* body on cream */
	--text-body-soft:     #3E5F5B;            /* lighter body alternative */
	--text-on-dark:       rgba(247, 247, 244, 0.92);
	--text-on-dark-soft:  rgba(247, 247, 244, 0.78);

	/* Borders */
	--border:          rgba(31, 79, 90, 0.10);
	--border-on-dark:  rgba(247, 247, 244, 0.12);

	/* Type — three-family system (see design-system §4) */
	--font-serif:   'Playfair Display', Georgia, serif;
	--font-display: 'Bricolage Grotesque', 'Inter', sans-serif;
	--font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Spacing scale (8px base) */
	--s-1:  4px;
	--s-2:  8px;
	--s-3:  12px;
	--s-4:  16px;
	--s-5:  24px;
	--s-6:  32px;
	--s-7:  48px;
	--s-8:  64px;
	--s-9:  96px;
	--s-10: 128px;

	/* Radius */
	--r-sm:   6px;
	--r-md:   10px;
	--r-lg:   14px;
	--r-xl:   24px;
	--r-pill: 100px;

	/* Layout */
	--max:     1160px;
	--sec-pad: 96px;
	--gutter:  40px;

	/* Motion */
	--ease: cubic-bezier(.25, .46, .45, .94);
	--dur:  .55s;

	/* Elevation */
	--shadow-cta:  0 6px 18px rgba(124, 94, 50, 0.20);
	--shadow-card: 0 8px 24px rgba(31, 79, 90, 0.06);
}

@media (max-width: 900px) {
	:root {
		--sec-pad: 64px;
		--gutter:  20px;
	}
}

/* ─────────────────────────────────────────────
   2. RESET (modern minimal)
───────────────────────────────────────────── */

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

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

body {
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-body);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

a {
	color: var(--teal);
	text-decoration: none;
	transition: color 0.2s var(--ease);
}

ul,
ol {
	list-style: none;
}

button {
	background: none;
	border: 0;
	cursor: pointer;
}

[hidden] {
	display: none !important;
}

/* ─────────────────────────────────────────────
   3. TYPOGRAPHY (design-system §4)
───────────────────────────────────────────── */

/* H1 — marketing display (default) */
h1,
.h1 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.05;
	letter-spacing: -1px;
	color: var(--text-body);
}

/* H1 — editorial serif variant (for founder, About hero) */
.h1-editorial {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(36px, 5.5vw, 64px);
	line-height: 1.12;
	letter-spacing: -0.5px;
}

/* H2 — marketing display (default) */
h2,
.h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.10;
	letter-spacing: -0.5px;
	color: var(--text-body);
}

/* H2 — editorial serif variant */
.h2-editorial {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: clamp(28px, 3.8vw, 46px);
	line-height: 1.15;
	letter-spacing: -0.2px;
}

/* H3 */
h3,
.h3 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.2;
	color: var(--text-body);
}

.h3-editorial {
	font-family: var(--font-serif);
}

/* Body */
p {
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-body);
	max-width: 68ch; /* readable line length */
}

.lead {
	font-size: clamp(17px, 1.6vw, 19px);
	line-height: 1.7;
}

.small {
	font-size: 14px;
	line-height: 1.65;
}

.xs {
	font-size: 12px;
	line-height: 1.5;
}

.overline {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

/* Overlines on dark surfaces use the brighter gold so 11px small text
   clears WCAG AA contrast against sage/teal. */
.bg-sage .overline,
.bg-teal .overline,
.site-footer .overline {
	color: var(--gold-on-dark);
}

/* Overlines on cream use the darker gold-cta so 11px small text clears
   WCAG AA (~5.3:1) — plain --gold is only 2.57:1 on cream. */
.bg-cream .overline,
.bg-white .overline,
body:not(.bg-sage):not(.bg-teal) section:not(.bg-sage):not(.bg-teal) .overline {
	color: var(--gold-cta);
}

/* Italic emphasis in editorial headlines */
em {
	font-style: italic;
}

/* Text colour utilities */
.text-on-dark      { color: var(--text-on-dark); }
.text-on-dark-soft { color: var(--text-on-dark-soft); }
.text-gold         { color: var(--gold); }
.text-soft         { color: var(--text-body-soft); }
.text-muted        { color: var(--muted); }

/* ─────────────────────────────────────────────
   4. LAYOUT — container + section
───────────────────────────────────────────── */

.container {
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

section {
	padding-block: var(--sec-pad);
}

/* Background variants per design-system §3.4 */
.bg-cream { background: var(--cream); }
.bg-sage  { background: var(--sage); }
.bg-teal  { background: var(--teal); }
.bg-white { background: var(--white); }

/* Dark sections — text colours adapt */
.bg-sage,
.bg-teal {
	color: var(--text-on-dark);
}

.bg-sage h1, .bg-sage h2, .bg-sage h3,
.bg-teal h1, .bg-teal h2, .bg-teal h3 {
	color: var(--cream);
}

.bg-sage p, .bg-teal p {
	color: var(--text-on-dark);
}

/* ─────────────────────────────────────────────
   5. ACCESSIBILITY
───────────────────────────────────────────── */

/* Skip link */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: var(--s-3) var(--s-5);
	background: var(--teal);
	color: var(--cream);
	font-weight: 600;
	border-radius: 0 0 var(--r-md) 0;
}

.skip-link:focus {
	left: 0;
}

/* Focus-visible outline */
*:focus {
	outline: none;
}

*:focus-visible {
	outline: 2px solid var(--gold-cta);
	outline-offset: 3px;
	border-radius: var(--r-sm);
}

/* Screen-reader only */
.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;
}

/* ─────────────────────────────────────────────
   6. BUTTONS — pill + arrow (design-system §6.1)
───────────────────────────────────────────── */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	border-radius: var(--r-pill);
	padding: 16px 28px 16px 32px;
	min-height: 52px;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s var(--ease),
	            opacity 0.2s var(--ease),
	            box-shadow 0.2s var(--ease),
	            border-color 0.2s var(--ease);
}

.btn-primary {
	background: var(--gold-cta);
	color: var(--white);
	box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
	opacity: 0.95;
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 10px 26px rgba(124, 94, 50, 0.28);
}

.btn-outline {
	background: transparent;
	color: var(--teal);
	border: 1.5px solid rgba(31, 79, 90, 0.30);
}

.btn-outline:hover {
	border-color: var(--teal);
}

/* On dark section: outline button uses cream */
.bg-sage .btn-outline,
.bg-teal .btn-outline {
	color: var(--cream);
	border-color: rgba(247, 247, 244, 0.30);
}

.bg-sage .btn-outline:hover,
.bg-teal .btn-outline:hover {
	border-color: var(--cream);
}

/* Arrow micro-interaction */
.btn .btn-arrow {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.btn:hover {
		transform: none;
	}
	.btn:hover .btn-arrow {
		transform: none;
	}
}

@media (max-width: 480px) {
	.btn {
		width: 100%;
		justify-content: center;
	}
}

/* ─────────────────────────────────────────────
   7. NAV (asymmetric — design-system §6.2)
───────────────────────────────────────────── */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	padding: 20px 0;
	background: var(--cream);
	border-bottom: 1px solid rgba(31, 79, 90, 0.10);
	box-shadow: 0 1px 0 rgba(31, 79, 90, 0.02), 0 8px 24px rgba(31, 79, 90, 0.04);
	transition: padding 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.scrolled {
	padding: 14px 0;
	box-shadow: 0 1px 0 rgba(31, 79, 90, 0.04), 0 12px 28px rgba(31, 79, 90, 0.06);
}

.nav-inner {
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-5);
}

.nav-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--teal);
}

.nav-logo svg {
	height: 78px;
	width: auto;
	display: block;
	transition: height 0.25s var(--ease);
}

.site-header.scrolled .nav-logo svg {
	height: 66px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: var(--s-6);
}

.nav-links-list {
	display: flex;
	align-items: center;
	gap: var(--s-6);
}

.nav-links a {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--text-body);
	transition: color 0.2s var(--ease);
}

.nav-links a:hover {
	color: var(--teal);
}

.nav-cta {
	min-height: 44px;
	padding: 12px 22px;
	font-size: 14px;
}

/* Default: show full label, hide short label */
.nav-cta .nav-cta-label-short { display: none; }
.nav-cta .nav-cta-label-full { display: inline; }

@media (max-width: 900px) {
	.nav-links {
		display: none;
	}
}

/* Spacer so page content isn't hidden under the fixed nav */
body {
	padding-top: 122px;
}

@media (max-width: 900px) {
	body {
		padding-top: 108px;
	}
}

/* Checkout hides the fixed site header (see header.php), so the body
   spacer becomes empty dead space. Drop it on checkout only. */
body.woocommerce-checkout:not(.woocommerce-order-received) {
	padding-top: 0;
}

/* ─────────────────────────────────────────────
   8. STICKY MOBILE CTA BAR
───────────────────────────────────────────── */

.mobile-cta-bar {
	display: none; /* hidden on desktop */
	position: fixed;
	inset: auto 0 0 0;
	z-index: 200;
	padding: 12px 20px max(16px, env(safe-area-inset-bottom));
	background: rgba(247, 247, 244, 0.97);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-top: 0.5px solid var(--border);
	transform: translateY(100%);
	transition: transform 0.35s var(--ease);
	box-shadow: 0 -4px 24px rgba(31, 79, 90, 0.08);
}

.mobile-cta-bar.visible {
	transform: translateY(0);
}

.mobile-cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	max-width: 460px;
	margin-inline: auto;
}

.mobile-cta-bar .btn {
	width: 100%;
	justify-content: center;
	min-height: 52px;
	font-size: 15px;
}

.mobile-cta-sub {
	font-size: 11px;
	color: var(--muted);
	text-align: center;
	line-height: 1.4;
}

@media (max-width: 900px) {
	.mobile-cta-bar {
		display: block;
	}
}

/* iPad keeps a generous touch target but doesn't sprawl edge-to-edge. */
@media (min-width: 601px) and (max-width: 900px) {
	.mobile-cta-inner {
		max-width: 520px;
	}
	.mobile-cta-bar { padding: 14px 24px max(18px, env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
	.mobile-cta-bar { padding: 10px 14px max(14px, env(safe-area-inset-bottom)); }
	.mobile-cta-sub { font-size: 10px; }
}

/* ─────────────────────────────────────────────
   9. FOOTER (forest sage — design-system §6.15)
───────────────────────────────────────────── */

.site-footer {
	background: var(--sage);
	color: var(--text-on-dark);
	padding-block: 64px 36px;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: var(--s-7);
	margin-bottom: 44px;
}

.footer-brand p {
	font-size: 13px;
	color: var(--text-on-dark-soft);
	margin-top: 10px;
	max-width: 280px;
	line-height: 1.7;
}

.footer-address {
	margin-top: var(--s-4);
	font-size: 11px;
	color: rgba(247, 247, 244, 0.85);
	line-height: 1.65;
	font-family: var(--font-sans);
}

.footer-col-label {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--gold-on-dark);
	margin-bottom: 14px;
}

.footer-col a {
	display: block;
	font-size: 13px;
	color: var(--text-on-dark-soft);
	margin-bottom: 9px;
	font-family: var(--font-sans);
	transition: color 0.2s var(--ease);
}

.footer-col a:hover {
	color: var(--cream);
}

.footer-bottom {
	border-top: 0.5px solid var(--border-on-dark);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-legal {
	font-size: 11px;
	line-height: 1.7;
	color: rgba(247, 247, 244, 0.85);
	font-family: var(--font-sans);
	max-width: 60ch;
}

.footer-legal a {
	color: var(--gold-on-dark);
	text-decoration: underline;
	text-decoration-thickness: 0.5px;
	text-underline-offset: 2px;
	transition: color 0.2s var(--ease);
}

.footer-legal a:hover {
	color: var(--cream);
}

.footer-copy {
	font-size: 11px;
	color: rgba(247, 247, 244, 0.85);
	font-family: var(--font-sans);
}

.footer-logo {
	font-family: var(--font-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--cream);
}

@media (max-width: 900px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: var(--s-6);
	}
	/* Avoid footer hiding behind sticky CTA bar on mobile */
	.site-footer {
		padding-bottom: 100px;
	}
}

@media (max-width: 480px) {
	.footer-top {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────────────────────────────────
   10. SCROLL-REVEAL (foundation classes)
───────────────────────────────────────────── */

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity var(--dur) var(--ease),
	            transform var(--dur) var(--ease);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* Staggered fade-up (hero use) */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
	opacity: 0;
	animation: fadeUp 0.65s var(--ease) forwards;
}

.fade-up-1 { animation-delay: 0.08s; }
.fade-up-2 { animation-delay: 0.18s; }
.fade-up-3 { animation-delay: 0.28s; }
.fade-up-4 { animation-delay: 0.38s; }
.fade-up-5 { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
	.fade-up {
		opacity: 1;
		animation: none;
	}
}

/* ─────────────────────────────────────────────
   11. HERO SECTION (homepage — design-system §6 + §7)
───────────────────────────────────────────── */

.hero {
	padding-block: clamp(48px, 8vw, 96px);
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 6vw, 72px);
	align-items: center;
}

.hero-text {
	max-width: 580px;
}

.hero-text > .overline {
	display: inline-block;
	margin-bottom: var(--s-4);
}

.hero-headline {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.05;
	letter-spacing: -1px;
	color: var(--text-body);
	margin-bottom: var(--s-5);
}

.hero-headline-line2 {
	display: block;
	font-weight: 700;
	font-size: clamp(24px, 3.4vw, 38px);
	line-height: 1.18;
	letter-spacing: -0.4px;
	color: var(--text-body-soft);
	margin-top: var(--s-3);
}

.hero-sub {
	font-family: var(--font-sans);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.7;
	color: var(--text-body-soft);
	max-width: 520px;
	margin-bottom: var(--s-5);
}

.trust-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: var(--s-6);
}

.trust-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-pill);
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	color: var(--text-body);
	letter-spacing: 0;
	box-shadow: var(--shadow-card);
}

.trust-pill::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: var(--s-5);
}

.hero-guarantee {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--text-body-soft);
	max-width: none;
}

.hero-guarantee svg {
	color: var(--gold);
	flex-shrink: 0;
}

/* Hero image — cinematic-but-grounded */
.hero-image {
	position: relative;
	justify-self: end;
	width: 100%;
	max-width: 600px;
}

.hero-image picture {
	display: block;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow:
		0 24px 60px rgba(31, 79, 90, 0.18),
		0 8px 24px rgba(31, 79, 90, 0.10);
	aspect-ratio: 4 / 3;
	background: var(--sage);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Mobile / tablet: stack, image above text */
@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: clamp(28px, 5vw, 40px);
	}

	.hero-image {
		max-width: 100%;
		justify-self: stretch;
		order: -1;
	}

	.hero-image picture {
		aspect-ratio: 4 / 3;
	}

	.hero-text {
		max-width: none;
	}
}

@media (max-width: 480px) {
	.hero-ctas .btn {
		width: 100%;
	}
}

/* ─────────────────────────────────────────────
   12. SHARED SECTION PRIMITIVES (Phase 3)
───────────────────────────────────────────── */

.section-pad {
	padding-block: var(--sec-pad);
}

.section-header {
	max-width: 720px;
	margin-bottom: var(--s-8);
}

.section-header.centered {
	margin-inline: auto;
	text-align: center;
}

.section-header.narrow {
	max-width: 640px;
}

.section-header .overline {
	display: inline-block;
	margin-bottom: var(--s-4);
}

.section-header h2 {
	margin-bottom: var(--s-4);
}

.section-header .lead {
	max-width: 640px;
	margin-inline: auto;
}

.bg-cream .section-header .lead { color: var(--text-body-soft); }

.two-col {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(40px, 6vw, 72px);
	align-items: start;
}

.centered.narrow {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.kicker {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(247, 247, 244, 0.45);
	margin-bottom: var(--s-4);
}

.bg-cream .kicker { color: var(--muted); }

/* Arrow link utility */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--gold);
	text-decoration: none;
	transition: gap 0.2s var(--ease);
}

.link-arrow:hover {
	gap: 12px;
	color: var(--gold);
}

.link-arrow-icon {
	width: 14px; height: 14px;
}

.bg-cream .link-arrow { color: var(--gold-cta); }

@media (max-width: 900px) {
	.two-col {
		grid-template-columns: 1fr;
		gap: var(--s-7);
	}
	.section-header { margin-bottom: var(--s-7); }
}

/* ─────────────────────────────────────────────
   13. PROBLEM SECTION (sage)
───────────────────────────────────────────── */

.section-problem .col-text > .overline { margin-bottom: var(--s-4); }
.section-problem .col-text h2 { margin-bottom: var(--s-5); }
.section-problem .col-text .lead { margin-bottom: var(--s-4); color: var(--cream); }

.pain-points {
	display: grid;
	gap: var(--s-3);
}

.pain-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: var(--s-4) var(--s-5);
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-md);
	color: rgba(247, 247, 244, 0.88);
	font-size: 15px;
	font-weight: 500;
}

.pain-points li::before {
	content: "";
	width: 16px;
	height: 2px;
	background: var(--gold);
	margin-top: 11px;
	flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   14. REFRAME SECTION (cream)
───────────────────────────────────────────── */

.section-reframe .lead { margin-block: var(--s-5); }
.section-reframe p { margin-inline: auto; color: var(--text-body-soft); }

/* ─────────────────────────────────────────────
   15. FORMULA SECTION (sage) — THE differentiator
───────────────────────────────────────────── */

.section-formula h2 { color: var(--cream); }
.section-formula .lead { color: rgba(247, 247, 244, 0.78); }

.ingredient-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
}

@media (max-width: 900px) { .ingredient-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ingredient-grid { grid-template-columns: 1fr; } }

.ingredient-card {
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	display: flex;
	flex-direction: column;
	gap: var(--s-2);
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ingredient-card:hover {
	background: rgba(247, 247, 244, 0.08);
	border-color: rgba(185, 150, 95, 0.30);
}

.ingredient-head {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ingredient-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--dot-color, var(--gold));
	flex-shrink: 0;
	box-shadow: 0 0 0 2px rgba(247, 247, 244, 0.06);
}

.ingredient-name {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--cream);
}

.ingredient-dose {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	color: var(--gold);
	margin-top: var(--s-1);
}

.ingredient-brand {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(247, 247, 244, 0.55);
	text-transform: uppercase;
}

.ingredient-fn {
	font-size: 13px;
	line-height: 1.6;
	color: rgba(247, 247, 244, 0.70);
	margin-top: var(--s-2);
	margin-bottom: 0;
	max-width: none;
}

.formula-links {
	display: flex;
	gap: var(--s-6);
	justify-content: center;
	flex-wrap: wrap;
	margin-top: var(--s-7);
}

.section-formula .link-arrow {
	color: var(--gold);
}

/* ─────────────────────────────────────────────
   16. ANATOMY CALLOUT (cream — new §6.16)
───────────────────────────────────────────── */

.anatomy-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: center;
}

.anatomy-col {
	display: grid;
	gap: var(--s-6);
}

.anatomy-col-left { text-align: right; }
.anatomy-col-right { text-align: left; }

.anatomy-item {
	display: flex;
	align-items: center;
	gap: var(--s-3);
}

.anatomy-col-left .anatomy-item { justify-content: flex-end; }

.anatomy-title {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 600;
	color: var(--teal);
}

.anatomy-sub {
	font-family: var(--font-sans);
	font-size: 12px;
	color: var(--muted);
	margin-top: 2px;
}

.anatomy-line {
	width: 32px;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--gold) 50%, var(--gold));
	flex-shrink: 0;
}

.anatomy-col-right .anatomy-line {
	background: linear-gradient(to left, transparent, var(--gold) 50%, var(--gold));
}

.anatomy-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--gold);
	flex-shrink: 0;
}

.anatomy-product {
	max-width: 280px;
	margin-inline: auto;
}

.anatomy-product img {
	width: 100%;
	height: auto;
	border-radius: var(--r-lg);
	filter: drop-shadow(0 24px 40px rgba(31, 79, 90, 0.18));
}

/* iPad / small-tablet: sachet on top spanning both columns, then a true
   2-column grid where each column stacks its 3 items vertically. Both
   columns use the same dot-then-text row orientation (no desktop mirror). */
@media (min-width: 601px) and (max-width: 900px) {
	.anatomy-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--s-4) var(--s-7);
		max-width: 660px;
		margin-inline: auto;
		align-items: start;
	}
	.anatomy-product {
		grid-column: 1 / -1;
		order: -1;
		max-width: 220px;
		margin-inline: auto;
		margin-bottom: var(--s-4);
	}
	.anatomy-col {
		display: flex;
		flex-direction: column;
		gap: var(--s-5);
		text-align: left;
	}
	.anatomy-col-left, .anatomy-col-right { text-align: left; }
	.anatomy-col-left .anatomy-item,
	.anatomy-col-right .anatomy-item {
		flex-direction: row;
		justify-content: flex-start;
		gap: var(--s-3);
		align-items: flex-start;
	}
	.anatomy-col-left .anatomy-text,
	.anatomy-col-right .anatomy-text {
		order: 2;
		flex: 1 1 auto;
		min-width: 0;
	}
	.anatomy-col-left .anatomy-dot,
	.anatomy-col-right .anatomy-dot {
		order: 1;
		margin-top: 7px;
	}
	.anatomy-line { display: none; }
}

/* ─────────────────────────────────────────────
   17. WHY-NOT-MELATONIN COMPARISON (cream)
───────────────────────────────────────────── */

.compare-wrap {
	max-width: 920px;
	margin-inline: auto;
	overflow-x: auto;
}

.compare-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-family: var(--font-sans);
}

.compare-table th,
.compare-table td {
	padding: var(--s-4) var(--s-5);
	text-align: left;
	font-size: 14px;
	border-bottom: 0.5px solid var(--border);
	background: var(--white);
}

.compare-table thead th {
	font-weight: 700;
	color: var(--teal);
	text-transform: none;
	font-size: 13px;
	background: rgba(31, 79, 90, 0.04);
	border-bottom: 1px solid var(--border);
}

.compare-table tbody th.compare-row-label {
	font-weight: 600;
	color: var(--teal);
	background: rgba(31, 79, 90, 0.02);
	font-size: 13px;
}

.compare-table td { color: var(--muted); }

.compare-table .is-featured {
	background: rgba(185, 150, 95, 0.10);
	color: var(--teal);
}

.compare-table tbody tr td.is-featured strong {
	font-weight: 700;
	color: var(--teal);
}

.compare-table tr:first-child th { border-top-left-radius: var(--r-md); }
.compare-table tr:first-child th:last-child { border-top-right-radius: var(--r-md); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 600px) {
	.compare-table th, .compare-table td { padding: var(--s-3); font-size: 12px; }
}

/* ─────────────────────────────────────────────
   18. TIMELINE (sage)
───────────────────────────────────────────── */

.timeline-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-7);
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

.timeline-track::before {
	content: "";
	position: absolute;
	top: 6px;
	left: 16%;
	right: 16%;
	height: 1px;
	background: linear-gradient(to right, rgba(185, 150, 95, 0.20), rgba(185, 150, 95, 0.50), rgba(185, 150, 95, 0.20));
	z-index: 0;
}

.timeline-step {
	position: relative;
	padding-top: 30px;
}

.timeline-dot {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 6px rgba(185, 150, 95, 0.15), 0 0 0 12px rgba(185, 150, 95, 0.06);
	z-index: 1;
}

.timeline-eyebrow {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--gold);
	text-align: center;
	margin-bottom: var(--s-3);
}

.timeline-title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--cream);
	text-align: center;
	margin-bottom: var(--s-3);
}

.timeline-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(247, 247, 244, 0.72);
	text-align: center;
	margin: 0;
	max-width: none;
}

.timeline-footnote {
	text-align: center;
	margin-top: var(--s-8);
	font-size: 13px;
	font-style: italic;
	color: rgba(247, 247, 244, 0.55);
	max-width: 640px;
	margin-inline: auto;
}

/* iPad (601-900px) keeps the horizontal 3-column timeline but with a
   tighter gap and a slightly shorter connector line. */
@media (min-width: 601px) and (max-width: 900px) {
	.timeline-track {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--s-5);
		max-width: 720px;
		margin-inline: auto;
	}
	.timeline-track::before { left: 14%; right: 14%; }
	.timeline-title { font-size: 18px; }
	.timeline-desc { font-size: 13px; line-height: 1.6; }
	.timeline-dot {
		width: 12px; height: 12px;
		box-shadow: 0 0 0 5px rgba(185, 150, 95, 0.15), 0 0 0 10px rgba(185, 150, 95, 0.06);
	}
}

@media (max-width: 600px) {
	.timeline-track { grid-template-columns: 1fr; gap: var(--s-6); }
	.timeline-track::before { display: none; }
}

/* ─────────────────────────────────────────────
   19. GUARANTEE (cream editorial)
───────────────────────────────────────────── */

.guarantee-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(20px, 3vw, 36px);
	max-width: 920px;
	margin-inline: auto;
	padding: clamp(28px, 4vw, 48px);
	background: rgba(185, 150, 95, 0.07);
	border: 1px solid rgba(185, 150, 95, 0.22);
	border-radius: var(--r-xl);
	align-items: start;
}

.guarantee-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--r-lg);
	background: rgba(185, 150, 95, 0.14);
	border: 1px solid rgba(185, 150, 95, 0.30);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-cta);
	flex-shrink: 0;
}

.guarantee-content h2 { margin-block: var(--s-3) var(--s-4); }
.guarantee-content .lead { margin-bottom: var(--s-4); color: var(--text-body); }
.guarantee-content p { color: var(--text-body-soft); }
.guarantee-cta { margin-top: var(--s-6); }

@media (max-width: 600px) {
	.guarantee-card { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   20. WHO-FOR (cream)
───────────────────────────────────────────── */

.who-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--s-5);
	max-width: 960px;
	margin-inline: auto;
}

.who-card {
	border-radius: var(--r-lg);
	padding: clamp(24px, 3vw, 36px);
}

.who-card-yes {
	background: var(--white);
	border: 0.5px solid var(--border);
	box-shadow: var(--shadow-card);
}

.who-card-no {
	background: rgba(31, 79, 90, 0.03);
	border: 0.5px solid rgba(31, 79, 90, 0.06);
}

.who-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: var(--s-5);
}

.who-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.who-icon-yes {
	background: rgba(62, 95, 91, 0.14);
	color: var(--sage);
}

.who-icon-no {
	background: rgba(120, 140, 130, 0.16);
	color: var(--muted);
}

.who-card h3 {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	margin: 0;
}

.who-card-yes h3 { color: var(--sage); }
.who-card-no h3 { color: var(--muted); }

.who-list {
	display: grid;
	gap: var(--s-3);
}

.who-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
	color: var(--teal);
}

.who-card-no .who-list li { color: var(--muted); }

.who-bullet {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	background: rgba(62, 95, 91, 0.10);
	color: var(--sage);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.who-bullet-no {
	background: rgba(120, 140, 130, 0.10);
	color: var(--muted);
}

@media (max-width: 720px) {
	.who-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   21. FOUNDER (cream editorial)
───────────────────────────────────────────── */

.founder-grid {
	max-width: 1040px;
	margin-inline: auto;
	grid-template-columns: 380px 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.founder-photo-wrap {
	border-radius: var(--r-xl);
	overflow: hidden;
	background: var(--sage);
	aspect-ratio: 4 / 5;
	max-width: 380px;
	box-shadow: 0 24px 60px rgba(31, 79, 90, 0.16);
}

.founder-photo-wrap img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}

.founder-text > .overline { margin-bottom: var(--s-4); display: inline-block; }

.founder-quote {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.35;
	color: var(--teal);
	margin-block: var(--s-5);
	padding: 0;
	border: 0;
}

.founder-attribution {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: var(--s-5);
}

.founder-attribution strong {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 700;
	color: var(--teal);
}

.founder-attribution span {
	font-size: 13px;
	color: var(--muted);
}

@media (max-width: 900px) {
	.founder-grid { grid-template-columns: 1fr; }
	.founder-photo-wrap { max-width: 320px; margin-inline: auto; }
}

/* ─────────────────────────────────────────────
   22. REVIEWS (deep teal — early-access counter)
───────────────────────────────────────────── */

.section-reviews h2 { color: var(--cream); }
.section-reviews .lead { color: rgba(247, 247, 244, 0.72); }

.reviews-counter {
	max-width: 640px;
	margin: var(--s-6) auto 0;
	background: rgba(247, 247, 244, 0.04);
	border: 1px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-xl);
	padding: clamp(24px, 3vw, 36px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--s-5);
	text-align: center;
}

.reviews-counter-figure {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.reviews-counter-num {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 800;
	line-height: 1;
	color: var(--gold);
	letter-spacing: -0.5px;
}

.reviews-counter-label {
	font-family: var(--font-sans);
	font-size: 13px;
	color: rgba(247, 247, 244, 0.65);
	letter-spacing: 0.04em;
}

.reviews-form {
	display: flex;
	gap: 10px;
	width: 100%;
	max-width: 480px;
}

.reviews-form input[type="email"] {
	flex: 1;
	min-height: 48px;
	padding: 0 var(--s-4);
	border-radius: var(--r-pill);
	border: 1px solid rgba(247, 247, 244, 0.18);
	background: rgba(247, 247, 244, 0.05);
	color: var(--cream);
	font-family: var(--font-sans);
	font-size: 14px;
}

.reviews-form input[type="email"]::placeholder { color: rgba(247, 247, 244, 0.45); }

.reviews-form input[type="email"]:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
	background: rgba(247, 247, 244, 0.08);
}

@media (max-width: 540px) {
	.reviews-form { flex-direction: column; }
	.reviews-form .btn { width: 100%; }
}

/* ─────────────────────────────────────────────
   23. OFFER (sage — pricing)
───────────────────────────────────────────── */

.section-offer h2 { color: var(--cream); }
.section-offer .lead { color: rgba(247, 247, 244, 0.78); }

.offer-details-link {
	margin-top: var(--s-3);
	font-size: 14px;
}
.offer-details-link .link-arrow {
	color: var(--gold);
	border-bottom-color: rgba(185, 150, 95, 0.40);
}
.offer-details-link .link-arrow:hover {
	color: var(--cream);
	border-bottom-color: var(--cream);
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
	max-width: 1040px;
	margin-inline: auto;
}

.offer-card {
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-xl);
	padding: clamp(24px, 2.6vw, 32px);
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.offer-card:hover { transform: translateY(-4px); }

.offer-card-featured {
	border: 2px solid var(--gold);
	background: rgba(185, 150, 95, 0.08);
}

.offer-card-soon { opacity: 0.95; }

.offer-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold-cta);
	color: var(--cream);
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: var(--r-pill);
	white-space: nowrap;
}

.offer-badge-soft {
	background: rgba(247, 247, 244, 0.12);
	color: rgba(247, 247, 244, 0.80);
	letter-spacing: 0.06em;
}

.offer-qty {
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(247, 247, 244, 0.92);
}

.offer-supply {
	font-family: var(--font-sans);
	font-size: 13px;
	color: rgba(247, 247, 244, 0.92);
	margin-top: 4px;
}

.offer-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: var(--s-4);
}

.offer-price-amount {
	font-family: var(--font-display);
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	color: var(--cream);
	letter-spacing: -1px;
}

.offer-price-unit {
	font-family: var(--font-sans);
	font-size: 13px;
	color: rgba(247, 247, 244, 0.92);
}

.offer-save {
	display: inline-block;
	margin-top: var(--s-2);
	padding: 4px 10px;
	background: rgba(185, 150, 95, 0.18);
	color: var(--gold);
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	border-radius: var(--r-pill);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	width: fit-content;
}

.offer-features {
	margin: var(--s-5) 0;
	display: grid;
	gap: var(--s-2);
}

.offer-features li {
	font-size: 13px;
	line-height: 1.5;
	color: rgba(247, 247, 244, 0.92);
	padding-left: 18px;
	position: relative;
}

.offer-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 10px;
	height: 6px;
	border-left: 1.5px solid var(--gold);
	border-bottom: 1.5px solid var(--gold);
	transform: rotate(-45deg);
}

.offer-cta { margin-top: auto; width: 100%; justify-content: center; }

.offer-trust-strip {
	display: flex;
	justify-content: center;
	gap: var(--s-5);
	flex-wrap: wrap;
	margin-top: var(--s-7);
	font-family: var(--font-sans);
	font-size: 12px;
	color: rgba(247, 247, 244, 0.55);
}

.offer-trust-strip span { display: inline-flex; align-items: center; gap: 6px; }
.offer-trust-strip span:not(:last-child)::after { content: "·"; margin-left: var(--s-5); opacity: 0.5; }

@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; max-width: 420px; } }

/* ─────────────────────────────────────────────
   24. FAQ (cream)
───────────────────────────────────────────── */

.faq-list {
	max-width: 760px;
	margin-inline: auto;
	display: grid;
	gap: var(--s-3);
}

.faq-item {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: border-color 0.2s var(--ease);
}

.faq-item[open] {
	border-color: rgba(185, 150, 95, 0.30);
	box-shadow: var(--shadow-card);
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
	padding: var(--s-4) var(--s-5);
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 600;
	color: var(--teal);
	line-height: 1.45;
}

.faq-toggle {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(31, 79, 90, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	flex-shrink: 0;
	transition: transform 0.25s var(--ease), background 0.2s var(--ease);
}

.faq-item[open] .faq-toggle { transform: rotate(180deg); background: rgba(185, 150, 95, 0.18); color: var(--gold-cta); }

.faq-a {
	padding: 0 var(--s-5) var(--s-5);
}

.faq-a p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-body-soft);
	margin: 0;
	max-width: none;
}

.faq-more {
	text-align: center;
	margin-top: var(--s-6);
}

/* ─────────────────────────────────────────────
   25. FINAL CTA (deep teal — the closer)
───────────────────────────────────────────── */

.section-final-cta h2 {
	color: var(--cream);
	font-size: clamp(40px, 5.5vw, 64px);
	margin-bottom: var(--s-4);
}

.section-final-cta .lead {
	color: rgba(247, 247, 244, 0.78);
	margin-bottom: var(--s-7);
}

.final-cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   26. MOBILE FIXES (≤ 600px) — UX polish per round
───────────────────────────────────────────── */

@media (max-width: 600px) {

	/* HEADER — better logo / CTA proportion on mobile.
	   Logo gets a small bump, CTA shrinks to "Order →" with compact padding. */
	.nav-logo svg { height: 72px; }
	.site-header.scrolled .nav-logo svg { height: 60px; }

	.nav-cta {
		min-height: 40px;
		padding: 10px 18px;
		font-size: 13px;
		gap: 6px;
	}
	.nav-cta .nav-cta-label-full { display: none; }
	.nav-cta .nav-cta-label-short { display: inline; }

	/* ANATOMY — drop the broken line-callouts on mobile.
	   Replace with a clean stacked list, sachet sits centered above. */
	.anatomy-grid {
		display: flex;
		flex-direction: column;
		gap: var(--s-6);
	}
	.anatomy-product {
		order: -1;
		max-width: 200px;
		margin-inline: auto;
	}
	.anatomy-col {
		display: grid;
		grid-template-columns: 1fr;
		gap: var(--s-4);
		text-align: left;
	}
	.anatomy-col-left, .anatomy-col-right { text-align: left; }
	.anatomy-item {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		padding: var(--s-3) 0;
		border-bottom: 0.5px solid var(--border);
		justify-content: flex-start !important;
	}
	.anatomy-col li:last-child .anatomy-item { border-bottom: 0; }
	.anatomy-line { display: none; }
	.anatomy-dot {
		order: -1;
		flex-shrink: 0;
		margin-top: 8px;
		width: 8px;
		height: 8px;
	}
	.anatomy-text {
		order: 0;
		flex: 1 1 auto;
		min-width: 0;
	}

	/* COMPARISON — convert horizontal table to stacked cards.
	   Each row becomes a card with label on top and three values listed. */
	.compare-wrap { overflow-x: visible; }
	.compare-table { display: block; }
	.compare-table thead { display: none; }
	.compare-table tbody { display: block; }
	.compare-table tr {
		display: grid;
		gap: var(--s-2);
		background: var(--white);
		border: 0.5px solid var(--border);
		border-radius: var(--r-md);
		padding: var(--s-4);
		margin-bottom: var(--s-3);
	}
	.compare-table th,
	.compare-table td {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		padding: 6px 0;
		border-bottom: 0;
		background: transparent !important;
		gap: var(--s-3);
	}
	.compare-table th.compare-row-label {
		font-size: 14px;
		font-weight: 700;
		color: var(--teal);
		background: transparent !important;
		display: block;
		text-align: left;
		padding-bottom: var(--s-2);
		margin-bottom: var(--s-2);
		border-bottom: 0.5px solid var(--border);
	}
	.compare-table td::before {
		content: attr(data-label);
		font-size: 12px;
		font-weight: 600;
		color: var(--muted);
		text-transform: uppercase;
		letter-spacing: 0.04em;
	}
	.compare-table .is-featured {
		background: rgba(185, 150, 95, 0.10) !important;
		border-radius: var(--r-sm);
		padding-left: var(--s-3) !important;
		padding-right: var(--s-3) !important;
		margin-top: 4px;
	}
	.compare-table td.is-featured::before { color: var(--gold-cta); }

	/* TIMELINE — add a vertical connecting line on mobile, dots on the left. */
	.timeline-track {
		grid-template-columns: 1fr;
		gap: var(--s-5);
		position: relative;
	}
	.timeline-track::before {
		display: block;
		position: absolute;
		top: 14px;
		left: 7px;
		right: auto;
		bottom: 24px;
		width: 1px;
		height: auto;
		background: linear-gradient(to bottom, rgba(185, 150, 95, 0.50), rgba(185, 150, 95, 0.20));
	}
	.timeline-step {
		padding-top: 0;
		padding-left: 32px;
		text-align: left;
	}
	.timeline-dot {
		top: 6px;
		left: 0;
		transform: none;
		width: 14px;
		height: 14px;
	}
	.timeline-eyebrow,
	.timeline-title,
	.timeline-desc {
		text-align: left;
	}

	/* OFFER — fix badge sizing + cards spacing on mobile.
	   The "MOST POPULAR" badge was too wide and pushed the layout. */
	.offer-grid {
		max-width: 360px;
		gap: var(--s-7);
	}
	.offer-card {
		padding: var(--s-5);
	}
	.offer-badge {
		font-size: 10px;
		padding: 4px 12px;
		top: -10px;
	}
	.offer-card-featured {
		margin-top: var(--s-3); /* clear badge above */
	}
	.offer-price-amount { font-size: 40px; }
	.offer-trust-strip {
		gap: var(--s-3);
		font-size: 11px;
		flex-direction: column;
		text-align: center;
	}
	.offer-trust-strip span:not(:last-child)::after {
		display: none;
	}

}

/* ─────────────────────────────────────────────
   27. STANDALONE PAGES (Phase 4)
───────────────────────────────────────────── */

/* Page hero — used on every standalone page top */
.page-hero {
	padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 64px);
}
.page-hero h1 { margin-bottom: var(--s-4); }
.page-hero .overline { margin-bottom: var(--s-4); display: inline-block; }
.page-hero .lead { margin-inline: auto; }
.page-hero .updated-line {
	font-size: 13px;
	color: var(--muted);
	margin-top: var(--s-5);
}

/* Standalone page sections */
.page-section { padding-block: clamp(40px, 5vw, 72px); }
.page-section:last-of-type { padding-bottom: clamp(56px, 7vw, 96px); }
.page-section .narrow { max-width: 720px; margin-inline: auto; }

/* Page final CTA strip */
.page-final-cta { padding-block: clamp(56px, 7vw, 96px); text-align: center; }
.page-final-cta h2 { color: var(--cream); margin-bottom: var(--s-4); }
.page-final-cta .lead { color: var(--text-on-dark); margin-bottom: var(--s-6); }

/* Prose typography — long-form content */
.prose {
	font-family: var(--font-sans);
	color: var(--text-body);
}
.prose h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.2;
	letter-spacing: -0.3px;
	margin-block: var(--s-7) var(--s-4);
	color: var(--text-body);
}
.prose h2.h2-editorial {
	font-family: var(--font-serif);
	font-weight: 700;
	letter-spacing: -0.2px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.35;
	margin-block: var(--s-5) var(--s-3);
	color: var(--text-body);
	letter-spacing: 0;
}
.prose p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-body-soft);
	margin-bottom: var(--s-4);
	max-width: none;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol {
	margin-block: var(--s-4);
	padding-left: var(--s-5);
}
.prose ul li, .prose ol li {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-body-soft);
	margin-bottom: var(--s-2);
	list-style: disc;
	padding-left: var(--s-2);
}
.prose ol li { list-style: decimal; }
.prose ul li::marker, .prose ol li::marker { color: var(--gold); }
.prose strong { color: var(--text-body); font-weight: 700; }
.prose a {
	color: var(--gold-cta);
	text-decoration: underline;
	text-decoration-thickness: 0.5px;
	text-underline-offset: 2px;
}
.prose a:hover { color: var(--teal); }

/* About page — founder + trust pillars + beliefs */
.founder-grid { grid-template-columns: 380px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-signoff { margin-top: var(--s-6); }

.trust-pillars {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s-5);
}
.trust-pillar {
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-lg);
	padding: var(--s-5);
}
.trust-pillar h3 {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: var(--s-3);
}
.trust-pillar p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-on-dark);
	margin: 0;
}
@media (max-width: 700px) { .trust-pillars { grid-template-columns: 1fr; } }

.beliefs-list {
	max-width: 760px;
	margin-inline: auto;
	display: grid;
	gap: var(--s-6);
	padding-left: 0;
	list-style: none;
}
.beliefs-list li {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: var(--s-5);
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--s-5);
}
.beliefs-num {
	display: inline-flex;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(185, 150, 95, 0.15);
	color: var(--gold-cta);
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	align-items: center;
	justify-content: center;
}
.beliefs-list h3 {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	margin-bottom: var(--s-2);
	color: var(--teal);
}
.beliefs-list p { color: var(--text-body-soft); margin: 0; font-size: 15px; line-height: 1.7; }

.halal-callout {
	background: rgba(185, 150, 95, 0.06);
	border-block: 1px solid rgba(185, 150, 95, 0.18);
}

.company-facts {
	display: grid;
	gap: var(--s-3);
	margin: 0;
}
.company-facts > div {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: var(--s-4);
	padding: var(--s-3) 0;
	border-bottom: 0.5px solid var(--border);
}
.company-facts > div:last-child { border-bottom: 0; }
.company-facts dt {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}
.company-facts dd { font-size: 15px; color: var(--text-body); margin: 0; }
.company-facts a { color: var(--gold-cta); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 600px) {
	.company-facts > div { grid-template-columns: 1fr; gap: 4px; }
}

/* Science page — evidence ratings, ingredient cards */
.evidence-key {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	display: grid;
	gap: var(--s-3);
}
.evidence-key-item {
	display: flex;
	align-items: center;
	gap: var(--s-3);
	font-size: 14px;
	color: var(--text-body-soft);
}
.evidence-key-item strong { color: var(--teal); }

.evidence-rating {
	display: inline-flex;
	gap: 4px;
	flex-shrink: 0;
}
.evidence-rating span {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: rgba(31, 79, 90, 0.18);
}
.bg-sage .evidence-rating span, .bg-teal .evidence-rating span {
	background: rgba(247, 247, 244, 0.18);
}
.evidence-rating.rating-3 span:nth-child(-n+3),
.evidence-rating.rating-2 span:nth-child(-n+2),
.evidence-rating.rating-1 span:nth-child(-n+1) {
	background: var(--gold);
}

.science-list {
	display: grid;
	gap: var(--s-4);
	padding-left: 0;
	list-style: none;
	counter-reset: science;
}
.science-item {
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	counter-increment: science;
}
.science-head {
	display: grid;
	grid-template-columns: 12px 1fr auto;
	gap: var(--s-4);
	align-items: center;
	margin-bottom: var(--s-3);
}
.science-dot {
	width: 12px; height: 12px;
	border-radius: 50%;
	background: var(--dot-color, var(--gold));
	box-shadow: 0 0 0 2px rgba(247, 247, 244, 0.06);
}
.science-name {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--cream);
	margin: 0;
}
.science-brand {
	font-size: 13px;
	font-weight: 500;
	color: rgba(247, 247, 244, 0.65);
	margin-left: 6px;
}
.science-dose {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
	margin-top: 4px;
}
.science-fn {
	font-size: 14px;
	color: rgba(247, 247, 244, 0.78);
	margin-bottom: var(--s-3);
	max-width: none;
}
.science-meta {
	margin: 0;
	display: grid;
	gap: var(--s-2);
	padding-top: var(--s-3);
	border-top: 0.5px solid rgba(247, 247, 244, 0.08);
}
.science-meta > div { display: grid; grid-template-columns: 100px 1fr; gap: var(--s-3); }
.science-meta dt {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(185, 150, 95, 0.80);
}
.science-meta dd {
	font-size: 13px;
	line-height: 1.65;
	color: rgba(247, 247, 244, 0.72);
	margin: 0;
}
@media (max-width: 600px) {
	.science-head { grid-template-columns: 12px 1fr; }
	.science-head .evidence-rating { grid-column: 1 / -1; margin-top: var(--s-2); }
	.science-meta > div { grid-template-columns: 1fr; gap: 4px; }
}

.never-claim li { color: var(--text-body); }

/* Quality page — QC cards and tables */
.qc-card {
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	margin-bottom: var(--s-4);
}
.bg-cream .qc-card {
	background: var(--white);
	border-color: var(--border);
}
.qc-card h3 {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: var(--s-3);
}
.bg-cream .qc-card h3 { color: var(--teal); }
.qc-card p {
	font-size: 14px;
	color: rgba(247, 247, 244, 0.78);
	margin-bottom: var(--s-3);
	max-width: none;
}
.bg-cream .qc-card p { color: var(--text-body-soft); }

.qc-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-family: var(--font-sans);
	font-size: 13px;
}
.qc-table th, .qc-table td {
	padding: var(--s-3) var(--s-4);
	text-align: left;
	border-bottom: 0.5px solid rgba(247, 247, 244, 0.10);
	color: rgba(247, 247, 244, 0.85);
}
.bg-cream .qc-table th, .bg-cream .qc-table td {
	border-bottom: 0.5px solid var(--border);
	color: var(--text-body);
}
.qc-table thead th {
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(185, 150, 95, 0.85);
	background: transparent;
}
.qc-table tbody tr:last-child td { border-bottom: 0; }

.checklist {
	list-style: none !important;
	padding-left: 0 !important;
	display: grid;
	gap: var(--s-2);
}
.checklist li {
	font-size: 14px;
	line-height: 1.55;
	padding-left: 24px;
	position: relative;
	color: rgba(247, 247, 244, 0.85);
}
.bg-cream .checklist li { color: var(--text-body); }
.checklist li::before {
	content: "";
	position: absolute;
	left: 0; top: 8px;
	width: 10px; height: 6px;
	border-left: 1.5px solid var(--gold);
	border-bottom: 1.5px solid var(--gold);
	transform: rotate(-45deg);
}
.negative-checklist li::before {
	border-left: 1.5px solid var(--muted);
	border-bottom: 0;
	transform: none;
	width: 10px; height: 0;
	top: 11px;
}

.callout-honesty,
.placeholder-note {
	background: rgba(185, 150, 95, 0.07);
	border-left: 3px solid var(--gold);
	padding: var(--s-4) var(--s-5);
	border-radius: var(--r-sm);
	font-size: 14px;
	line-height: 1.7;
	margin-block: var(--s-5);
}

/* Contact page — form + methods */
.contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-link {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--gold-cta);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.contact-link:hover { color: var(--teal); }

.contact-form {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(24px, 3vw, 36px);
	box-shadow: var(--shadow-card);
}
.contact-form h2 { margin-bottom: var(--s-3); }
.contact-form p { font-size: 14px; color: var(--text-body-soft); margin-bottom: var(--s-5); }
.form-row {
	display: grid;
	gap: 6px;
	margin-bottom: var(--s-4);
}
.form-row label {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}
.form-row input,
.form-row textarea {
	font-family: var(--font-sans);
	font-size: 15px;
	color: var(--text-body);
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	background: var(--cream);
	resize: vertical;
}
.form-row input:focus-visible,
.form-row textarea:focus-visible {
	outline: 2px solid var(--gold-cta);
	outline-offset: 2px;
	border-color: var(--gold-cta);
}
.form-note { font-size: 12px; color: var(--muted); font-style: italic; margin-top: var(--s-4); }
.contact-address {
	font-style: normal;
	background: rgba(31, 79, 90, 0.04);
	padding: var(--s-4) var(--s-5);
	border-radius: var(--r-md);
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-body);
	margin-block: var(--s-4);
}

/* Policy pages — callouts + short summary + tables on cream */
.policy-callout {
	background: rgba(185, 150, 95, 0.08);
	border: 1px solid rgba(185, 150, 95, 0.22);
	border-radius: var(--r-lg);
	padding: clamp(20px, 3vw, 28px);
	margin-block: var(--s-6) var(--s-7);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-body);
}
.policy-callout strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	color: var(--teal);
	margin-bottom: var(--s-3);
	line-height: 1.35;
}
.policy-callout p { font-size: 14px; color: var(--text-body-soft); margin: 0; }

.policy-content { font-family: var(--font-sans); }
.policy-content h2 {
	font-family: var(--font-display);
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 700;
	letter-spacing: -0.2px;
	margin-block: var(--s-8) var(--s-4);
	color: var(--teal);
}
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content h3 {
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 700;
	color: var(--teal);
	margin-block: var(--s-5) var(--s-3);
}
.policy-content p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--text-body-soft);
	margin-bottom: var(--s-4);
	max-width: none;
}
.policy-content ul, .policy-content ol {
	margin-block: var(--s-3) var(--s-5);
	padding-left: var(--s-5);
}
.policy-content ul li, .policy-content ol li {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-body-soft);
	margin-bottom: var(--s-2);
	list-style: disc;
}
.policy-content ol li { list-style: decimal; }
.policy-content a {
	color: var(--gold-cta);
	text-decoration: underline;
	text-decoration-thickness: 0.5px;
	text-underline-offset: 2px;
}
.policy-content a:hover { color: var(--teal); }
.policy-content strong { color: var(--text-body); }
.policy-content table { margin-block: var(--s-5); }

.short-summary {
	list-style: none !important;
	padding-left: 0 !important;
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--s-5) !important;
	display: grid;
	gap: var(--s-2);
	margin-bottom: var(--s-7) !important;
}
.short-summary li {
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-body) !important;
	padding-left: 22px;
	position: relative;
	list-style: none !important;
}
.short-summary li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--gold-cta);
	font-weight: 700;
}

.compliance-strip {
	margin-top: var(--s-7);
	padding-top: var(--s-5);
	border-top: 0.5px solid var(--border);
	font-size: 12px;
	color: var(--muted);
}

/* Faq groups on the dedicated FAQ page */
.faq-group { margin-bottom: var(--s-8); }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--teal);
	margin-bottom: var(--s-4);
	padding-bottom: var(--s-3);
	border-bottom: 0.5px solid var(--border);
	letter-spacing: -0.2px;
}

/* ─────────────────────────────────────────────
   28. PRODUCT PAGE (Phase 5 — single-product.php)
───────────────────────────────────────────── */

.product-hero { padding-block: clamp(48px, 6vw, 80px); }

.product-hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(40px, 5vw, 72px);
	align-items: start;
}

/* Gallery */
.product-gallery { display: grid; gap: var(--s-3); }
.gallery-main {
	background: var(--cream);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow:
		0 24px 60px rgba(31, 79, 90, 0.16),
		0 8px 24px rgba(31, 79, 90, 0.08);
	aspect-ratio: 1 / 1;
	border: 0.5px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-2);
}
.gallery-thumb {
	background: var(--cream);
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	padding: 0;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.is-active { border-color: var(--gold-cta); }

/* Purchase Box */
.purchase-box {
	position: sticky;
	top: 112px;
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-xl);
	padding: clamp(24px, 3vw, 36px);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: var(--s-4);
}

.purchase-box .overline { display: inline-block; }

.purchase-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(28px, 3.4vw, 38px);
	line-height: 1.1;
	letter-spacing: -0.5px;
	color: var(--text-body);
}

.purchase-sub {
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-body-soft);
	margin: 0;
	max-width: none;
}

.purchase-bullets {
	display: grid;
	gap: 6px;
	margin: 0;
	padding: 0;
}
.purchase-bullets li {
	font-size: 13px;
	line-height: 1.55;
	color: var(--text-body);
	padding-left: 18px;
	position: relative;
}
.purchase-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 10px;
	height: 6px;
	border-left: 1.5px solid var(--gold-cta);
	border-bottom: 1.5px solid var(--gold-cta);
	transform: rotate(-45deg);
}

.purchase-form { display: grid; gap: var(--s-4); margin: 0; }

.purchase-options {
	border: 0;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--s-3);
}

.purchase-option {
	position: relative;
	display: grid;
	gap: 4px;
	padding: var(--s-4);
	background: var(--cream);
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	cursor: pointer;
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.purchase-option:hover { border-color: rgba(31, 79, 90, 0.20); }
.purchase-option.is-selected { border-color: var(--gold-cta); background: rgba(185, 150, 95, 0.06); }
.purchase-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.purchase-option.featured { border-color: var(--gold); }
.purchase-option.featured.is-selected { border-color: var(--gold-cta); }
.purchase-option.is-disabled {
	cursor: not-allowed;
	background: rgba(31, 79, 90, 0.04);
	border-style: dashed;
}
.purchase-option.is-disabled .purchase-option-title,
.purchase-option.is-disabled .purchase-option-price,
.purchase-option.is-disabled .purchase-option-meta { color: var(--text-body-soft); }

.purchase-option-badge {
	position: absolute;
	top: -10px;
	left: 16px;
	background: var(--gold-cta);
	color: var(--white);
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--r-pill);
}
.purchase-option-badge.soft {
	background: var(--muted);
}

.purchase-option-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--s-3);
}

.purchase-option-title {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--teal);
}

.purchase-option-price {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--text-body);
	line-height: 1;
	letter-spacing: -0.3px;
}

.purchase-option-perbox {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	letter-spacing: 0;
	margin-left: 4px;
}

.purchase-option-meta {
	font-family: var(--font-sans);
	font-size: 12px;
	color: var(--text-body-soft);
	line-height: 1.55;
}

.purchase-cta {
	width: 100%;
	justify-content: center;
	font-size: 16px;
	min-height: 56px;
}

.purchase-trust {
	font-size: 12px;
	color: var(--muted);
	text-align: center;
	margin: 0;
	line-height: 1.55;
}

.purchase-payment {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	padding-top: var(--s-3);
	border-top: 0.5px solid var(--border);
	margin: 0;
}
.purchase-payment li {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	color: var(--muted);
	background: var(--cream);
	border: 0.5px solid var(--border);
	border-radius: var(--r-sm);
	padding: 4px 8px;
}

/* Mobile: gallery + form stack */
@media (max-width: 900px) {
	.product-hero-grid { grid-template-columns: 1fr; }
	.purchase-box {
		position: static;
		top: auto;
		padding: var(--s-5);
	}
	.gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
	.purchase-title { font-size: 28px; }
	.purchase-option-price { font-size: 20px; }
}

/* ───────── How-to-use section ───────── */

.section-how-to-use .section-header { margin-bottom: var(--s-7); }
.how-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-5);
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: steps;
}
.how-step {
	background: rgba(247, 247, 244, 0.05);
	border: 0.5px solid rgba(247, 247, 244, 0.10);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	display: grid;
	gap: var(--s-4);
}
.how-step-image {
	aspect-ratio: 4 / 3;
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--sage);
}
.how-step-image img { width: 100%; height: 100%; object-fit: cover; }
.how-step-eyebrow {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--s-2);
	display: block;
}
.how-step-title {
	font-family: var(--font-display);
	font-size: 19px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: var(--s-2);
}
.how-step-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(247, 247, 244, 0.78);
	margin: 0;
	max-width: none;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ───────── Warnings section ───────── */

.section-warnings .section-header { margin-bottom: var(--s-6); }
.warnings-block {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(20px, 3vw, 32px);
}
.warnings-block h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	color: var(--teal);
	margin-block: var(--s-5) var(--s-3);
}
.warnings-block h3:first-child { margin-top: 0; }
.warning-list {
	margin: 0;
	padding-left: 0;
	display: grid;
	gap: var(--s-2);
	list-style: none;
}
.warning-list li {
	font-size: 14px;
	line-height: 1.55;
	color: var(--text-body);
	padding-left: 20px;
	position: relative;
}
.warning-list li::before {
	content: "!";
	position: absolute;
	left: 0; top: 0;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: rgba(185, 150, 95, 0.18);
	color: var(--gold-cta);
	font-size: 10px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.warnings-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	font-family: var(--font-sans);
	margin-bottom: var(--s-5);
}
.warnings-table th, .warnings-table td {
	padding: var(--s-3) var(--s-4);
	text-align: left;
	font-size: 13px;
	border-bottom: 0.5px solid var(--border);
}
.warnings-table thead th {
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--gold-cta);
	background: rgba(185, 150, 95, 0.06);
}
.warnings-table td:first-child { font-weight: 600; color: var(--teal); width: 40%; }
.warnings-table td:last-child { color: var(--text-body-soft); }
.warnings-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 600px) {
	.warnings-table thead { display: none; }
	.warnings-table tbody tr {
		display: block;
		padding: var(--s-3) 0;
		border-bottom: 0.5px solid var(--border);
	}
	.warnings-table td {
		display: block;
		width: 100% !important;
		padding: 2px 0;
		border-bottom: 0;
	}
}

/* ─────────────────────────────────────────────
   29. CHECKOUT FUNNEL (Phase 6 — WooCommerce overrides)
───────────────────────────────────────────── */

/* WooCommerce wraps everything in .woocommerce — kill its default narrow width */
body.woocommerce-checkout .woocommerce,
body.woocommerce-cart .woocommerce,
body.woocommerce-order-received .woocommerce {
	max-width: none;
	padding: 0;
	margin: 0;
}

/* ───────── Checkout: brand strip header ───────── */

.wellora-checkout-shell {
	background: var(--cream);
	padding-block: 0 var(--s-8); /* override global section padding */
}

/* The brand strip IS the checkout header. The regular site header is
   suppressed on checkout (see header.php) so there's no padding above. */
.checkout-brand-strip {
	background: var(--cream);
	border-bottom: 0.5px solid var(--border);
	padding: var(--s-4) 0;
	margin-bottom: var(--s-7);
}
.checkout-brand-strip .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--s-5);
	flex-wrap: wrap;
}
.checkout-brand-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--teal);
}
.checkout-brand-link svg {
	height: 66px;
	width: auto;
	display: block;
}
.checkout-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-4);
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	color: var(--text-body-soft);
	letter-spacing: 0.02em;
}
.checkout-trust-row li {
	position: relative;
	padding-left: 18px;
}
.checkout-trust-row li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 10px;
	height: 6px;
	border-left: 1.5px solid var(--gold-cta);
	border-bottom: 1.5px solid var(--gold-cta);
	transform: rotate(-45deg);
}

/* Suppress the WC notice wrapper that fires above our shell (we already
   strip coupon + login forms in functions.php). Any remaining notices
   appear inside the form via woocommerce_before_checkout_form fallback. */
.wellora-checkout-shell + .woocommerce-NoticeGroup,
.woocommerce-NoticeGroup-checkout {
	max-width: 1180px;
	margin: 0 auto var(--s-4);
	padding: 0 24px;
}

@media (max-width: 900px) {
	.checkout-brand-strip { padding: var(--s-3) 0; margin-bottom: var(--s-5); }
	.checkout-brand-link svg { height: 54px; }
}
@media (max-width: 600px) {
	.checkout-brand-strip .container {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--s-3);
	}
	.checkout-brand-link svg { height: 51px; }
	.checkout-trust-row { gap: var(--s-3); font-size: 11px; }
}

/* ───────── Checkout: two-column grid ───────── */

.checkout-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(32px, 4vw, 56px);
	align-items: start;
}

@media (max-width: 900px) {
	.checkout-grid { grid-template-columns: 1fr; }
	.checkout-summary-col { order: -1; } /* summary first on mobile */
}

.checkout-form-col h3,
.checkout-form-col .woocommerce-billing-fields h3,
.checkout-form-col .woocommerce-shipping-fields h3,
.checkout-form-col .woocommerce-additional-fields h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.2px;
	color: var(--teal);
	margin: var(--s-5) 0 var(--s-4);
}

.checkout-details-stack > div + div {
	margin-top: var(--s-5);
	padding-top: var(--s-5);
	border-top: 0.5px solid var(--border);
}

/* Inputs — clean, brand-matched */
.wellora-checkout-form .form-row,
.wellora-cart-form .form-row {
	margin-bottom: var(--s-3);
	display: block;
}
.wellora-checkout-form label,
.wellora-cart-form label {
	display: block;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--text-body);
	margin-bottom: 6px;
}
.wellora-checkout-form .required {
	color: var(--gold-cta);
	text-decoration: none;
	border: 0;
}
.wellora-checkout-form input[type="text"],
.wellora-checkout-form input[type="email"],
.wellora-checkout-form input[type="tel"],
.wellora-checkout-form input[type="password"],
.wellora-checkout-form input[type="number"],
.wellora-checkout-form select,
.wellora-checkout-form textarea,
.wellora-checkout-form .select2-selection {
	width: 100%;
	padding: 12px 14px;
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--text-body);
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.wellora-checkout-form input:focus,
.wellora-checkout-form select:focus,
.wellora-checkout-form textarea:focus {
	border-color: var(--gold-cta);
	box-shadow: 0 0 0 3px rgba(185, 150, 95, 0.18);
	outline: none;
}
.wellora-checkout-form .select2-container .select2-selection--single { height: 44px; }
.wellora-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 44px;
	padding-left: 14px;
	color: var(--text-body);
}
.wellora-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow { height: 44px; }

/* ───────── Checkout: summary card ───────── */

.checkout-summary-card {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: clamp(20px, 3vw, 32px);
	position: sticky;
	top: 96px;
	box-shadow: var(--shadow-card);
}
@media (max-width: 900px) { .checkout-summary-card { position: static; top: auto; } }

.checkout-summary-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--s-3);
	margin-bottom: var(--s-4);
}
.checkout-summary-heading {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 22px;
	color: var(--teal);
	margin: 0;
	letter-spacing: -0.3px;
}
.checkout-edit-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	color: var(--gold-cta);
	text-decoration: none;
	letter-spacing: 0.02em;
	border-bottom: 1px solid transparent;
	transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.checkout-edit-cart-link:hover,
.checkout-edit-cart-link:focus-visible {
	color: var(--teal);
	border-bottom-color: var(--gold-cta);
}
.checkout-edit-cart-link:focus-visible {
	outline: 2px solid rgba(185, 150, 95, 0.45);
	outline-offset: 2px;
	border-radius: var(--r-sm);
}

#order_review .shop_table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-sans);
	font-size: 14px;
	border: 0;
	background: transparent;
}
#order_review .shop_table th,
#order_review .shop_table td {
	padding: var(--s-3) 0;
	border: 0;
	border-bottom: 0.5px solid var(--border);
	text-align: left;
	color: var(--text-body);
	background: transparent;
}
/* Header row — small uppercase labels, no harsh border around it */
#order_review .shop_table thead th {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	padding-top: 0;
	padding-bottom: var(--s-3);
	border-bottom: 0.5px solid var(--border);
}
#order_review .shop_table thead th.product-total { text-align: right; }

#order_review .shop_table .cart_item td {
	padding: var(--s-4) 0;
}
#order_review .shop_table .cart_item .product-name {
	font-weight: 600;
	color: var(--teal);
}
#order_review .shop_table .cart_item .product-name .product-quantity {
	display: inline-block;
	margin-left: 6px;
	font-family: var(--font-sans);
	font-weight: 500;
	color: var(--muted);
}
#order_review .shop_table .cart_item .product-total {
	text-align: right;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--teal);
	white-space: nowrap;
}

/* Subtotal / Fee / Shipping rows in tfoot */
#order_review .shop_table tfoot th {
	font-weight: 500;
	color: var(--text-body-soft);
	font-size: 13px;
	padding-block: var(--s-2);
}
#order_review .shop_table tfoot td {
	text-align: right;
	font-family: var(--font-sans);
	font-weight: 600;
	color: var(--text-body);
	font-size: 14px;
	padding-block: var(--s-2);
	white-space: nowrap;
}

/* Total row — bold + brand teal, larger, no border */
#order_review .shop_table .order-total th,
#order_review .shop_table .order-total td {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--teal);
	letter-spacing: -0.4px;
	padding-top: var(--s-4);
	padding-bottom: 0;
	border-top: 0.5px solid var(--border);
	border-bottom: 0 !important;
}
#order_review .shop_table .order-total .includes_tax,
#order_review .shop_table .order-total small {
	display: block;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	color: var(--muted);
	margin-top: 4px;
	letter-spacing: 0;
}
#order_review .shop_table tfoot tr:last-child td,
#order_review .shop_table tfoot tr:last-child th { border-bottom: 0; }

#payment {
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin-top: var(--s-5);
	padding-top: var(--s-5);
	border-top: 0.5px solid var(--border);
}
#payment ul.payment_methods {
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0;
	background: transparent;
}
/* If no payment gateways are enabled, WC outputs <ul><li></li></ul> with
   no labels — a blank grey box. Collapse it and surface a brand notice
   so the customer sees the actual situation. */
#payment ul.payment_methods:not(:has(label)) {
	display: none;
}
#payment ul.payment_methods:not(:has(label)) + .form-row::before {
	content: "Payment methods are still being configured. Email info@welloravitals.com if you'd like to be notified the moment we go live.";
	display: block;
	margin-bottom: var(--s-4);
	padding: var(--s-3) var(--s-4);
	background: rgba(185, 150, 95, 0.07);
	border: 0.5px solid rgba(185, 150, 95, 0.25);
	border-left: 3px solid var(--gold-cta);
	border-radius: var(--r-md);
	font-family: var(--font-sans);
	font-size: 13px;
	line-height: 1.55;
	color: var(--text-body);
}
#payment ul.payment_methods li {
	border-bottom: 0.5px solid var(--border);
	padding: var(--s-3) 0;
}
#payment ul.payment_methods li:last-child { border-bottom: 0; }
#payment ul.payment_methods li label {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--text-body);
	display: inline;
	margin: 0 0 0 8px;
}
#payment .payment_box {
	background: var(--cream);
	border-radius: var(--r-sm);
	padding: var(--s-3);
	margin-top: var(--s-2);
	font-size: 13px;
	color: var(--text-body-soft);
	line-height: 1.55;
	box-shadow: none;
}
#payment .payment_box::before {
	display: none !important;
}

/* The "no payment methods available" notice WC injects into #payment .wc_payment_methods when no gateway is enabled.
   Make it look like a soft warning card, not a foreign block. */
#payment > .woocommerce-notice,
#payment ul.woocommerce-notices-wrapper,
#payment .woocommerce-NoticeGroup,
#payment .woocommerce-info {
	background: rgba(185, 150, 95, 0.07) !important;
	border: 0.5px solid rgba(185, 150, 95, 0.25) !important;
	border-left: 3px solid var(--gold-cta) !important;
	border-radius: var(--r-md) !important;
	padding: var(--s-3) var(--s-4) !important;
	margin: 0 0 var(--s-4) 0 !important;
	font-size: 13px;
	line-height: 1.55;
	color: var(--text-body) !important;
	box-shadow: none !important;
	display: block;
}

#place_order {
	width: 100%;
	margin-top: var(--s-4);
	background: var(--gold-cta);
	color: var(--white);
	border: 0;
	border-radius: var(--r-pill);
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 16px 28px;
	cursor: pointer;
	min-height: 56px;
	transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
#place_order:hover { background: #6a5029; }
#place_order:active { transform: translateY(1px); }
#place_order:focus-visible { outline: 3px solid rgba(185, 150, 95, 0.45); outline-offset: 2px; }

/* ───────── Order bump ───────── */

.wellora-bump-row td {
	padding: var(--s-4) 0 !important;
	border-bottom: 0 !important;
}
.wellora-bump {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: var(--s-3);
	align-items: start;
	padding: var(--s-4);
	background: rgba(185, 150, 95, 0.07);
	border: 1.5px dashed rgba(185, 150, 95, 0.45);
	border-radius: var(--r-md);
	cursor: pointer;
	transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.wellora-bump:hover {
	background: rgba(185, 150, 95, 0.11);
	border-color: var(--gold-cta);
}
.wellora-bump.is-checked {
	background: rgba(185, 150, 95, 0.15);
	border-color: var(--gold-cta);
	border-style: solid;
}
.wellora-bump input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.wellora-bump-box {
	width: 22px;
	height: 22px;
	border: 1.5px solid var(--gold-cta);
	border-radius: 4px;
	background: var(--white);
	display: inline-block;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
}
.wellora-bump.is-checked .wellora-bump-box { background: var(--gold-cta); }
.wellora-bump.is-checked .wellora-bump-box::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 7px;
	height: 12px;
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(45deg);
}
.wellora-bump-text {
	display: grid;
	gap: 4px;
	font-family: var(--font-sans);
}
.wellora-bump-head {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: var(--teal);
	line-height: 1.3;
}
.wellora-bump-head .woocommerce-Price-amount { color: var(--gold-cta); }
.wellora-bump-sub {
	font-size: 13px;
	color: var(--text-body-soft);
	line-height: 1.55;
}

/* ───────── Checkout: compliance + trust above Place Order ───────── */

.checkout-compliance {
	margin-top: var(--s-5);
	padding-top: var(--s-4);
	border-top: 0.5px solid var(--border);
}
.checkout-compliance-text {
	font-family: var(--font-sans);
	font-size: 12px;
	line-height: 1.6;
	color: var(--text-body-soft);
	margin: 0 0 var(--s-3);
}
.checkout-compliance-trust {
	display: grid;
	gap: 6px;
	margin: 0 0 var(--s-3);
	padding: 0;
	list-style: none;
}
.checkout-compliance-trust li {
	font-family: var(--font-sans);
	font-size: 12px;
	color: var(--text-body);
	padding-left: 18px;
	position: relative;
	line-height: 1.5;
}
.checkout-compliance-trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 10px;
	height: 6px;
	border-left: 1.5px solid var(--gold-cta);
	border-bottom: 1.5px solid var(--gold-cta);
	transform: rotate(-45deg);
}

/* On checkout, the inline per-field error (red border + message under
   the input) is enough. Suppress the aggregated error stack at the top
   of the form so the customer isn't told the same thing twice. */
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-NoticeGroup-checkout,
body.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce > .woocommerce-notices-wrapper:has(.woocommerce-error) {
	display: none;
}

/* WC notices — match brand */
.woocommerce-NoticeGroup,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-left: 3px solid var(--gold-cta);
	padding: var(--s-4) var(--s-4) var(--s-4) var(--s-5);
	border-radius: var(--r-md);
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--text-body);
	margin: 0 0 var(--s-4) 0;
	list-style: none;
	box-shadow: var(--shadow-card);
}
.woocommerce-NoticeGroup {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}
.woocommerce-error {
	border-left-color: #b94a3a;
	background: rgba(185, 74, 58, 0.04);
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
	list-style: none;
	margin: 0 0 4px 0;
	padding: 0;
	line-height: 1.55;
}
.woocommerce-error li:last-child,
.woocommerce-info li:last-child,
.woocommerce-message li:last-child { margin-bottom: 0; }
.woocommerce-error li::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 8px;
	border-radius: 50%;
	background: #b94a3a;
	color: var(--white);
	font-size: 10px;
	font-weight: 800;
	text-align: center;
	line-height: 14px;
	vertical-align: middle;
}
.woocommerce-error li strong {
	color: #b94a3a;
	font-weight: 700;
}

/* Inline field validation errors below each input */
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.woocommerce form .form-row.woocommerce-invalid .select2-selection {
	border-color: #b94a3a !important;
	box-shadow: 0 0 0 3px rgba(185, 74, 58, 0.10) !important;
}
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select,
.woocommerce form .form-row.woocommerce-validated .select2-selection {
	border-color: rgba(31, 79, 90, 0.20);
}
.woocommerce-error-message {
	display: block;
	margin-top: 6px;
	color: #b94a3a;
	font-size: 12px;
	font-weight: 500;
}

/* Select2 country / state dropdown — WC's default styling fights ours.
   Override so the rendered text sits inside the field cleanly. */
.wellora-checkout-form .select2-container--default .select2-selection--single {
	height: 44px;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	background: var(--white);
	padding: 0;
}
.wellora-checkout-form .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 42px;
	padding: 0 36px 0 14px;
	color: var(--text-body);
	font-family: var(--font-sans);
	font-size: 14px;
	text-decoration: none !important;
	border: 0 !important;
}
.wellora-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 42px;
	width: 32px;
	right: 4px;
	top: 0;
}
.wellora-checkout-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--text-body-soft) transparent transparent transparent;
}
.wellora-checkout-form .select2-container--default.select2-container--focus .select2-selection--single,
.wellora-checkout-form .select2-container--default.select2-container--open .select2-selection--single {
	border-color: var(--gold-cta);
	box-shadow: 0 0 0 3px rgba(185, 150, 95, 0.18);
}
.wellora-checkout-form .select2-container--default .select2-selection__placeholder {
	color: var(--muted);
}

/* Select2 dropdown panel itself */
.select2-container--default .select2-dropdown {
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	background: var(--white);
	box-shadow: var(--shadow-card);
}
.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	padding: 8px 12px;
	font-family: var(--font-sans);
	font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background: var(--gold-cta);
	color: var(--white);
}
.select2-container--default .select2-results__option[aria-selected="true"] {
	background: rgba(185, 150, 95, 0.08);
	color: var(--text-body);
}

/* Hide the native fallback element that some WC versions render below the
   Select2 widget (the underlined "United States (US)" line in the bug
   screenshot). */
.wellora-checkout-form .country_select + .select2-container + .select2-hidden-accessible,
.wellora-checkout-form #billing_country_field .woocommerce-input-wrapper > strong,
.wellora-checkout-form #shipping_country_field .woocommerce-input-wrapper > strong {
	display: none !important;
}

/* ───────── Cart page ───────── */

.wellora-cart .cart-header {
	text-align: center;
	margin-bottom: var(--s-6);
}
.wellora-cart .cart-header h1 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(32px, 4vw, 44px);
	color: var(--teal);
	margin: var(--s-2) 0;
	letter-spacing: -0.5px;
	text-wrap: balance;
}
.wellora-cart .cart-header .lead {
	max-width: 560px;
	margin-inline: auto;
	text-wrap: balance;
}

/* Empty cart state */
.wellora-cart-empty .cart-header { margin-bottom: var(--s-7); }
.wellora-cart-empty .cart-header .lead { margin-inline: auto; max-width: 540px; }

.cart-empty-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--s-3);
	margin-bottom: var(--s-7);
}
.cart-empty-actions .btn { min-height: 52px; padding-inline: 28px; }

.cart-empty-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--s-4);
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: var(--font-sans);
	font-size: 13px;
	color: var(--text-body-soft);
}
.cart-empty-trust li {
	position: relative;
	padding-left: 18px;
}
.cart-empty-trust li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 10px;
	height: 6px;
	border-left: 1.5px solid var(--gold-cta);
	border-bottom: 1.5px solid var(--gold-cta);
	transform: rotate(-45deg);
}
@media (max-width: 600px) {
	.cart-empty-actions { flex-direction: column; align-items: stretch; }
	.cart-empty-actions .btn { width: 100%; justify-content: center; }
	.cart-empty-trust { flex-direction: column; align-items: center; gap: var(--s-2); text-align: center; }
}

/* WC notices on cart + checkout: contain to the page gutter so they
   don't sprawl edge-to-edge above the cart hero. */
body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
body.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
	padding: var(--s-5) 24px 0;
}
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
	margin: 0 auto var(--s-3);
	border-radius: var(--r-md);
}

/* "Cart updated." success message — green-tinted, branded checkmark,
   tighter than the default WC layout. */
.woocommerce-message {
	display: flex !important;
	align-items: center;
	gap: var(--s-3);
	position: relative;
	border-left-color: #5a8e6f !important;
	background: rgba(90, 142, 111, 0.06) !important;
	color: var(--teal);
	font-weight: 500;
	font-size: 14px;
	padding: var(--s-3) var(--s-4) !important;
}
/* WC's default ::before is absolutely positioned with a custom-font glyph,
   which overlaps the message text. Replace with a static-position flex
   child rendering our own circle + checkmark via inline SVG data URI. */
.woocommerce-message::before {
	content: "" !important;
	flex-shrink: 0;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	position: static !important;
	left: auto !important;
	top: auto !important;
	width: 22px !important;
	height: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 50%;
	background: #5a8e6f url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8l3.5 3.5L13 5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat !important;
	color: transparent !important;
	font-size: 0 !important;
	font-family: inherit !important;
}
/* Hide WC's own Return to shop button inside the success message — our
   cart already has the items, no need to push them back to the shop. */
.woocommerce-message .button,
.woocommerce-message .wc-forward { display: none !important; }

.wellora-cart-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	margin-bottom: var(--s-5);
}
.wellora-cart-table thead th {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	background: var(--cream);
	padding: var(--s-3) var(--s-4);
	text-align: left;
	border-bottom: 0.5px solid var(--border);
}
.wellora-cart-table tbody td {
	padding: var(--s-4);
	border-bottom: 0.5px solid var(--border);
	vertical-align: middle;
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--text-body);
}
.wellora-cart-table tbody tr:last-child td { border-bottom: 0; }
.wellora-cart-table .product-thumbnail img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: var(--r-sm);
	display: block;
}
.wellora-cart-table .product-name a { color: var(--teal); font-weight: 600; text-decoration: none; }
.wellora-cart-table .product-name a:hover { text-decoration: underline; }
.wellora-cart-table .quantity input.qty {
	width: 64px;
	padding: 8px;
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	text-align: center;
	font-family: var(--font-sans);
	font-size: 14px;
}
.wellora-cart-table .product-price {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--teal);
	white-space: nowrap;
}

/* Remove column — its own cell, centered between quantity and total */
.wellora-cart-table th.product-remove,
.wellora-cart-table td.product-remove {
	width: 56px;
	text-align: center;
	vertical-align: middle;
	padding-inline: var(--s-2);
}
.wellora-cart-table a.remove {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	color: var(--muted) !important;
	background: transparent !important;
	border: 1px solid var(--border);
	border-radius: var(--r-sm);
	text-decoration: none;
	font-size: 0; /* nuke any WC text glyph fallback */
	line-height: 1;
	transition: color 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.wellora-cart-table a.remove .remove-icon {
	width: 18px;
	height: 18px;
	display: block;
	flex-shrink: 0;
}
.wellora-cart-table a.remove:hover,
.wellora-cart-table a.remove:focus-visible {
	color: #b94a3a !important;
	background: rgba(185, 74, 58, 0.08) !important;
	border-color: rgba(185, 74, 58, 0.35);
}
.wellora-cart-table a.remove:focus-visible {
	outline: 2px solid rgba(185, 74, 58, 0.45);
	outline-offset: 2px;
}

/* The manual Update cart button is a no-JS fallback. With JS, qty change
   auto-submits so the button is just visual noise. */
.js .wellora-cart-form .cart-actions-row { display: none; }
.wellora-cart-form.is-updating { opacity: 0.6; pointer-events: none; }
.wellora-cart-table .actions { padding: var(--s-4); background: var(--cream); }
.wellora-cart-table .actions .btn { margin-right: var(--s-3); }

.cart_totals {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--s-5);
	max-width: 420px;
	margin-left: auto;
}
.cart_totals h2 {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--teal);
	margin: 0 0 var(--s-3);
}
.cart_totals table { width: 100%; font-family: var(--font-sans); font-size: 14px; }
.cart_totals table th { text-align: left; padding: var(--s-2) 0; color: var(--text-body); font-weight: 500; }
.cart_totals table td { text-align: right; padding: var(--s-2) 0; color: var(--text-body); }
.cart_totals .order-total th,
.cart_totals .order-total td {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 18px;
	color: var(--teal);
	padding-top: var(--s-3);
	border-top: 0.5px solid var(--border);
}
.cart_totals .checkout-button,
.wc-proceed-to-checkout .checkout-button,
a.checkout-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin-top: var(--s-4);
	background: var(--gold-cta) !important;
	color: var(--white) !important;
	border: 0 !important;
	border-radius: var(--r-pill) !important;
	padding: 14px 24px !important;
	font-family: var(--font-display) !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	text-decoration: none !important;
	min-height: 52px;
	text-transform: none;
	letter-spacing: 0.02em;
}
.cart_totals .checkout-button:hover,
.wc-proceed-to-checkout .checkout-button:hover,
a.checkout-button:hover { background: #6a5029 !important; }

.cart-continue {
	text-align: center;
	margin-top: var(--s-5);
}

@media (max-width: 700px) {
	.wellora-cart-table thead { display: none; }
	.wellora-cart-table tbody td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: var(--s-2) var(--s-3);
		border-bottom: 0;
	}
	.wellora-cart-table tbody td.product-thumbnail { padding-top: var(--s-4); }
	.wellora-cart-table tbody tr {
		display: block;
		border-bottom: 0.5px solid var(--border);
		padding-bottom: var(--s-3);
	}
	.wellora-cart-table tbody td::before {
		content: attr(data-title);
		font-weight: 600;
		color: var(--muted);
		font-size: 12px;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}
	.wellora-cart-table .product-thumbnail::before { content: none; }
	.wellora-cart-table td.product-remove {
		width: auto;
		justify-content: flex-end;
	}
	.wellora-cart-table td.product-remove::before {
		content: attr(data-title);
		font-weight: 600;
		color: var(--muted);
		font-size: 12px;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}
	.cart_totals { max-width: none; }
}

/* ───────── Thank-you page ───────── */

.wellora-thankyou .thankyou-hero {
	text-align: center;
	margin-bottom: var(--s-6);
}
.wellora-thankyou .thankyou-h1 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(34px, 4.6vw, 52px);
	line-height: 1.05;
	letter-spacing: -0.8px;
	color: var(--teal);
	margin: var(--s-3) 0;
}
.wellora-thankyou .lead {
	font-size: 17px;
	color: var(--text-body-soft);
	line-height: 1.6;
	margin: 0 auto;
	max-width: 560px;
}
.wellora-thankyou .lead strong { color: var(--teal); }

.thankyou-meta {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-3);
	margin: 0 0 var(--s-7);
	padding: var(--s-4);
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	list-style: none;
}
.thankyou-meta li {
	text-align: center;
	display: grid;
	gap: 4px;
}
.thankyou-meta .meta-label {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}
.thankyou-meta .meta-value {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	color: var(--teal);
}
@media (max-width: 700px) {
	.thankyou-meta { grid-template-columns: 1fr; gap: var(--s-3); }
	.thankyou-meta li { padding: var(--s-2) 0; border-bottom: 0.5px solid var(--border); }
	.thankyou-meta li:last-child { border-bottom: 0; }
}

.thankyou-block {
	margin-bottom: var(--s-7);
	padding: clamp(24px, 3vw, 36px);
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
}
.thankyou-h2 {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(22px, 2.6vw, 28px);
	line-height: 1.25;
	color: var(--teal);
	margin: 0 0 var(--s-5);
	letter-spacing: -0.3px;
}
.thankyou-steps {
	display: grid;
	gap: var(--s-4);
	margin: 0;
	padding: 0;
	list-style: none;
}
.thankyou-steps li {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: var(--s-4);
	align-items: start;
}
.thankyou-steps .step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--cream);
	border: 1.5px solid var(--gold);
	color: var(--gold-cta);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.thankyou-steps h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
	color: var(--teal);
	margin: 0 0 4px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.thankyou-steps p {
	font-size: 14px;
	line-height: 1.65;
	color: var(--text-body);
	margin: 0;
	max-width: 56ch;
}

.thankyou-support {
	text-align: center;
}
.thankyou-support .thankyou-h2 { margin-bottom: var(--s-3); }
.thankyou-support .link-arrow {
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 15px;
}

.thankyou-order-details {
	background: var(--white);
	border: 0.5px solid var(--border);
	border-radius: var(--r-lg);
	padding: var(--s-4);
	font-family: var(--font-sans);
}
.thankyou-order-details summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--teal);
	font-size: 14px;
	letter-spacing: 0.02em;
}
.thankyou-order-details summary:focus-visible {
	outline: 2px solid var(--gold-cta);
	outline-offset: 2px;
	border-radius: var(--r-sm);
}
.thankyou-order-details-inner {
	margin-top: var(--s-4);
	font-size: 14px;
	color: var(--text-body);
}
.thankyou-order-details-inner table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: var(--s-4);
}
.thankyou-order-details-inner th,
.thankyou-order-details-inner td {
	padding: var(--s-2);
	border-bottom: 0.5px solid var(--border);
	text-align: left;
}

/* ─────────────────────────────────────────────
   30. PLACEHOLDER (used by index.php fallback only)
───────────────────────────────────────────── */

.placeholder-main {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: var(--gutter);
}

.placeholder-inner {
	max-width: 680px;
	text-align: center;
}

.placeholder-inner .overline {
	margin-bottom: var(--s-4);
	display: block;
}

.placeholder-inner h1 {
	margin-bottom: var(--s-4);
}

.placeholder-inner p {
	margin-inline: auto;
	color: var(--text-body-soft);
}
