/** Shopify CDN: Minification failed

Line 4136:10 Expected identifier but found whitespace
Line 4136:15 Unexpected ";"

**/
/* Bust CDN cache 1779112341 */
/* DUSKHALO — base theme styles
 * Brand: void near-black + ghost light + deep ice accent.
 * Typography: display + Inter (body).
 * Tone: low, calm, no urgency tactics.
 */

:root {
  /* Colour tokens — British spelling per briefs/02-design-system.md */
  --colour-primary: #16161f;
  --colour-secondary: #2b2d55;
  --colour-background: #f2f4f8;
  --colour-card: #ffffff;
  --colour-text: #14141c;
  --colour-accent: #3f8cc4;
  --colour-border: #dde3ee;

  /* Extended colour tokens — declared per briefs/02-design-system.md.
     Not driven by Shopify settings; hardcoded defaults. */
  --colour-text-muted: #6B6B6B;   /* Soft grey — captions, secondary text */
  --colour-success:    #2b2d55;   /* Same as secondary — guarantee badges */
  --colour-error:      #8B3A2F;   /* Soft brick — form errors only */
  --colour-white:      #FFFFFF;   /* Pure white — button text, modal bg only */

  /* Brand fonts (DUSKHALO):
     Sora (display) — heavy geometric, the voice of certainty.
     Inter (body) — proven DR body font.
     Italic accent kept via --font-italic for testifier/strapline moments. */
  --font-display: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;

  --page-width: 1280px;
  --btn-radius: 2px;
  --btn-tracking: calc(120 / 1000 * 1em);

  /* Container widths — px-based per briefs/03-section-pattern.md.
     Coexist with --page-width during Phase 0; reconciliation deferred. */
  --container-max:    1280px;   /* Full-width — matches --page-width */
  --container-text:   680px;    /* Prose-heavy sections, founder, guarantee */
  --container-narrow: 560px;    /* Realisation, FAQ */

  /* Spacing scale — px-based per briefs/02-design-system.md */
  --space-1:  0.25rem;   /* 4px   */
  --space-2:  0.5rem;    /* 8px   */
  --space-3:  0.75rem;   /* 12px  */
  --space-4:  1rem;      /* 16px  */
  --space-6:  1.5rem;    /* 24px  */
  --space-8:  2rem;      /* 32px  */
  --space-12: 3rem;      /* 48px  */
  --space-16: 4rem;      /* 64px  */
  --space-20: 5rem;      /* 80px  */
  --space-24: 6rem;      /* 96px  */
  --space-32: 8rem;      /* 128px */
  --space-40: 10rem;     /* 160px */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--colour-background);
  color: var(--colour-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--colour-primary);
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover { color: var(--colour-secondary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4) 0;
  color: var(--colour-text);
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.375rem, 2vw + 0.75rem, 1.75rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 400; }
h5 { font-size: 1.125rem; font-weight: 400; }
h6 { font-size: 1rem; font-weight: 500; }

p { margin: 0 0 var(--space-4) 0; }

strong, b { font-weight: 500; }

.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-8); }
}

/* Buttons */

.btn,
button.btn,
a.btn {
  display: inline-block;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--btn-tracking);
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.btn--primary,
.btn[data-variant="primary"] {
  background: var(--colour-primary);
  color: var(--colour-background);
  border-color: var(--colour-primary);
}
.btn--primary:hover,
.btn[data-variant="primary"]:hover {
  background: var(--colour-secondary);
  border-color: var(--colour-secondary);
  color: var(--colour-background);
}

.btn--secondary,
.btn[data-variant="secondary"] {
  background: var(--colour-background);
  color: var(--colour-primary);
  border-color: var(--colour-primary);
}
.btn--secondary:hover,
.btn[data-variant="secondary"]:hover {
  background: var(--colour-primary);
  color: var(--colour-background);
}

.btn--link {
  background: transparent;
  color: var(--colour-primary);
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--colour-primary);
}

/* Header */

.site-header {
  background: var(--colour-background);
  border-bottom: 1px solid var(--colour-border);
  padding: var(--space-6) 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}
.site-header__logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--colour-primary);
}
.site-header__logo:hover { color: var(--colour-secondary); }
.site-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .site-header__nav { display: flex; gap: var(--space-8); }
}
.site-header__nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--colour-text);
}
.site-header__nav a:hover { color: var(--colour-primary); }
.site-header__cart {
  font-size: 0.875rem;
  color: var(--colour-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Footer */

.site-footer {
  background: var(--colour-primary);
  color: var(--colour-background);
  padding: var(--space-24) 0 var(--space-8);
  margin-top: var(--space-32);
}
.site-footer a { color: var(--colour-background); opacity: 0.85; }
.site-footer a:hover { opacity: 1; color: var(--colour-background); }
.site-footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 768px) {
  .site-footer__columns { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--space-8); }
}
.site-footer__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--colour-background);
  letter-spacing: -0.01em;
}
.site-footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
  color: var(--colour-accent);
  opacity: 1;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { margin-bottom: var(--space-2); font-size: 0.9375rem; }
.site-footer__list a { transition: opacity 200ms ease; }
.site-footer__list a:hover { text-decoration: underline; text-underline-offset: 3px; opacity: 1; }
.site-footer__bottom {
  border-top: 1px solid rgba(242, 244, 248, 0.15);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  font-size: 0.8125rem;
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Hero */

.hero {
  padding: var(--space-24) 0;
  text-align: center;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colour-accent);
  margin-bottom: var(--space-4);
}
.hero__title {
  font-size: clamp(2.5rem, 6vw + 1rem, 5rem);
  font-weight: 500;
  margin-bottom: var(--space-6);
}
.hero__lede {
  font-size: 1.125rem;
  max-width: 56ch;
  margin: 0 auto var(--space-8);
  color: var(--colour-text);
  opacity: 0.85;
}
.hero__cta { margin-top: var(--space-4); }

/* Rich text */

.section--rich-text {
  padding: var(--space-16) 0;
  text-align: center;
}
.section--rich-text .container { max-width: 720px; }

/* Image with text */

.iwt {
  padding: var(--space-16) 0;
}
.iwt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .iwt__grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .iwt--right .iwt__media { order: 2; }
}
.iwt__media img { width: 100%; height: auto; display: block; }
.iwt__text h2 { margin-bottom: var(--space-4); }

/* Product page (skeleton) */

.product {
  padding: var(--space-12) 0;
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .product__grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-16); }
}
.product__media img { width: 100%; height: auto; display: block; }
.product__title { font-size: clamp(2rem, 3vw + 1rem, 3rem); margin-bottom: var(--space-3); }
.product__price {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
}
.product__price--compare {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: var(--space-2);
  font-weight: 400;
}
.product__desc { font-size: 1rem; margin-bottom: var(--space-8); }
.product__form button[type="submit"] { width: 100%; }

/* Cart / page / generic main */

.main-page,
.main-cart,
.main-collection,
.main-search,
.main-blog,
.main-article,
.main-list-collections {
  padding: var(--space-16) 0;
}
.main-page__title,
.main-cart__title,
.main-collection__title,
.main-search__title,
.main-blog__title,
.main-article__title,
.main-list-collections__title {
  text-align: center;
  margin-bottom: var(--space-8);
}
.rte { max-width: 64ch; margin: 0 auto; }
.rte h2 { margin-top: var(--space-12); }
.rte ul, .rte ol { padding-left: 1.5em; }
.rte img { max-width: 100%; height: auto; }

/* 404 */

.page-404 { padding: var(--space-24) 0; text-align: center; }

/* Forms */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--colour-text);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--colour-primary);
}
label { display: block; margin-bottom: var(--space-2); font-size: 0.875rem; font-weight: 500; }
.form-row { margin-bottom: var(--space-4); }

/* Utility */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

.skip-to-content {
  position: absolute; top: -100px; left: 0;
  background: var(--colour-primary); color: var(--colour-background);
  padding: 0.75rem 1rem;
}
.skip-to-content:focus { top: 0; }

/* =========================================================================
 * dh- design system — Phase 0 foundation
 * Shared components used by every section rebuild.
 * Tier A: section structure + shared header utilities.
 * Tiers B–E follow below in subsequent Phase 0 commits.
 * ========================================================================= */

/* ---------- Tier A — Section structure + header utilities ---------- */

/* A2 — Section base (default padding, default background) */
.dh-section {
  position: relative;
  padding: var(--space-24) var(--space-6);
  background: var(--colour-background);
}
/* Static-banner section override — minimal padding, no padding-killing default bg */
.dh-section--pdp-static-banner {
  padding: 24px var(--space-6) !important;
  background: var(--dh-cream, #f2f4f8) !important;
}
.dh-section--pdp-static-banner .dh-pdp-static-banner__img {
  display: block;
  margin: 0 auto;
  /* Cap so 1024x1280 source doesn't stretch to fill ~1041px on desktop */
  max-height: 480px;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .dh-section--pdp-static-banner .dh-pdp-static-banner__img {
    max-height: 520px;
  }
}
@media (max-width: 768px) {
  .dh-section {
    padding: var(--space-16) var(--space-6);
  }
}

/* A3 — Section inner container (default max-width).
   Section-specific overrides set narrower widths via:
     .dh-realisation > .dh-section__inner { max-width: var(--container-narrow); }
     .dh-problem    > .dh-section__inner { max-width: var(--container-text);   }
*/
.dh-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* A4 — Overline (brass UPPERCASE label, sentence-case in admin) */
.dh-section__overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
  margin: 0 0 var(--space-6) 0;
}

/* A5 — Headline (Cormorant Garamond, h2 scale 32–48px) */
.dh-section__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--colour-primary);
  margin: 0 0 var(--space-8) 0;
}

/* A6 — Subhead (Inter body-large, 16–18px) */
.dh-section__subhead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--colour-text);
  margin: 0 0 var(--space-12) 0;
}

/* A7 — Brass dash decoration (40 × 1px).
   Two semantic names for the same visual element:
     __divider         — general divider between content blocks
     __pre-decoration  — the dash that sits above an overline
   Both render identically; section rebuilds may use either name. */
.dh-section__divider,
.dh-section__pre-decoration {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  border: 0;
  margin: 0 0 var(--space-6) 0;
}

/* A8 — Move sentence (default styling for section move beats).
   Section-specific moves may override (e.g. Problem uses italic Cormorant,
   Mechanism uses .dh-link--brass for a secondary-link move). */
.dh-section__move {
  margin-top: var(--space-12);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text);
}

/* ---------- Tier B — Section composition modifiers ---------- */

/* B1 — Compact padding modifier.
   Used by Trust bar (narrow strip section). Reduces section padding
   from default --space-24 / --space-16 to --space-12 / --space-8. */
.dh-section--compact {
  padding: var(--space-12) var(--space-6);
}
@media (max-width: 768px) {
  .dh-section--compact {
    padding: var(--space-8) var(--space-6);
  }
}

/* B2–B13 — Background-colour modifiers, one per landing-page section.
   Alternation rhythm: cream / card-cream / cream / card-cream / ...
   Final CTA (B14) breaks the rhythm with the void primary.

   Default .dh-section base sets background to --colour-background;
   the explicit per-section modifiers exist so the alternation is
   auditable from markup, and so section-specific overrides
   (e.g. Hero's radial spotlight) have a stable hook. */
.dh-section--hero            { background: var(--colour-background); }  /* B2  cream      */
.dh-section--trust-bar       { background: var(--colour-card);       }  /* B3  card cream */
.dh-section--problem         { background: var(--colour-background); }  /* B4  cream      */
.dh-section--realisation     { background: var(--colour-card);       }  /* B5  card cream */
.dh-section--mechanism       { background: var(--colour-background); }  /* B6  cream      */
.dh-section--proof           { background: var(--colour-card);       }  /* B7  card cream */
.dh-section--comparison      { background: var(--colour-background); }  /* B8  cream      */
.dh-section--audience        { background: var(--colour-card);       }  /* B9  card cream */
.dh-section--founder         { background: var(--colour-background); }  /* B10 cream      */
.dh-section--whats-in-the-box{ background: var(--colour-card);       }  /* B11 card cream */
.dh-section--guarantee       { background: var(--colour-background); }  /* B12 cream      */
.dh-section--faq             { background: var(--colour-card);       }  /* B13 card cream */

/* B14 — Final CTA (void primary with inverse white text).
   Only landing-page section with inverse text colouring.
   Overline and divider keep --colour-accent (brass) — brass on
   the void primary is the brand combination and remains accessible. */
.dh-section--final-cta {
  background: var(--colour-primary);
  color: var(--colour-white);
}
.dh-section--final-cta .dh-section__headline { color: var(--colour-white); }
.dh-section--final-cta .dh-section__subhead  { color: var(--colour-white); }
.dh-section--final-cta .dh-section__move     { color: var(--colour-white); }

/* ---------- Tier C — Buttons ---------- */

/* C1 — Base button.
   Shared by all variants. Variants set background, border, and colour.
   Anchor and button elements render identically with .dh-button:
   text-decoration reset, appearance reset, explicit padding/font, and a
   transparent default fill + border (overridden by variant modifiers). */
.dh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--btn-tracking);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  background: transparent;
  color: var(--colour-text);
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}

/* C2 — Disabled state (applies to all variants).
   Multi-selector rule covers both disabled buttons and a[aria-disabled="true"]. */
.dh-button:disabled,
.dh-button[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* C3 — Focus-visible state (applies to all variants).
   Brass outline ring — high contrast against every section background. */
.dh-button:focus-visible {
  outline: 2px solid var(--colour-accent);
  outline-offset: 2px;
}

/* C4 — Primary variant (void primary fill — the conversion-driving CTA) */
.dh-button--primary {
  background: var(--colour-primary);
  border-color: var(--colour-primary);
  color: var(--colour-white);
}
.dh-button--primary:hover {
  background: color-mix(in srgb, var(--colour-primary) 88%, black);
  border-color: color-mix(in srgb, var(--colour-primary) 88%, black);
}

/* C5 — Secondary variant (brass outline, transparent fill) */
.dh-button--secondary {
  background: transparent;
  border-color: var(--colour-accent);
  color: var(--colour-accent);
}
.dh-button--secondary:hover {
  border-color: color-mix(in srgb, var(--colour-accent) 80%, black);
  color: color-mix(in srgb, var(--colour-accent) 80%, black);
}

/* C6 — Inverse variant (white fill, void primary text — for use on dark sections).
   Hover inverts to transparent fill with white text + border. */
.dh-button--inverse {
  background: var(--colour-white);
  border-color: var(--colour-white);
  color: var(--colour-primary);
}
.dh-button--inverse:hover {
  background: transparent;
  color: var(--colour-white);
  border-color: var(--colour-white);
}

/* C7 — Large size modifier (stacks with any colour variant) */
.dh-button--large {
  padding: var(--space-4) var(--space-8);
  font-size: 16px;
}

/* ---------- Tier D — Cards + brass link ---------- */

/* D1 — Card base.
   Used by Mechanism cards, Audience cards, and any other section
   needing an elevated content block. Cream surface + 1px ink border
   (no shadow — brand-restrained elevation). Flex column so children
   may use flex-grow to equalise sibling heights in a grid row. */
.dh-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-8);
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
  border-radius: var(--btn-radius);
}

/* D2 — Card title (brass UPPERCASE label, 12px).
   Same pattern as .dh-section__overline but 1px larger (12 vs 11) —
   title is the card's primary label, overline is the section's
   secondary tag. */
.dh-card__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
  margin: 0 0 var(--space-6) 0;
}

/* D3 — Card body (Inter 16px / 1.7 line-height).
   flex: 1 so sibling cards in a row match heights via the parent grid. */
.dh-card__body {
  flex: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--colour-text);
}

/* D4 — Brass text link.
   Used inline within section moves ("read the proof", "see how it works").
   Underline-on-default in brass; hover thickens. Visited state stays
   identical (internal anchors, not external nav). Focus-visible uses the
   same brass outline ring as buttons for consistency. */
.dh-link--brass {
  color: var(--colour-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 150ms ease;
}
.dh-link--brass:hover {
  text-decoration-thickness: 2px;
}
.dh-link--brass:focus-visible {
  outline: 2px solid var(--colour-accent);
  outline-offset: 2px;
}

/* ---------- Tier E — Trust components ---------- */

/* E1 — Pre-seed trust signal copy.
   Renders inline in any trust-signal context when review count is under 15.
   Canonical copy per briefs/sections/hero.md:162 and briefs/loox-spec.md §6
   Path A: "Loved by early testers". Liquid section template supplies the
   text; this class only styles. Italicised to mark a different register
   from real review stars while still reading as a legitimate trust signal. */
.dh-trust__pre-seed {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--colour-text);
}

/* E2 — Star-rating container shell (Loox W2 widget mount point).
   Renders when review count ≥ 15. The Loox W2 widget injects its own
   stars + count into this container; baseline typography here matches
   surrounding trust signals so the rendered output blends. min-height
   reserves ~24px to prevent CLS when Loox loads. */
.dh-trust__stars {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--colour-text);
}

/* ============================================================
   E3 — Loox override (STUB — pending Loox plan verification).

   Reserved per briefs/loox-spec.md §6. Two display contracts:

     Path A (preferred) — Shopify Flow + metafield. Liquid renders
        ONE of (W2 widget | pre-seed span) server-side. No override
        needed; only one container ever exists in the DOM per page.

     Path B (fallback) — Runtime JS. BOTH containers exist; CSS
        hides stars by default; theme.js listens for loox:ready and
        toggles .dh-loox--ready on documentElement when count is
        confirmed ≥15.

   ACTIVATION CRITERIA — before uncommenting:
     1. Founder confirms which path is in use (A or B).
     2. If Path B: confirm the loox:ready listener is shipped in
        theme.js per briefs/loox-spec.md §6.
     3. If Path A: leave commented OR delete the stub entirely
        (server-side conditional handles the swap).

   PATH B ACTIVATION CSS (copy out, uncomment, ship as live rules):

       [data-loox-average],
       .dh-trust__stars {
         display: none;
       }

       .dh-loox--ready [data-loox-average],
       .dh-loox--ready .dh-trust__stars {
         display: inline-flex;
       }

   TODO(loox-path-decision): resolve before any star-bearing
   section ships to production.
   ============================================================ */

/* ============================================================
   Section: Guarantee — briefs/sections/guarantee.md
   ============================================================ */

/* Container constraint — 680px prose column, centred.
   Section background and padding are inherited from Phase 0:
   .dh-section base sets padding rhythm + cream background;
   .dh-section--guarantee modifier (Tier B12) re-affirms cream. */
.dh-guarantee {
  max-width: var(--container-text);
  margin: 0 auto;
}

/* Header (overline + headline + subhead) centred within the column.
   Body paragraphs below stay left-aligned by default. */
.dh-guarantee > .dh-section__overline,
.dh-guarantee > .dh-section__headline,
.dh-guarantee > .dh-section__subhead {
  text-align: center;
}

.dh-guarantee > .dh-section__subhead {
  margin-bottom: var(--space-16);
}

/* Body — left-aligned prose at 18px / 1.7 line-height */
.dh-guarantee__body {
  margin-top: var(--space-12);
}

.dh-guarantee__paragraph {
  margin: 0 0 var(--space-8) 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--colour-text);
}

.dh-guarantee__paragraph:last-child {
  margin-bottom: 0;
}

/* .dh-guarantee__legal is a hook only — no colour shift.
   Brief: "The reader needs to see this clearly." No rule body
   needed; the class stays in markup as a future-override target. */

/* "How to return" subsection */
.dh-guarantee__return {
  margin-top: var(--space-12);
}

.dh-guarantee__return-label {
  margin: 0 0 var(--space-4) 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
}

.dh-guarantee__return-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--colour-text);
}

/* Email mailto link reuses .dh-link--brass (Phase 0 Tier D) via the
   replace filter in the Liquid template. No section-specific anchor
   styling needed here — the brief showed inline `a` rules; this
   rebuild uses the shared component instead. */

/* ============================================================
   Section: Hero — LEGACY (main-product-hero.liquid deleted in
   the 2026-07-25 DUSKHALO rebuild; live hero is dh-pdp-hero).
   Rules retained only until the dh-pdp rebuild confirms no reuse.
   ============================================================ */

.dh-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-16) var(--space-6);
  background: var(--colour-background);
}

@media (max-width: 768px) {
  .dh-hero {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding: var(--space-12) var(--space-6);
  }
  /* Gallery first on mobile (product visual before copy) */
  .dh-hero__gallery {
    order: -1;
  }
}

/* Left column — copy */
.dh-hero__content {
  max-width: 560px;
  padding: var(--space-6);
  justify-self: end;
}

@media (max-width: 768px) {
  .dh-hero__content {
    justify-self: stretch;
    padding: var(--space-3);
    max-width: none;
  }
}

.dh-hero__decoration {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin: 0 0 var(--space-6) 0;
}

.dh-hero__overline {
  margin: 0 0 var(--space-6) 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
}

.dh-hero__headline {
  margin: 0 0 var(--space-8) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--colour-primary);
}

.dh-hero__subhead {
  margin: 0 0 var(--space-12) 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--colour-text);
}

.dh-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .dh-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

.dh-hero__cta-label {
  display: inline-block;
}

.dh-hero__cta-price {
  display: inline-block;
  margin-left: var(--space-3);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.dh-hero__secondary-cta {
  font-size: 14px;
}

.dh-hero__trust {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--colour-text-muted);
}

/* Right column — variant-aware gallery (POC) */
.dh-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 560px;
  width: 100%;
  padding: var(--space-6);
}

@media (max-width: 768px) {
  .dh-hero__gallery {
    padding: var(--space-3);
    max-width: none;
  }
}

.dh-hero__gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
}

.dh-hero__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 150ms ease;
}

.dh-hero__main-image.is-swapping {
  opacity: 0.3;
}

.dh-hero__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.dh-hero__thumb {
  padding: 0;
  border: 1px solid var(--colour-border);
  background: var(--colour-card);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: border-color 150ms ease;
}

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

.dh-hero__thumb:hover {
  border-color: var(--colour-text-muted);
}

.dh-hero__thumb.is-active {
  border: 2px solid var(--colour-accent);
}

.dh-hero__thumb:focus-visible {
  outline: 2px solid var(--colour-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .dh-hero__main-image,
  .dh-hero__thumb {
    transition: none;
  }
}

/* ============================================================
   Section: Bundle stack — briefs/sections/bundle-stack.md
   ============================================================ */

.dh-bundle-stack {
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
}

@media (max-width: 768px) {
  .dh-bundle-stack {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
  }
}

.dh-bundle-stack__inner {
  max-width: var(--container-text);
}

.dh-bundle-stack__form {
  margin: 0;
}

/* Variant swatches */
.dh-bundle-stack__variants {
  margin-bottom: var(--space-8);
}

.dh-bundle-stack__variant-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--colour-text);
  margin-bottom: var(--space-3);
}

.dh-bundle-stack__variant-label [data-selected-option] {
  font-weight: 600;
  color: var(--colour-primary);
}

.dh-bundle-stack__swatches {
  display: flex;
  gap: var(--space-3);
}

.dh-bundle-stack__swatch {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dh-bundle-stack__swatch-fill {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  transition: box-shadow 150ms ease;
}

.dh-bundle-stack__swatch.is-active .dh-bundle-stack__swatch-fill {
  box-shadow: 0 0 0 2px var(--colour-background), 0 0 0 4px var(--colour-primary);
}

.dh-bundle-stack__swatch.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.dh-bundle-stack__swatch:focus-visible {
  outline: 2px solid var(--colour-accent);
  outline-offset: 4px;
}

/* Tier cards */
.dh-bundle-stack__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (max-width: 640px) {
  .dh-bundle-stack__tiers {
    grid-template-columns: 1fr;
  }
}

.dh-bundle-stack__tier {
  position: relative;
  padding: var(--space-6);
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
  border-radius: var(--btn-radius);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 150ms ease;
}

.dh-bundle-stack__tier.is-active {
  border: 2px solid var(--colour-primary);
  padding: calc(var(--space-6) - 1px);
}

.dh-bundle-stack__tier:focus-visible {
  outline: 2px solid var(--colour-accent);
  outline-offset: 2px;
}

.dh-bundle-stack__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
}

.dh-bundle-stack__tier-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--colour-primary);
  margin-bottom: var(--space-2);
}

.dh-bundle-stack__tier-prices {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.dh-bundle-stack__tier-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--colour-primary);
}

.dh-bundle-stack__tier-compare {
  font-size: 16px;
  color: var(--colour-text-muted);
  text-decoration: line-through;
}

.dh-bundle-stack__tier-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--colour-text);
}

/* Launch / scarcity notes */
.dh-bundle-stack__launch-note,
.dh-bundle-stack__scarcity {
  margin: var(--space-3) 0;
  text-align: center;
  font-size: 13px;
  color: var(--colour-text-muted);
}

/* Submit CTA */
.dh-bundle-stack__cta {
  width: 100%;
  margin-top: var(--space-4);
}

.dh-bundle-stack__cta-label {
  display: inline-block;
}

.dh-bundle-stack__cta-price {
  display: inline-block;
  margin-left: var(--space-3);
  font-weight: 500;
  font-size: 16px;
}

/* ============================================================
   Section: Mechanism — briefs/sections/mechanism.md
   ============================================================ */

.dh-mechanism {
  max-width: var(--container-max);
}

/* Headline + subhead block sit inside text-container width and centre */
.dh-mechanism > .dh-section__overline,
.dh-mechanism > .dh-section__headline,
.dh-mechanism > .dh-section__subhead {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Layer 1 — two-frame visual */
.dh-mechanism__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

@media (max-width: 768px) {
  .dh-mechanism__visual {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
}

.dh-mechanism__frame {
  margin: 0;
}

.dh-mechanism__frame img,
.dh-mechanism__frame-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
  display: block;
}

.dh-mechanism__caption {
  margin-top: var(--space-3);
  text-align: left;
}

.dh-mechanism__caption-top {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--colour-text);
}

.dh-mechanism__caption-bottom {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--colour-text-muted);
}

/* Layer 2 — three-card grid */
.dh-mechanism__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
}

@media (max-width: 768px) {
  .dh-mechanism__cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* Layer 3 — heritage block */
.dh-mechanism__heritage {
  max-width: var(--container-text);
  margin: var(--space-16) auto 0;
  text-align: center;
}

.dh-mechanism__decoration {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin-bottom: var(--space-6);
}

.dh-mechanism__heritage-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text);
  margin: 0;
}

.dh-mechanism__heritage-body p {
  margin: 0;
}

.dh-mechanism__plug {
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--colour-text-muted);
}

.dh-mechanism__move {
  margin-top: var(--space-12);
  text-align: center;
}

/* ============================================================
   Section: Final CTA — briefs/sections/final-cta.md
   Inverse text scheme on --colour-primary background.
   Base text-colour overrides handled by Phase 0 Tier B14.
   ============================================================ */

.dh-section--final-cta {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
  text-align: left;
}

@media (max-width: 768px) {
  .dh-section--final-cta {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
    text-align: center;
  }
}

.dh-final-cta__inner {
  max-width: var(--container-text);
  margin: 0 auto;
}

.dh-final-cta__decoration {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin: 0 0 var(--space-6) 0;
}

@media (max-width: 768px) {
  .dh-final-cta__decoration {
    margin-left: auto;
    margin-right: auto;
  }
}

.dh-final-cta__overline {
  margin: 0 0 var(--space-6) 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
}

/* Headline/subhead colour overrides — Phase 0 Tier B14 covers white text;
   here we tighten the subhead with slight opacity for hierarchy. */
.dh-final-cta__subhead {
  max-width: 560px;
  opacity: 0.92;
}

@media (max-width: 768px) {
  .dh-final-cta__subhead {
    margin-left: auto;
    margin-right: auto;
  }
}

.dh-final-cta__actions {
  margin-bottom: var(--space-8);
}

.dh-final-cta__cta-label {
  display: inline-block;
}

.dh-final-cta__cta-price {
  display: inline-block;
  margin-left: var(--space-3);
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 375px) {
  .dh-final-cta__cta {
    width: 100%;
    flex-direction: column;
    gap: var(--space-1);
  }
  .dh-final-cta__cta-price {
    margin-left: 0;
  }
}

.dh-final-cta__trust {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--colour-white);
  opacity: 0.72;
}

/* ============================================================
   Section: Proof — briefs/sections/proof.md
   ============================================================ */

.dh-proof {
  max-width: var(--container-max);
}

/* Pre-seed: heritage gets extra breathing room since Loox feed is hidden */
.dh-proof:has(.dh-proof__empty) .dh-proof__heritage {
  margin-top: var(--space-24);
}

/* Framing copy sits in text-container width and centres */
.dh-proof > .dh-section__overline,
.dh-proof > .dh-section__headline,
.dh-proof > .dh-section__subhead {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dh-proof > .dh-section__subhead {
  margin-bottom: var(--space-16);
}

.dh-proof__feed {
  margin-top: var(--space-8);
}

.dh-proof__empty {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: var(--space-12) 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--colour-text-muted);
}

.dh-proof__heritage {
  max-width: var(--container-text);
  margin: var(--space-16) auto 0;
  text-align: center;
}

.dh-proof__decoration {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin-bottom: var(--space-6);
}

.dh-proof__heritage-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--colour-primary);
}

.dh-proof__move {
  margin-top: var(--space-12);
  text-align: center;
}

/* ============================================================
   Section: Problem — briefs/sections/problem.md
   ============================================================ */

.dh-problem {
  max-width: var(--container-text);
}

.dh-problem > .dh-section__overline,
.dh-problem > .dh-section__headline,
.dh-problem > .dh-section__subhead {
  text-align: center;
}

.dh-problem__beats {
  margin-top: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.dh-problem__beat-decoration {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin-bottom: var(--space-4);
}

.dh-problem__beat-label {
  margin: 0 0 var(--space-3) 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
}

.dh-problem__beat-body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text);
}

.dh-problem__quote {
  margin: var(--space-16) 0 0;
  padding: var(--space-4) 0 var(--space-4) var(--space-6);
  border-left: 2px solid var(--colour-accent);
}

.dh-problem__quote-text {
  margin: 0 0 var(--space-3) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--colour-text);
}

.dh-problem__quote-source {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: var(--colour-text-muted);
}

.dh-problem__bridge {
  margin: var(--space-16) 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--colour-primary);
}

/* ============================================================
   Section: Realisation — briefs/sections/realisation.md
   Narrower than its neighbours (560px) — the visual narrowness
   marks the section as a pause.
   ============================================================ */

.dh-realisation {
  max-width: var(--container-narrow);
  text-align: center;
}

.dh-realisation > .dh-section__headline {
  margin: var(--space-6) 0 var(--space-8) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--colour-primary);
}

.dh-realisation > .dh-section__subhead {
  margin: 0 0 var(--space-12) 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--colour-text);
}

.dh-realisation__lead-in {
  margin: 0 0 var(--space-8) 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text-muted);
}

/* Centred italic pull-quote — no border. Differs from Problem's
   bordered evidence-quote; here the quote IS the section's centre
   of gravity. */
.dh-realisation__quote {
  margin: 0 0 var(--space-12) 0;
  padding: 0;
  border: none;
}

.dh-realisation__quote-text {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  line-height: 1.4;
  color: var(--colour-text);
}

.dh-realisation__move {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text);
}

/* ============================================================
   Section: Founder note — briefs/sections/founder.md
   ============================================================ */

.dh-founder {
  max-width: var(--container-text);
}

.dh-founder > .dh-section__overline,
.dh-founder > .dh-section__headline,
.dh-founder > .dh-section__subhead {
  text-align: center;
}

.dh-founder > .dh-section__subhead {
  margin-bottom: var(--space-16);
}

.dh-founder__body {
  margin-top: var(--space-12);
}

.dh-founder__paragraph {
  margin: 0 0 var(--space-8) 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--colour-text);
}

.dh-founder__paragraph:last-child {
  margin-bottom: 0;
}

.dh-founder__move {
  margin: var(--space-12) 0 0 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--colour-text);
}

/* ============================================================
   Section: Audience — briefs/sections/audience.md
   ============================================================ */

.dh-audience {
  max-width: var(--container-max);
}

.dh-audience > .dh-section__overline,
.dh-audience > .dh-section__headline,
.dh-audience > .dh-section__subhead {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dh-audience__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
}

@media (max-width: 768px) {
  .dh-audience__cards {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.dh-audience__card {
  display: flex;
  flex-direction: column;
}

.dh-audience__card .dh-card__body p:not(:last-child) {
  margin: 0 0 var(--space-4) 0;
}

.dh-audience__card-close {
  margin: var(--space-6) 0 0 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--colour-primary);
}

.dh-audience__soft-closer {
  max-width: var(--container-text);
  margin: var(--space-16) auto 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text-muted);
  text-align: center;
}

/* ============================================================
   Section: Trust bar — briefs/sections/trust-bar.md
   Compact label strip. .dh-section--compact (Phase 0 Tier B1)
   already provides reduced padding.
   ============================================================ */

.dh-trust-bar {
  max-width: var(--container-max);
}

.dh-trust-bar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.dh-trust-bar__item {
  padding: var(--space-2) var(--space-6);
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--colour-text);
  border-right: 1px solid var(--colour-accent);
}

.dh-trust-bar__item:last-child {
  border-right: none;
}

@media (max-width: 640px) {
  .dh-trust-bar__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .dh-trust-bar__item {
    padding: var(--space-3);
    font-size: 13px;
    border-right: 1px solid var(--colour-accent);
    border-bottom: 1px solid var(--colour-accent);
  }

  .dh-trust-bar__item:nth-child(2n) {
    border-right: none;
  }

  .dh-trust-bar__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ============================================================
   Section: What's in the box — briefs/sections/whats-in-the-box.md
   ============================================================ */

.dh-whatsinthebox {
  max-width: var(--container-text);
}

.dh-whatsinthebox > .dh-section__overline,
.dh-whatsinthebox > .dh-section__headline,
.dh-whatsinthebox > .dh-section__subhead {
  text-align: center;
}

.dh-whatsinthebox > .dh-section__subhead {
  margin-bottom: var(--space-16);
}

.dh-whatsinthebox__list {
  margin: var(--space-12) 0 0 0;
  padding: 0;
}

.dh-whatsinthebox__row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--colour-border);
}

.dh-whatsinthebox__row:last-child {
  border-bottom: none;
}

.dh-whatsinthebox__label {
  margin: 0;
  padding-top: 2px;
  align-self: start;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--colour-accent);
}

.dh-whatsinthebox__body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--colour-text);
}

@media (max-width: 640px) {
  .dh-whatsinthebox__row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    border-bottom: none;
  }

  .dh-whatsinthebox__row::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--colour-accent);
    margin-bottom: var(--space-4);
  }
}

/* ============================================================
   Section: Comparison — briefs/sections/comparison.md
   ============================================================ */

.dh-comparison {
  max-width: var(--container-max);
}

.dh-comparison > .dh-section__overline,
.dh-comparison > .dh-section__headline,
.dh-comparison > .dh-section__subhead {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dh-comparison__table {
  max-width: 960px;
  width: 100%;
  margin: var(--space-16) auto 0;
  border-collapse: collapse;
}

.dh-comparison__table th,
.dh-comparison__table td {
  padding: var(--space-6);
  vertical-align: top;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--colour-text);
  border-bottom: 1px solid var(--colour-border);
}

.dh-comparison__table th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--colour-text-muted);
  border-bottom-width: 2px;
  border-bottom-color: var(--colour-accent);
}

.dh-comparison__aid {
  font-weight: 500;
  white-space: nowrap;
}

.dh-comparison__answer {
  color: var(--colour-primary);
  font-weight: 500;
}

.dh-comparison__source {
  font-size: 13px;
  color: var(--colour-text-muted);
  white-space: nowrap;
}

.dh-comparison__sources-note {
  max-width: 960px;
  margin: var(--space-8) auto 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--colour-text-muted);
  text-align: center;
}

/* Mobile: table → cards via CSS-only */
@media (max-width: 768px) {
  .dh-comparison__table,
  .dh-comparison__table tbody,
  .dh-comparison__table tr,
  .dh-comparison__table td {
    display: block;
    width: 100%;
  }

  .dh-comparison__table thead {
    display: none;
  }

  .dh-comparison__table tr {
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: var(--colour-card);
    border: 1px solid var(--colour-border);
  }

  .dh-comparison__table td {
    padding: var(--space-3) 0;
    border-bottom: none;
  }

  .dh-comparison__table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--colour-text-muted);
  }

  .dh-comparison__table td:first-child {
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--colour-border);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--colour-accent);
  }

  .dh-comparison__table td:first-child::before {
    display: none;
  }

  .dh-comparison__source {
    white-space: normal;
  }
}

/* ============================================================
   Section: FAQ — briefs/sections/faq.md
   Native details/summary accordion. No JS dependency.
   ============================================================ */

.dh-faq {
  max-width: var(--container-narrow);
}

.dh-faq > .dh-section__overline,
.dh-faq > .dh-section__headline,
.dh-faq > .dh-section__subhead {
  text-align: center;
}

.dh-faq > .dh-section__subhead {
  margin-bottom: var(--space-16);
}

.dh-faq__list {
  margin-top: var(--space-12);
}

.dh-faq__item {
  border-bottom: 1px solid var(--colour-border);
}

.dh-faq__item:first-child {
  border-top: 1px solid var(--colour-border);
}

.dh-faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--colour-text);
  cursor: pointer;
  list-style: none;
}

.dh-faq__question::-webkit-details-marker {
  display: none;
}

.dh-faq__question-text {
  flex: 1;
}

.dh-faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--colour-accent);
  transition: transform 150ms ease;
}

.dh-faq__item[open] .dh-faq__question::after {
  content: "−";
}

.dh-faq__question:hover {
  color: var(--colour-primary);
}

.dh-faq__question:focus-visible {
  outline: 2px solid var(--colour-accent);
  outline-offset: 2px;
}

.dh-faq__answer {
  padding: 0 0 var(--space-6) 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-text);
}

.dh-faq__answer a {
  color: var(--colour-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-thickness 150ms ease;
}

.dh-faq__answer a:hover {
  text-decoration-thickness: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .dh-faq__question::after {
    transition: none;
  }
  .dh-faq__answer a {
    transition: none;
  }
}

/* =========================================================================
 * PDP section styles — Session 2
 * Section spacing: 64px mobile, 96px desktop. Cream throughout. No pure white.
 * ========================================================================= */

.phero,
.trust-bar,
.prose-section,
.realisation,
.mechanism,
.proof,
.compare,
.audience,
.pack,
.guarantee,
.faq,
.final-cta {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .phero,
  .prose-section,
  .realisation,
  .mechanism,
  .proof,
  .compare,
  .audience,
  .pack,
  .guarantee,
  .faq,
  .final-cta {
    padding: 96px 0;
  }
}

/* ---------- Hero ---------- */

.phero { padding-top: 48px; }
.phero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 900px) {
  .phero__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}
@media (min-width: 900px) {
  /* Brief: copy LEFT, gallery RIGHT on desktop. Mobile DOM order keeps gallery first. */
  .phero__copy { order: -1; }
}

/* ---------- Variant-aware gallery ---------- */

.phero__gallery {
  position: relative;
  width: 100%;
}
.phero__variant-set {
  display: none;
  width: 100%;
}
.phero__variant-set.is-active {
  display: block;
}
@media (min-width: 768px) {
  .phero__variant-set.is-active {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: var(--space-4);
    align-items: start;
  }
}

.phero__thumbs {
  display: none;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .phero__thumbs { display: flex; }
}
.phero__thumb {
  width: 80px;
  height: 80px;
  padding: 0;
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 200ms ease;
  border-radius: 0;
}
.phero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phero__thumb:hover { border-color: var(--colour-accent); }
.phero__thumb.is-active {
  border: 2px solid var(--colour-primary);
}

.phero__main {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.phero__main-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: var(--colour-card);
  border: 0;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.phero__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 250ms ease;
}
.phero__main-img.is-swapping { opacity: 0; }

.phero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: var(--space-4);
}
@media (min-width: 768px) {
  .phero__dots { display: none; }
}
.phero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colour-border);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color 200ms ease;
}
.phero__dot.is-active { background: var(--colour-primary); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(242, 244, 248, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity 200ms ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 32px;
  color: var(--colour-primary);
  line-height: 1;
  padding: 0;
}
.lightbox__close:hover { color: var(--colour-secondary); }

.phero__pre {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colour-accent);
  margin-bottom: var(--space-3);
}
.phero__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
}
@media (min-width: 768px) {
  .phero__title { font-size: 52px; }
}
.phero__lede {
  font-size: 17px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 0 var(--space-6);
}
.phero__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--colour-border);
}
.phero__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 22px;
}
.phero__price-meta {
  font-size: 14px;
  opacity: 0.7;
}

.phero__form { display: block; }
.phero__option { margin-bottom: var(--space-6); }
.phero__option-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3);
}
.phero__option-label span {
  margin-left: 0.4em;
  opacity: 0.6;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
}

.phero__swatches {
  display: flex;
  gap: var(--space-3);
}
.phero__swatch {
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  transition: border-color 200ms ease;
}
.phero__swatch:focus-visible {
  outline: 2px solid var(--colour-primary);
  outline-offset: 2px;
}
.phero__swatch.is-active {
  border-color: var(--colour-primary);
}
.phero__swatch-fill {
  display: block;
  width: 28px; height: 28px;
  border-radius: 50%;
}

.phero__qty {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-2) 0;
}
.phero__qty-opt {
  background: transparent;
  border: 0;
  padding: 4px 0 6px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--colour-text);
  opacity: 0.6;
  transition: opacity 200ms ease, color 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
  letter-spacing: 0;
  text-transform: none;
}
.phero__qty-opt:hover { opacity: 1; }
.phero__qty-opt.is-active {
  color: var(--colour-primary);
  opacity: 1;
  border-bottom-color: var(--colour-accent);
}
.phero__qty-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--colour-accent);
  opacity: 0.4;
}
.phero__qty-save {
  font-size: 13px;
  opacity: 0.7;
  margin-left: 2px;
}

.phero__cta {
  width: 100%;
  margin-bottom: var(--space-3);
}
.phero__guarantee {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--colour-card);
  padding: 16px 0;
  border-top: 1px solid var(--colour-border);
  border-bottom: 1px solid var(--colour-border);
}
.trust-bar__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.trust-bar__list li {
  position: relative;
  padding-right: 24px;
}
.trust-bar__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 2px;
  background: var(--colour-accent);
  border-radius: 50%;
}
@media (max-width: 600px) {
  .trust-bar__list li { padding-right: 0; }
  .trust-bar__list li::after { display: none; }
}

/* ---------- Prose section (problem) ---------- */

.prose-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.prose-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  margin: 0 0 var(--space-8);
}
@media (min-width: 768px) {
  .prose-section__title { font-size: 40px; }
}
.prose-section__body {
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
}
.prose-section__body p { margin: 0 0 var(--space-4); }
.prose-section__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--colour-accent);
  margin-top: var(--space-8);
  text-align: center;
}

/* ---------- Realisation ---------- */

.realisation__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.realisation__headline {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 var(--space-8);
  letter-spacing: -0.005em;
}
@media (min-width: 768px) {
  .realisation__headline { font-size: 36px; }
}
.realisation__body {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- Mechanism ---------- */

.mechanism__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .mechanism__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-16);
  }
}
.mechanism__media { width: 100%; }
.mechanism__video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--colour-card);
  overflow: hidden;
}
.mechanism__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mechanism__pre {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colour-accent);
  margin-bottom: var(--space-3);
}
.mechanism__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 28px;
  margin: 0 0 var(--space-6);
}
@media (min-width: 768px) {
  .mechanism__title { font-size: 32px; }
}
.mechanism__body { font-size: 16px; line-height: 1.7; }
.mechanism__body p { margin: 0 0 var(--space-4); }

.mechanism__cards {
  list-style: none;
  margin: var(--space-8) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) {
  .mechanism__cards { grid-template-columns: repeat(3, 1fr); }
}
.mechanism__card {
  padding: var(--space-4);
  border-top: 1px solid var(--colour-border);
}
.mechanism__card-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--colour-accent);
  margin-bottom: var(--space-2);
}
.mechanism__card-h {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.mechanism__card-b {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Proof ---------- */

.proof__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .proof__row { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.proof__media {
  aspect-ratio: 4 / 5;
  background: var(--colour-card);
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.proof__media img { width: 100%; height: 100%; object-fit: cover; }
.proof__name { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.proof__meta { font-size: 13px; opacity: 0.6; }

.proof__row--reviews {
  border-top: 1px solid var(--colour-border);
  padding-top: var(--space-8);
  margin-bottom: 0;
}
.proof__review {
  padding: var(--space-4);
  background: var(--colour-card);
}
.proof__review-stars {
  color: var(--colour-accent);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.proof__review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 var(--space-3);
}
.proof__review-author { font-size: 13px; opacity: 0.6; }

/* Pre-launch state: no real reviews yet */
.proof--pre-launch { padding: var(--space-16) 0; }
.proof--pre-launch .container { text-align: center; }
.proof__placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--colour-accent);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Comparison ---------- */

.compare__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  text-align: center;
  margin: 0 0 var(--space-12);
}
@media (min-width: 768px) {
  .compare__title { font-size: 36px; }
}
.compare__wrap { overflow-x: auto; }
.compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--colour-card);
}
.compare__table th,
.compare__table td {
  padding: var(--space-3) var(--space-4);
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--colour-accent);
  border-bottom-style: dotted;
}
.compare__table thead th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding-bottom: var(--space-4);
}
.compare__table tbody th {
  text-align: left;
  font-weight: 500;
  background: var(--colour-background);
}
.compare__col-self {
  background: var(--colour-primary) !important;
  color: var(--colour-background);
}
.compare__y { color: var(--colour-primary); font-size: 18px; font-weight: 500; }
.compare__col-self.compare__y { color: var(--colour-background); }
.compare__n { opacity: 0.4; font-size: 18px; }
.compare__p { font-size: 12px; opacity: 0.6; font-style: italic; }
.compare__na { font-size: 12px; opacity: 0.4; }
.compare__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--colour-accent);
  text-align: center;
  margin-top: var(--space-8);
}

/* ---------- Audience ---------- */

.audience__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  text-align: center;
  margin: 0 0 var(--space-12);
}
@media (min-width: 768px) {
  .audience__title { font-size: 36px; }
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .audience__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}
.audience__card {
  padding: var(--space-6);
  background: var(--colour-card);
  border-top: 2px solid var(--colour-accent);
}
.audience__card-h {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.audience__card-b {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- What's in the box ---------- */

.pack__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .pack__grid { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}
.pack__media { aspect-ratio: 1 / 1; background: var(--colour-card); }
.pack__media img { width: 100%; height: 100%; object-fit: cover; }
.pack__pre {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colour-accent);
  margin-bottom: var(--space-3);
}
.pack__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 28px;
  margin: 0 0 var(--space-6);
}
@media (min-width: 768px) {
  .pack__title { font-size: 32px; }
}
.pack__list { list-style: none; padding: 0; margin: 0; }
.pack__list li {
  font-size: 14px;
  padding: var(--space-3) 0 var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--colour-border);
  position: relative;
}
.pack__list li::before {
  content: '';
  position: absolute;
  left: 0; top: calc(var(--space-3) + 11px);
  width: 6px; height: 6px;
  background: var(--colour-accent);
  border-radius: 50%;
}

/* ---------- Guarantee ---------- */

.guarantee {
  background: var(--colour-card);
}
.guarantee__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.guarantee__rule {
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin: 0 auto var(--space-6);
}
.guarantee__rule + .guarantee__rule { margin: var(--space-6) auto 0; }
.guarantee__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  margin: 0 0 var(--space-6);
}
@media (min-width: 768px) {
  .guarantee__title { font-size: 36px; }
}
.guarantee__body {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */

.faq__inner { max-width: 720px; margin: 0 auto; }
.faq__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  text-align: center;
  margin: 0 0 var(--space-12);
}
@media (min-width: 768px) {
  .faq__title { font-size: 36px; }
}
.faq__list { display: block; }
.faq__item {
  border-bottom: 1px solid var(--colour-border);
}
.faq__item[open] { background: var(--colour-card); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: var(--space-4) var(--space-6);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-right: 48px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--colour-accent);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}
.faq__item[open] .faq__q::after { content: '−'; }
.faq__a {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 14px;
  line-height: 1.7;
}
.faq__a p { margin: 0; }

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--colour-card);
}
.final-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 36px;
  margin: 0 0 var(--space-6);
}
@media (min-width: 768px) {
  .final-cta__title { font-size: 44px; }
}
.final-cta__body {
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto var(--space-8);
}
.final-cta__btn { display: inline-block; margin-bottom: var(--space-3); }
.final-cta__meta { font-size: 13px; opacity: 0.7; }

/* ---------- Sticky CTA (mobile-only after hero) ---------- */

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--colour-primary);
  color: var(--colour-background);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 250ms ease;
  text-decoration: none;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta:hover { color: var(--colour-background); }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* ---------- Cart drawer ---------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 22, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  z-index: 100;
}
.drawer-overlay.is-visible { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--colour-background);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.08);
}
.drawer.is-open { transform: translateX(0); }
.drawer__header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--colour-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--colour-primary);
}
.drawer__close {
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--colour-text);
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-6);
}
.drawer__empty {
  text-align: center;
  opacity: 0.7;
  padding: var(--space-12) 0;
}
.drawer__line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--colour-border);
  align-items: center;
}
.drawer__line-media img {
  width: 64px; height: 80px;
  object-fit: cover;
  background: var(--colour-card);
}
.drawer__line-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.drawer__line-variant {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: var(--space-2);
}
.drawer__line-qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
}
.drawer__qty-btn {
  background: var(--colour-card);
  border: 1px solid var(--colour-border);
  width: 24px; height: 24px;
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
  border-radius: var(--btn-radius);
}
.drawer__qty-btn:hover { border-color: var(--colour-primary); }
.drawer__qty-num {
  min-width: 18px;
  text-align: center;
  font-weight: 500;
}
.drawer__line-price {
  font-size: 14px;
  font-weight: 500;
}

.drawer__upsell {
  margin: var(--space-6) 0;
  padding: var(--space-4);
  background: var(--colour-card);
  border-top: 2px solid var(--colour-accent);
}
.drawer__upsell-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.drawer__upsell-body {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: var(--space-3);
}
.drawer__upsell-btn {
  width: 100%;
  font-size: 12px;
  padding: var(--space-3);
}

.drawer__footer {
  padding: var(--space-6);
  border-top: 1px solid var(--colour-border);
  background: var(--colour-card);
}
.drawer__totals {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: var(--space-2);
}
.drawer__shipping {
  font-size: 12px;
  opacity: 0.6;
  margin: 0 0 var(--space-4);
}
.drawer__checkout {
  width: 100%;
}

/* =========================================================================
 * Session 3 additions — bundle stack, sticky bar, ribbon, popups, founder,
 * triple guarantee, loox empty state, compare-at, scarcity.
 * ========================================================================= */

/* ---------- Bundle stack ---------- */

.phero__launch-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--colour-accent);
  text-align: center;
  margin: 0 0 var(--space-3);
  line-height: 1.5;
}
.phero__scarcity {
  font-size: 13px;
  color: var(--colour-text);
  opacity: 0.6;
  text-align: center;
  margin: var(--space-4) 0 var(--space-6);
}

.phero__bundle {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
@media (min-width: 600px) {
  .phero__bundle { grid-template-columns: 1fr 1fr 1fr; }
}
.phero__bundle-opt {
  position: relative;
  background: var(--colour-background);
  border: 1px solid var(--colour-border);
  border-radius: var(--btn-radius);
  padding: var(--space-4) var(--space-3);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 200ms ease, background-color 200ms ease;
}
.phero__bundle-opt:hover { border-color: var(--colour-accent); }
.phero__bundle-opt.is-active {
  border: 2px solid var(--colour-primary);
  background: var(--colour-card);
  padding: calc(var(--space-4) - 1px) calc(var(--space-3) - 1px);
}
.phero__bundle-badge {
  position: absolute;
  top: -10px;
  left: var(--space-3);
  background: var(--colour-background);
  color: var(--colour-accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 2px 8px;
  border: 1px solid var(--colour-accent);
}
.phero__bundle-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: var(--space-1);
}
.phero__bundle-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: var(--space-1);
}
.phero__bundle-price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--colour-primary);
}
.phero__bundle-compare {
  text-decoration: line-through;
  color: var(--colour-text);
  opacity: 0.5;
  font-size: 13px;
}
.phero__bundle-sub {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.4;
}

/* ---------- Launch ribbon ---------- */

.ribbon {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--colour-primary);
  color: var(--colour-background);
  padding: 8px 16px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  height: 32px;
}
.ribbon__text { flex: 0 1 auto; line-height: 1; }
.ribbon__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: var(--colour-background);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 200ms ease;
}
.ribbon__close:hover { opacity: 1; }
@media (max-width: 600px) {
  .ribbon { font-size: 11px; padding: 8px 40px 8px 12px; }
}

/* ---------- Sticky top bar ---------- */

.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--colour-background);
  border-bottom: 1px solid var(--colour-accent);
  transform: translateY(-100%);
  transition: transform 250ms ease;
  padding: 12px 0;
}
.stuck.is-visible { transform: translateY(0); }
.stuck__inner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.stuck__product {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1 1 auto;
  min-width: 0;
}
.stuck__thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  background: var(--colour-card);
}
.stuck__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--colour-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stuck__swatches {
  display: flex;
  gap: 6px;
}
.stuck__sw {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
  box-sizing: content-box;
}
.stuck__sw.is-active { border-color: var(--colour-primary); }
.stuck__bundle { display: flex; align-items: center; }
.stuck__select {
  padding: 8px 24px 8px 10px;
  background: var(--colour-background);
  border: 1px solid var(--colour-border);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  border-radius: var(--btn-radius);
}
.stuck__cta {
  flex: 0 0 auto;
  padding: 10px 16px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .stuck__swatches,
  .stuck__bundle { display: none; }
  .stuck__title { font-size: 14px; }
  .stuck__cta { flex: 1 1 auto; text-align: center; }
  .stuck__thumb { width: 32px; height: 32px; }
}

/* ---------- Popups (welcome + exit-intent) ---------- */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 22, 0.4);
  z-index: 130;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity 200ms ease;
}
.popup.is-open {
  display: flex;
  opacity: 1;
}
.popup__panel {
  position: relative;
  background: var(--colour-background);
  border: 1px solid var(--colour-primary);
  padding: var(--space-12) var(--space-8);
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.popup__panel--lg { max-width: 560px; padding: var(--space-16) var(--space-12); }
.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 24px;
  color: var(--colour-text);
  line-height: 1;
  opacity: 0.5;
  transition: opacity 200ms ease;
}
.popup__close:hover { opacity: 1; }
.popup__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 28px;
  margin: 0 0 var(--space-4);
  line-height: 1.2;
}
.popup__title--lg { font-size: 32px; }
.popup__body {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 var(--space-6);
  opacity: 0.85;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.popup__form input[type=email] {
  padding: 12px 14px;
  border: 1px solid var(--colour-border);
  background: var(--colour-card);
  font-family: var(--font-body);
  font-size: 14px;
}
.popup__form input[type=email]:focus {
  border-color: var(--colour-primary);
  outline: none;
}
.popup__submit {
  padding: 12px 16px;
  font-size: 13px;
}
.popup__fine {
  font-size: 11px;
  opacity: 0.5;
  margin: var(--space-3) 0 0;
}
.popup__thanks {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--colour-primary);
  margin: var(--space-4) 0 0;
}

/* ---------- Founder story ---------- */

.founder { padding: 80px 0; }
.founder__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.founder__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  margin: 0 0 var(--space-8);
}
@media (min-width: 768px) { .founder__title { font-size: 36px; } }
.founder__body {
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
}
.founder__body p { margin: 0 0 var(--space-4); }
.founder__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--colour-accent);
  margin: var(--space-8) 0 0;
}

/* ---------- Triple guarantee stack ---------- */

.guarantee { background: var(--colour-card); padding: 64px 0; }
@media (min-width: 768px) { .guarantee { padding: 96px 0; } }
.guarantee__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .guarantee__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.guarantee__card {
  padding: 24px;
  background: var(--colour-background);
  position: relative;
  text-align: left;
}
.guarantee__card .guarantee__rule {
  width: 40px;
  height: 1px;
  background: var(--colour-accent);
  margin: 0 0 var(--space-4);
}
.guarantee__icon {
  color: var(--colour-accent);
  margin-bottom: var(--space-3);
}
.guarantee__card-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--colour-primary);
  margin: 0 0 var(--space-3);
}
.guarantee__card-body {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Proof (Loox empty state) ---------- */

.proof { padding: 64px 0; text-align: center; }
@media (min-width: 768px) { .proof { padding: 96px 0; } }
.proof__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--colour-primary);
  font-size: 32px;
  margin: 0 0 var(--space-6);
}
.proof__avg {
  margin-bottom: var(--space-12);
}
.proof__stars {
  color: var(--colour-accent);
  font-size: 18px;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: var(--space-2);
}
.proof__avg-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--colour-accent);
}
.proof__empty p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--colour-text);
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.proof__more {
  margin-top: var(--space-12);
}

/* ---------- Comparison footnote / price row ---------- */

.compare__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
}
.compare__footnote {
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
  margin: var(--space-6) auto 0;
  max-width: 640px;
  line-height: 1.5;
}

/* ---------- Mobile fine-tuning (375 + 414 widths) ---------- */

@media (max-width: 414px) {
  .container { padding: 0 var(--space-4); }
  .phero__title { font-size: 32px; }
  .phero__lede { font-size: 16px; }
  .compare__table { font-size: 12px; }
  .compare__table th,
  .compare__table td { padding: var(--space-2) var(--space-3); }
  .phero__bundle-title { font-size: 14px; }
  .phero__bundle-price { font-size: 18px; }
  .popup__panel { padding: var(--space-8) var(--space-4); }
  .popup__title { font-size: 24px; }
}

/* ============================================================
   dh-pdp-* additions — new PDP build, 2026-05-16
   Token aliases + shared section base + dh-media-slot.
   Appended; no edits above this line.

   DEVIATIONS-FROM-BRIEF (per "build prompt as-is" user decision 2026-05-16):
   - The prompt declares its own --dh-* token names ("Brand tokens — use these
     exact values"). Brief tokens (--colour-primary etc.) already exist in this
     file's :root above. To honour both, --dh-* names alias to existing brief
     tokens where the hex matches; where the prompt's hex differs from brief
     (only --dh-success), the literal is declared (noted inline).
   - Brief 02-design-system "Buttons" spec: Inter 600 UPPERCASE +0.06em radius
     2px. The dh-pdp-hero CTA uses Cormorant per prompt — defined inline in
     that section's CSS block below, NOT here. The .btn / .btn--primary
     classes above keep the brief spec for non-PDP buttons.
   - Brief 02 "Iconography": "Almost none." The dh-pdp-comparison check/dash/cross
     icons are inline SVG per prompt — minimal, no icon-library import.
   ============================================================ */

:root {
  /* ── DUSKHALO "Lights Out" palette — 2026-07-25 rebrand ──
     Void near-black canvases, indigo panels, one deep-ice accent.
     Legacy token NAMES (--dh-charcoal, --dh-oxblood, --dh-cream,
     --dh-brass, --dh-green) kept for CSS continuity across the
     cloned theme; VALUES are DUSKHALO.

     - --dh-charcoal → #16161f (void)
     - --dh-charcoal-2 / --dh-line-dark → #2b2d55 (indigo)
     - --dh-oxblood → #3f8cc4 (deep ice — the action colour)
     - --dh-oxblood-2 → #5da4d4 (ice hover)
  */
  --dh-charcoal:     #16161f;     /* void — dark accents + brand mark share one tone */
  --dh-charcoal-2:   #2b2d55;     /* indigo panel bg on dark accent sections */
  --dh-green:        var(--colour-primary);     /* #16161f void (legacy token name) */
  --dh-oxblood:      #3f8cc4;     /* deep ice CTA (legacy token name) */
  --dh-oxblood-2:    #5da4d4;     /* ice hover */
  --dh-cream:        var(--colour-background);  /* #f2f4f8 ghost — text on dark + main bg */
  --dh-brass:        var(--colour-accent);      /* #3f8cc4 deep ice — overlines, sparing use */
  --dh-ink:          var(--colour-text);        /* #14141c — text on light sections */
  --dh-line:         var(--colour-border);      /* #dde3ee — borders on light sections */
  --dh-line-dark:    #2b2d55;                   /* borders on dark accent sections */
  --dh-success:      #3f8cc4;
  --dh-font-display: var(--font-display);
  --dh-font-body:    var(--font-body);
  --dh-font-italic:  var(--font-italic);
}

/* ---------- dh-pdp shared section base ---------- */

.dh-section--pdp {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
@media (min-width: 768px) {
  .dh-section--pdp {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

.dh-section--pdp.dh-section--bg-cream    { background: var(--dh-cream); }
.dh-section--pdp.dh-section--bg-card     { background: var(--colour-card); }
.dh-section--pdp.dh-section--bg-green    { background: var(--dh-green); color: var(--dh-cream); }
.dh-section--pdp.dh-section--bg-white    { background: var(--colour-white); }
.dh-section--pdp.dh-section--bg-charcoal { background: var(--dh-charcoal); color: var(--dh-cream); }

.dh-section--pdp .dh-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (min-width: 768px) {
  .dh-section--pdp .dh-section__inner { padding: 0 var(--space-8); }
}

/* Hidden by section visibility toggle (schema setting) */
.dh-section--pdp[data-visible="false"] { display: none; }

/* ---------- dh-media-slot snippet ---------- */

.dh-media-slot {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--colour-card);
  display: block;
}
.dh-media-slot__image,
.dh-media-slot__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dh-media-slot--placeholder {
  background: linear-gradient(135deg, #E8E2D2 0%, #DDD5C3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px dashed var(--dh-line);
}
.dh-media-slot__placeholder-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  color: var(--colour-text-muted);
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.4;
}
.dh-media-slot__handle {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--dh-ink);
  opacity: 0.7;
}
.dh-media-slot__ratio {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ---------- dh-pdp shared headline + overline conventions ---------- */
/* DEVIATION-FROM-BRIEF: prompt requires Title Case headlines (line 1 of the prompt's "Voice rules").
   Brief 01 specifies sentence case. The Title Case is realised in copy, not CSS — no text-transform
   here. CSS does not enforce case; the section copy strings carry the casing per prompt. */

.dh-pdp-overline {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-brass);
  margin: 0 0 var(--space-3) 0;
}

.dh-pdp-h2 {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dh-green);
  margin: 0 0 var(--space-4) 0;
}
.dh-section--bg-green .dh-pdp-h2 { color: var(--dh-cream); }

.dh-pdp-pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--dh-brass);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Section CSS blocks for each dh-pdp-* section follow as each section is built. */

/* ---------- dh-pdp-utility-bar (section 1) ---------- */

.dh-section--pdp-utility-bar {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  color: var(--dh-cream);
  text-align: center;
  font-family: var(--dh-font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
@media (min-width: 768px) {
  .dh-section--pdp-utility-bar {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
    font-size: 14px;
  }
}

.dh-pdp-utility-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.dh-pdp-utility-bar__rotator {
  position: relative;
  height: 1.4em;
  overflow: hidden;
}

.dh-pdp-utility-bar__phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: dh-utility-rotate 15s linear infinite;
}
.dh-pdp-utility-bar__phrase[data-phrase-index="0"] { animation-delay: 0s; }
.dh-pdp-utility-bar__phrase[data-phrase-index="1"] { animation-delay: 5s; }
.dh-pdp-utility-bar__phrase[data-phrase-index="2"] { animation-delay: 10s; }

@keyframes dh-utility-rotate {
  0%   { opacity: 0; transform: translateY(6px); }
  4%   { opacity: 1; transform: translateY(0); }
  29%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .dh-pdp-utility-bar__rotator {
    height: auto;
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
  }
  .dh-pdp-utility-bar__phrase {
    position: static;
    inset: auto;
    opacity: 1;
    transform: none;
    animation: none;
  }
  .dh-pdp-utility-bar__phrase:not(:last-child)::after {
    content: '·';
    margin-left: var(--space-6);
    color: var(--dh-brass);
    opacity: 0.6;
  }
}

/* ---------- dh-pdp-hero (section 2) ---------- */

.dh-section--pdp-hero {
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .dh-section--pdp-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-20);
  }
}

.dh-pdp-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .dh-pdp-hero__inner {
    /* 2026-05-18: gallery narrowed further to 360px (was 480px → 700px)
       so the hero image takes up less visual weight and the right column
       has more room for offer stack + benefits + testifiers + CTA. */
    padding: 0 var(--space-8);
    grid-template-columns: 360px minmax(0, 1fr);
    gap: var(--space-10);
    align-items: start;
  }
}
@media (min-width: 1024px) {
  .dh-pdp-hero__inner { grid-template-columns: 400px minmax(0, 1fr); gap: var(--space-12); }
}

/* Gallery (left) */
.dh-pdp-hero__gallery {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: var(--space-3);
}
@media (max-width: 640px) {
  .dh-pdp-hero__gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }
}

.dh-pdp-hero__thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .dh-pdp-hero__thumbs {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
}

.dh-pdp-hero__thumb {
  display: block;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid var(--dh-line);
  background: var(--colour-card);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color 200ms ease;
}
.dh-pdp-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dh-pdp-hero__thumb.is-active {
  border-color: var(--dh-green);
  border-width: 2px;
}
.dh-pdp-hero__thumb:hover {
  border-color: var(--dh-brass);
}

.dh-pdp-hero__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--colour-card);
  overflow: hidden;
}
.dh-pdp-hero__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 250ms ease;
}

/* Details column (right) */
.dh-pdp-hero__details {
  /* 2026-05-18 fix: tightened gap from space-6 (24px) → space-4 (16px)
     so the bundle ladder (offer stack) sits closer to the fold. */
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* 1. Heritage portraits + caption */
/* Testifier portraits — moved BELOW bundle ladder via flex order so offer stack is fold-priority */
.dh-pdp-hero__testifiers {
  order: 95;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.dh-pdp-hero__testifier-portraits {
  display: flex;
}
.dh-pdp-hero__testifier-portraits .dh-media-slot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dh-cream);
  margin-left: -8px;
  flex-shrink: 0;
}
.dh-pdp-hero__testifier-portraits .dh-media-slot:first-child { margin-left: 0; }
.dh-pdp-hero__testifier-caption {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--dh-brass);
  margin: 0;
}

/* 2. Title */
.dh-pdp-hero__title {
  /* 2026-05-18 fix: reduced from clamp(2rem, 4vw + 0.5rem, 3rem) so the
     bundle ladder offer stack lands higher in viewport */
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: clamp(1.625rem, 2.6vw + 0.5rem, 2.25rem);
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -0.005em;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--dh-green);
  margin: 0;
}

/* 3. Strapline (brand tagline — Inter italic per prompt) */
.dh-pdp-hero__strapline {
  font-family: var(--dh-font-body);
  font-style: italic;
  font-size: 16px;
  color: var(--dh-brass);
  margin: 0;
  letter-spacing: 0.01em;
}

/* 4. Price block */
.dh-pdp-hero__price-block {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.dh-pdp-hero__compare-at {
  font-family: var(--dh-font-body);
  font-size: 18px;
  color: var(--colour-text-muted);
  text-decoration: line-through;
}
.dh-pdp-hero__price {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--dh-green);
  line-height: 1;
}
.dh-pdp-hero__save-pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--dh-brass);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* 5. Benefits */
/* Hero right-column ordering — 2026-05-18 final:
   Testifier portraits, benefits ticks, bundle ladder, CTA — ALL above the fold.
   Order: testifiers → pre-pill/overline → title → strapline → price → benefits (compact) → bundle ladder → CTA → swatches → trust → testimonial → anchors → mini-FAQ */
.dh-pdp-hero__testifiers { order: 1; }
.dh-pdp-hero__pre-pill-row { order: 2; }
.dh-pdp-hero__overline { order: 3; }
.dh-pdp-hero__title { order: 4; }
.dh-pdp-hero__strapline { order: 5; }
.dh-pdp-hero__price-block { order: 6; }
.dh-pdp-hero__benefits { order: 7; }
.dh-pdp-hero__buy-form { order: 8; }
.dh-pdp-hero__variants { order: 9; }
.dh-pdp-hero__price-anchors { order: 10; }
.dh-pdp-hero__trust-row { order: 11; }
.dh-pdp-hero__testimonial,
.dh-pdp-hero__testimonial-static { order: 12; }
.dh-pdp-hero__mini-faq { order: 13; }

/* Compact benefits list — 2-column grid with smaller ticks so 4 benefits fit in ~80px instead of ~160px */
.dh-pdp-hero__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.dh-pdp-hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.35;
  color: var(--dh-ink);
  margin: 0;
  padding: 0;
}
.dh-pdp-hero__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--dh-green);
  color: var(--dh-cream);
  font-size: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
@media (max-width: 640px) {
  .dh-pdp-hero__benefits { grid-template-columns: 1fr; }
}

/* Compact testifier portraits row — keep it small + horizontal at top */
.dh-pdp-hero__testifier-portraits {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.dh-pdp-hero__testifier-portraits > * {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--dh-line);
}
.dh-pdp-hero__testifier-portraits img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dh-pdp-hero__testifier-caption {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 13px;
  line-height: 1.3;
  color: var(--dh-ink);
  margin: 0;
  opacity: 0.85;
}
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.dh-pdp-hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--dh-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--dh-ink);
}
.dh-pdp-hero__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--dh-success);
  color: var(--dh-cream);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 6. Variants */
.dh-pdp-hero__variant-label {
  font-family: var(--dh-font-body);
  font-size: 14px;
  color: var(--dh-ink);
  margin-bottom: var(--space-2);
}
.dh-pdp-hero__swatches {
  display: flex;
  gap: var(--space-2);
}
.dh-pdp-hero__swatch {
  /* Tap target 44×44px — meets WCAG AAA + Apple HIG minimum.
     Was 36px (mobile-unfriendly per audit 2026-05-18). */
  padding: 4px;
  background: var(--dh-cream);
  border: 1px solid var(--dh-line);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease;
}
.dh-pdp-hero__swatch:hover { border-color: var(--dh-brass); }
.dh-pdp-hero__swatch.is-active {
  border-color: var(--dh-green);
  border-width: 2px;
  padding: 1px;
}
.dh-pdp-hero__swatch.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.dh-pdp-hero__swatch-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--dh-line);
}

/* 7. Bundle ladder */
.dh-pdp-hero__bundles {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.dh-pdp-hero__bundle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--colour-card);
  border: 1px solid var(--dh-line);
  cursor: pointer;
  text-align: left;
  border-radius: 2px;
  transition: border-color 200ms ease, background 200ms ease;
}
.dh-pdp-hero__bundle:hover {
  border-color: var(--dh-brass);
}
.dh-pdp-hero__bundle.is-active {
  border-color: var(--dh-green);
  border-width: 2px;
  padding: calc(var(--space-4) - 1px);
  background: var(--dh-cream);
}
.dh-pdp-hero__bundle-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.dh-pdp-hero__bundle-title {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--dh-green);
}
.dh-pdp-hero__bundle-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--dh-brass);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  align-self: flex-start;
}
.dh-pdp-hero__bundle-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.dh-pdp-hero__bundle-price {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--dh-green);
}
.dh-pdp-hero__bundle-compare {
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--colour-text-muted);
  text-decoration: line-through;
}
.dh-pdp-hero__bundle-save {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--dh-brass);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 8. Add-on row */
.dh-pdp-hero__addon {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--colour-card);
  border: 1px dashed var(--dh-line);
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--colour-text-muted);
  opacity: 0.6;
}
.dh-pdp-hero__addon input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: not-allowed;
}
.dh-pdp-hero__addon-status {
  font-style: italic;
  margin-left: var(--space-2);
}

/* 9. Primary CTA — DEVIATION: Cormorant per prompt (brief specifies Inter UPPERCASE) */
.dh-pdp-hero__cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--dh-green);
  color: var(--dh-cream);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--dh-font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 200ms ease;
  margin-top: var(--space-4);
}
.dh-pdp-hero__cta:hover {
  background: var(--colour-secondary);
}
.dh-pdp-hero__cta-price {
  font-size: 18px;
  opacity: 0.9;
}

/* 10. Trust row */
.dh-pdp-hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--dh-line);
  border-bottom: 1px solid var(--dh-line);
}
.dh-pdp-hero__trust-row li {
  font-family: var(--dh-font-body);
  font-size: 12px;
  color: var(--dh-ink);
  text-align: center;
  flex: 1;
  min-width: 100px;
}

/* 11. Testimonial card */
.dh-pdp-hero__testimonial {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--colour-card);
  border-left: 3px solid var(--dh-brass);
}
.dh-pdp-hero__testimonial-photo .dh-media-slot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.dh-pdp-hero__testimonial-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.dh-pdp-hero__testimonial-name {
  font-family: var(--dh-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--dh-ink);
}
.dh-pdp-hero__testimonial-badge {
  display: inline-block;
  padding: 2px 6px;
  background: var(--dh-success);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}
.dh-pdp-hero__testimonial-quote {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dh-ink);
  margin: 0;
}
.dh-pdp-hero__testimonial--placeholder { opacity: 0.5; }
.dh-pdp-hero__testimonial-placeholder-note {
  font-family: var(--dh-font-body);
  font-size: 11px;
  color: var(--colour-text-muted);
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

/* 12. Mini-FAQ */
.dh-pdp-hero__mini-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--dh-line);
}
.dh-pdp-hero__faq-item {
  border-bottom: 1px solid var(--dh-line);
}
.dh-pdp-hero__faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  font-family: var(--dh-font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--dh-ink);
  cursor: pointer;
  list-style: none;
}
.dh-pdp-hero__faq-q::-webkit-details-marker { display: none; }
.dh-pdp-hero__faq-icon {
  color: var(--dh-brass);
  font-size: 18px;
  transition: transform 200ms ease;
}
.dh-pdp-hero__faq-item[open] .dh-pdp-hero__faq-icon { transform: rotate(45deg); }
.dh-pdp-hero__faq-a {
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--dh-ink);
  padding: 0 0 var(--space-4) 0;
  opacity: 0.85;
}

/* Mix & Match modal */
.dh-pdp-hero__modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.dh-pdp-hero__modal[hidden] { display: none; }
.dh-pdp-hero__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
}
.dh-pdp-hero__modal-panel {
  position: relative;
  z-index: 1;
  background: var(--dh-cream);
  max-width: 480px;
  width: 100%;
  padding: var(--space-8);
  border-radius: 2px;
  max-height: 90vh;
  overflow-y: auto;
}
.dh-pdp-hero__modal-close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-3);
  background: none;
  border: none;
  font-size: 28px;
  color: var(--dh-ink);
  cursor: pointer;
  padding: var(--space-2);
  line-height: 1;
}
.dh-pdp-hero__modal-title {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--dh-green);
  margin: 0 0 var(--space-2);
}
.dh-pdp-hero__modal-sub {
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--dh-ink);
  opacity: 0.7;
  margin: 0 0 var(--space-6);
}
.dh-pdp-hero__modal-bands {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.dh-pdp-hero__modal-band {
  border: 1px solid var(--dh-line);
  padding: var(--space-3);
}
.dh-pdp-hero__modal-band-label {
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dh-brass);
  margin-bottom: var(--space-2);
}
.dh-pdp-hero__modal-band-swatches {
  display: flex;
  gap: var(--space-2);
}
.dh-pdp-hero__modal-band-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--dh-line);
  padding: 2px;
  cursor: pointer;
  background: var(--dh-cream);
}
.dh-pdp-hero__modal-band-swatch.is-active {
  border-color: var(--dh-green);
  border-width: 2px;
  padding: 1px;
}
.dh-pdp-hero__modal-band-swatch.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.dh-pdp-hero__modal-band-swatch-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--dh-line);
}
.dh-pdp-hero__modal-confirm {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--dh-green);
  color: var(--dh-cream);
  border: none;
  font-family: var(--dh-font-display);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
}
.dh-pdp-hero__modal-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sticky cart sentinel */
.dh-pdp-hero__sticky-sentinel {
  width: 100%;
  height: 1px;
  pointer-events: none;
}

/* ---------- dh-pdp-marquee (section 3) ---------- */

.dh-section--pdp-marquee {
  background: var(--dh-brass);
  color: var(--dh-cream);
  padding: var(--space-3) 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .dh-section--pdp-marquee { padding: var(--space-4) 0; }
}
.dh-pdp-marquee__track {
  display: flex;
  white-space: nowrap;
  animation: dh-marquee-scroll 40s linear infinite;
  will-change: transform;
}
.dh-pdp-marquee__group {
  display: flex;
  gap: var(--space-4);
  padding-right: var(--space-4);
  flex-shrink: 0;
  align-items: center;
}
.dh-pdp-marquee__phrase {
  font-family: var(--dh-font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dh-cream);
}
@media (min-width: 768px) {
  .dh-pdp-marquee__phrase { font-size: 22px; }
}
.dh-pdp-marquee__sep {
  color: var(--dh-cream);
  opacity: 0.5;
  font-size: 14px;
}
.dh-pdp-marquee__sr-list {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@keyframes dh-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .dh-pdp-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ---------- dh-pdp-heritage (section 4) ---------- */

.dh-section--pdp-heritage { background: var(--dh-cream); }
.dh-pdp-heritage__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .dh-pdp-heritage__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}
.dh-pdp-heritage__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.dh-pdp-heritage__body .dh-pdp-pill { align-self: flex-start; }
.dh-pdp-heritage__prose {
  font-family: var(--dh-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dh-ink);
}
.dh-pdp-heritage__prose p { margin: 0 0 var(--space-4) 0; }
.dh-pdp-heritage__prose p:last-child { margin-bottom: 0; }

/* ---------- dh-pdp-video-grid (section 5) ---------- */

.dh-section--pdp-video-grid { background: var(--colour-card); }
.dh-pdp-video-grid__headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dh-pdp-video-grid__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (min-width: 1024px) {
  .dh-pdp-video-grid__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}
.dh-pdp-video-grid__tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.dh-pdp-video-grid__media {
  position: relative;
  overflow: hidden;
  background: var(--dh-cream);
}
.dh-pdp-video-grid__media .dh-media-slot {
  width: 100%;
}
.dh-pdp-video-grid__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3);
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.7));
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 500;
}
.dh-pdp-video-grid__cta {
  display: block;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  background: var(--dh-green);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 200ms ease;
}
.dh-pdp-video-grid__cta:hover {
  background: var(--colour-secondary);
  color: var(--dh-cream);
}

/* ---------- dh-pdp-before-after (section 6) ---------- */

.dh-section--pdp-before-after { background: var(--dh-cream); }
.dh-pdp-ba__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .dh-pdp-ba__inner {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-12);
  }
}
.dh-pdp-ba__caption { display: flex; flex-direction: column; gap: var(--space-4); }
.dh-pdp-ba__caption .dh-pdp-pill { align-self: flex-start; }
.dh-pdp-ba__sub {
  font-family: var(--dh-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dh-ink);
  margin: 0;
}
.dh-pdp-ba__slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--colour-card);
  user-select: none;
  cursor: ew-resize;
}
.dh-pdp-ba__after,
.dh-pdp-ba__before {
  position: absolute;
  inset: 0;
}
.dh-pdp-ba__after .dh-media-slot,
.dh-pdp-ba__before .dh-media-slot {
  width: 100%;
  height: 100%;
}
.dh-pdp-ba__before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 50ms linear;
}
.dh-pdp-ba__label {
  position: absolute;
  bottom: var(--space-4);
  padding: 4px 10px;
  background: rgba(242, 244, 248, 0.9);
  color: var(--dh-ink);
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.dh-pdp-ba__label--before { left: var(--space-4); }
.dh-pdp-ba__label--after { right: var(--space-4); }
.dh-pdp-ba__handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 48px;
  background: none;
  border: none;
  cursor: ew-resize;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.dh-pdp-ba__handle-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--dh-cream);
  box-shadow: 0 0 0 1px rgba(26, 26, 26, 0.2);
}
.dh-pdp-ba__handle-grip {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--dh-cream);
  border: 2px solid var(--dh-green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dh-font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--dh-green);
}

/* ---------- dh-pdp-how-to (section 7) ---------- */

.dh-section--pdp-how-to { background: var(--dh-cream); }
.dh-pdp-how-to__headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dh-pdp-how-to__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .dh-pdp-how-to__steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}
.dh-pdp-how-to__step {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: left;
}
.dh-pdp-how-to__step-media .dh-media-slot {
  width: 100%;
}
.dh-pdp-how-to__step-num {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 36px;
  color: var(--dh-brass);
  line-height: 1;
  margin-top: var(--space-2);
}
.dh-pdp-how-to__step-title {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--dh-green);
  margin: 0;
  line-height: 1.3;
}
.dh-pdp-how-to__step-desc {
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dh-ink);
  margin: 0;
  opacity: 0.9;
}

/* ---------- dh-pdp-stats (section 8) ---------- */

.dh-section--pdp-stats { background: var(--dh-cream); }
.dh-pdp-stats__headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dh-pdp-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  text-align: center;
}
@media (min-width: 768px) {
  .dh-pdp-stats__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.dh-pdp-stats__stat {
  padding: var(--space-6) var(--space-4);
  border-top: 1px solid var(--dh-line);
}
@media (min-width: 768px) {
  .dh-pdp-stats__stat { border-top: none; border-left: 1px solid var(--dh-line); }
  .dh-pdp-stats__stat:first-child { border-left: none; }
}
.dh-pdp-stats__num {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 56px;
  color: var(--dh-brass);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.dh-pdp-stats__label {
  font-family: var(--dh-font-body);
  font-size: 14px;
  color: var(--dh-green);
  font-weight: 500;
}
.dh-pdp-stats__placeholder-note {
  text-align: center;
  font-family: var(--dh-font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--colour-text-muted);
  margin: 0;
  opacity: 0.6;
}

/* ---------- dh-pdp-reviews (section 9) ---------- */

.dh-section--pdp-reviews { background: var(--dh-cream); }
.dh-pdp-reviews__inner { text-align: center; }
.dh-pdp-reviews__headline { margin: 0 auto var(--space-4); max-width: 720px; }
.dh-pdp-reviews__sub {
  font-family: var(--dh-font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--dh-brass);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- dh-pdp-faq-full (section 10) ---------- */

.dh-section--pdp-faq-full { background: var(--dh-cream); }
.dh-pdp-faq-full__inner { max-width: var(--container-text); margin: 0 auto; }
.dh-pdp-faq-full__headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dh-pdp-faq-full__list { display: flex; flex-direction: column; }
.dh-pdp-faq-full__item {
  border-bottom: 1px solid var(--dh-line);
}
.dh-pdp-faq-full__item:first-child { border-top: 1px solid var(--dh-line); }
.dh-pdp-faq-full__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  font-family: var(--dh-font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--dh-ink);
  cursor: pointer;
  list-style: none;
}
.dh-pdp-faq-full__q::-webkit-details-marker { display: none; }
.dh-pdp-faq-full__icon {
  color: var(--dh-brass);
  font-size: 22px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.dh-pdp-faq-full__item[open] .dh-pdp-faq-full__icon { transform: rotate(45deg); }
.dh-pdp-faq-full__a {
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--dh-ink);
  padding: 0 0 var(--space-4) 0;
  opacity: 0.9;
}

/* ---------- dh-pdp-comparison (section 11) ---------- */

.dh-section--pdp-comparison { background: var(--dh-cream); }
.dh-pdp-comp__headline { text-align: center; margin-bottom: var(--space-8); }
.dh-pdp-comp__table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: collapse;
  font-family: var(--dh-font-body);
  font-size: 14px;
}
.dh-pdp-comp__table th,
.dh-pdp-comp__table td {
  padding: var(--space-3) var(--space-4);
  text-align: center;
  border-bottom: 1px solid var(--dh-line);
}
.dh-pdp-comp__table thead th {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--dh-green);
  background: var(--colour-card);
  border-bottom: 2px solid var(--dh-green);
}
.dh-pdp-comp__th--us { background: var(--dh-green); color: var(--dh-cream) !important; }
.dh-pdp-comp__th--feature { background: transparent; border-bottom-color: transparent; }
.dh-pdp-comp__row-label {
  text-align: left;
  font-weight: 500;
  color: var(--dh-ink);
}
.dh-pdp-comp__cell--us { background: rgba(31, 71, 51, 0.05); }
.dh-pdp-comp__icon { display: inline-block; vertical-align: middle; }
.dh-pdp-comp__icon--check { color: var(--dh-success); }
.dh-pdp-comp__icon--dash { color: var(--colour-text-muted); }
.dh-pdp-comp__icon--cross { color: var(--colour-error); }

@media (max-width: 640px) {
  .dh-pdp-comp__table th,
  .dh-pdp-comp__table td { padding: var(--space-2) var(--space-3); font-size: 13px; }
}

/* ---------- dh-pdp-guarantee (section 12) ---------- */

.dh-section--pdp-guarantee { background: var(--dh-cream); }
.dh-pdp-guarantee__inner { max-width: 960px; margin: 0 auto; }
.dh-pdp-guarantee__panel {
  background: var(--dh-cream);
  border: 2px solid var(--dh-green);
  padding: var(--space-8) var(--space-6);
}
@media (min-width: 768px) {
  .dh-pdp-guarantee__panel { padding: var(--space-12); }
}
.dh-pdp-guarantee__headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dh-pdp-guarantee__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .dh-pdp-guarantee__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.dh-pdp-guarantee__block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.dh-pdp-guarantee__block-title {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--dh-green);
  margin: 0;
}
.dh-pdp-guarantee__block-body {
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dh-ink);
  margin: 0;
  opacity: 0.9;
}

/* ---------- dh-pdp-related (section 13) ---------- */

.dh-section--pdp-related { background: var(--dh-cream); }
.dh-pdp-related__headline { text-align: center; margin-bottom: var(--space-8); }
.dh-pdp-related__carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 480px;
  margin: 0 auto;
}
.dh-pdp-related__card {
  background: var(--colour-card);
  border: 1px solid var(--dh-line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
}
.dh-pdp-related__card--placeholder { opacity: 0.85; }
.dh-pdp-related__card-media .dh-media-slot { width: 100%; height: 100%; }
.dh-pdp-related__card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.dh-pdp-related__card-body .dh-pdp-pill { align-self: flex-start; }
.dh-pdp-related__card-title {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--dh-green);
  margin: 0;
}
.dh-pdp-related__card-desc {
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--dh-ink);
  margin: 0;
  opacity: 0.85;
}
.dh-pdp-related__card-price {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--dh-brass);
  margin-top: auto;
}

/* ---------- dh-pdp-sticky-cart (section 15) ---------- */

.dh-pdp-sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--dh-cream);
  border-top: 1px solid var(--dh-line);
  box-shadow: 0 -2px 12px rgba(26, 26, 26, 0.06);
  transform: translateY(100%);
  transition: transform 250ms ease;
  visibility: hidden;
}
.dh-pdp-sticky-cart.is-visible {
  transform: translateY(0);
  visibility: visible;
}
.dh-pdp-sticky-cart[data-visible="false"] { display: none; }
.dh-pdp-sticky-cart__inner {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
}
.dh-pdp-sticky-cart__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--colour-card);
  border-radius: 2px;
}
.dh-pdp-sticky-cart__name {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--dh-green);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .dh-pdp-sticky-cart__name { font-size: 16px; }
}
.dh-pdp-sticky-cart__meta {
  font-family: var(--dh-font-body);
  font-size: 12px;
  color: var(--dh-ink);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.dh-pdp-sticky-cart__sep { opacity: 0.4; }
.dh-pdp-sticky-cart__price { font-weight: 600; color: var(--dh-green); }
.dh-pdp-sticky-cart__cta {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  background: var(--dh-green);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}
.dh-pdp-sticky-cart__cta:hover {
  background: var(--colour-secondary);
  color: var(--dh-cream);
}

@media (max-width: 480px) {
  .dh-pdp-sticky-cart__meta { font-size: 11px; }
  .dh-pdp-sticky-cart__cta { padding: var(--space-3) var(--space-4); font-size: 12px; }
}

/* Bottom padding on body when sticky cart visible (so it doesn't cover content) */
body:has(.dh-pdp-sticky-cart.is-visible) {
  padding-bottom: 70px;
}
@media (prefers-reduced-motion: reduce) {
  .dh-pdp-sticky-cart { transition: none; }
}

/* ============================================================
   DUSKHALO "Lights Out" palette overrides
   Layered on top of existing dh-pdp section CSS to flip the look
   to void-base + deep-ice CTA without rewriting per-section CSS.
   ============================================================ */

/* ── Charcoal section global element treatment ── */
.dh-section--bg-charcoal {
  color: var(--dh-cream);
}
.dh-section--bg-charcoal .dh-pdp-h2,
.dh-section--bg-charcoal .dh-pdp-overline {
  color: var(--dh-cream);
}
.dh-section--bg-charcoal .dh-pdp-overline {
  color: var(--dh-oxblood);
}

/* ── Hero overrides for charcoal bg (when class is added) ── */
.dh-pdp-hero.dh-section--bg-charcoal,
.dh-section--pdp-hero.dh-section--bg-charcoal {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
}
.dh-section--bg-charcoal .dh-pdp-hero__title { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__strapline { color: var(--dh-oxblood); }
.dh-section--bg-charcoal .dh-pdp-hero__testifier-caption { color: var(--dh-brass); }
.dh-section--bg-charcoal .dh-pdp-hero__main,
.dh-section--bg-charcoal .dh-pdp-hero__thumb { background: var(--dh-charcoal-2); border-color: var(--dh-line-dark); }
.dh-section--bg-charcoal .dh-pdp-hero__price { color: var(--dh-oxblood); }
.dh-section--bg-charcoal .dh-pdp-hero__compare-at { color: var(--dh-cream); opacity: 0.5; }
.dh-section--bg-charcoal .dh-pdp-hero__save-pill { background: var(--dh-oxblood); color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__benefits li { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__check { background: var(--dh-success); color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__variant-label { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__swatch {
  background: var(--dh-charcoal-2);
  border-color: var(--dh-line-dark);
}
.dh-section--bg-charcoal .dh-pdp-hero__swatch.is-active {
  border-color: var(--dh-oxblood);
}
.dh-section--bg-charcoal .dh-pdp-hero__bundle {
  background: var(--dh-charcoal-2);
  border-color: var(--dh-line-dark);
}
.dh-section--bg-charcoal .dh-pdp-hero__bundle:hover {
  border-color: var(--dh-oxblood);
}
.dh-section--bg-charcoal .dh-pdp-hero__bundle.is-active {
  border-color: var(--dh-oxblood);
  background: rgba(139, 45, 45, 0.08);
}
.dh-section--bg-charcoal .dh-pdp-hero__bundle-title { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__bundle-price { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__bundle-compare { color: var(--dh-cream); opacity: 0.45; }
.dh-section--bg-charcoal .dh-pdp-hero__bundle-save { color: var(--dh-oxblood); }
.dh-section--bg-charcoal .dh-pdp-hero__bundle-tag { background: var(--dh-oxblood); color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__addon {
  background: var(--dh-charcoal-2);
  border-color: var(--dh-line-dark);
  color: var(--dh-cream);
  opacity: 0.5;
}
.dh-section--bg-charcoal .dh-pdp-hero__cta {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dh-section--bg-charcoal .dh-pdp-hero__cta:hover { background: var(--dh-oxblood-2); }
.dh-section--bg-charcoal .dh-pdp-hero__cta-price {
  font-size: 14px;
  opacity: 1;
  letter-spacing: 0.04em;
}
.dh-section--bg-charcoal .dh-pdp-hero__trust-row {
  border-color: var(--dh-line-dark);
}
.dh-section--bg-charcoal .dh-pdp-hero__trust-row li { color: var(--dh-cream); opacity: 0.85; }
.dh-section--bg-charcoal .dh-pdp-hero__testimonial {
  background: var(--dh-charcoal-2);
  border-left-color: var(--dh-oxblood);
}
.dh-section--bg-charcoal .dh-pdp-hero__testimonial-name { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__testimonial-quote { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__testimonial-placeholder-note { color: var(--dh-cream); opacity: 0.5; }
.dh-section--bg-charcoal .dh-pdp-hero__mini-faq { border-color: var(--dh-line-dark); }
.dh-section--bg-charcoal .dh-pdp-hero__faq-item { border-color: var(--dh-line-dark); }
.dh-section--bg-charcoal .dh-pdp-hero__faq-q { color: var(--dh-cream); }
.dh-section--bg-charcoal .dh-pdp-hero__faq-a { color: var(--dh-cream); opacity: 0.85; }
.dh-section--bg-charcoal .dh-pdp-hero__faq-icon { color: var(--dh-oxblood); }

/* ── Marquee swap from brass to charcoal ── */
.dh-section--pdp-marquee {
  background: var(--dh-charcoal);
  border-top: 1px solid var(--dh-oxblood);
  border-bottom: 1px solid var(--dh-oxblood);
}
.dh-pdp-marquee__phrase { color: var(--dh-cream); }
.dh-pdp-marquee__sep { color: var(--dh-oxblood); opacity: 1; }

/* ── Video grid on charcoal ── */
.dh-section--pdp-video-grid {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
}
.dh-section--pdp-video-grid .dh-pdp-h2 { color: var(--dh-cream); }
.dh-pdp-video-grid__media { background: var(--dh-charcoal-2); }
.dh-pdp-video-grid__cta {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
}
.dh-pdp-video-grid__cta:hover { background: var(--dh-oxblood-2); color: var(--dh-cream); }

/* ── Before/after on charcoal ── */
.dh-section--pdp-before-after {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
}
.dh-section--pdp-before-after .dh-pdp-h2 { color: var(--dh-cream); }
.dh-pdp-ba__sub { color: var(--dh-cream); opacity: 0.85; }
.dh-pdp-ba__slider { background: var(--dh-charcoal-2); }
.dh-pdp-ba__handle-grip {
  background: var(--dh-charcoal-2);
  border-color: var(--dh-oxblood);
  color: var(--dh-oxblood);
}

/* ── Stats on charcoal ── */
.dh-section--pdp-stats {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
}
.dh-section--pdp-stats .dh-pdp-h2 { color: var(--dh-cream); }
.dh-pdp-stats__num { color: var(--dh-oxblood); }
.dh-pdp-stats__label { color: var(--dh-cream); }
.dh-pdp-stats__stat { border-color: var(--dh-line-dark); }

/* ── Sticky cart on charcoal ── */
.dh-pdp-sticky-cart {
  background: var(--dh-charcoal);
  border-top: 1px solid var(--dh-line-dark);
  color: var(--dh-cream);
}
.dh-pdp-sticky-cart__name { color: var(--dh-cream); }
.dh-pdp-sticky-cart__meta { color: var(--dh-cream); opacity: 0.85; }
.dh-pdp-sticky-cart__price { color: var(--dh-oxblood); }
.dh-pdp-sticky-cart__cta { background: var(--dh-oxblood); color: var(--dh-cream); }
.dh-pdp-sticky-cart__cta:hover { background: var(--dh-oxblood-2); color: var(--dh-cream); }
.dh-pdp-sticky-cart__thumb { background: var(--dh-charcoal-2); }

/* ── Heritage stays cream but pill becomes oxblood ── */
.dh-pdp-heritage__body .dh-pdp-pill { background: var(--dh-oxblood); color: var(--dh-cream); }

/* ── Pills site-wide flip to oxblood ── */
.dh-pdp-pill { background: var(--dh-oxblood); color: var(--dh-cream); }

/* ── Comparison: us-column accent flips green→oxblood ── */
.dh-pdp-comp__th--us { background: var(--dh-oxblood); color: var(--dh-cream) !important; border-bottom-color: var(--dh-oxblood); }
.dh-pdp-comp__cell--us { background: rgba(139, 45, 45, 0.06); }

/* ── Guarantee panel: oxblood border instead of green ── */
.dh-pdp-guarantee__panel { border-color: var(--dh-oxblood); }
.dh-pdp-guarantee__block-title { color: var(--dh-oxblood); }

/* ── Related card pill ── */
.dh-pdp-related__card-price { color: var(--dh-oxblood); }

/* ── How-to step numerals flip brass→oxblood ── */
.dh-pdp-how-to__step-num { color: var(--dh-oxblood); }

/* ── FAQ icon flips brass→oxblood ── */
.dh-pdp-faq-full__icon { color: var(--dh-oxblood); }

/* ============================================================
   Polish-1 — header + footer + popup updates (2026-05-17)
   DUSKHALO chrome on the Lights Out palette.
   ============================================================ */

/* Hide the OLD .site-header so the new .dh-header takes over without conflict */
.site-header { display: none; }
.site-footer { display: none; }

/* ── dh-header — announcement strip + main row ── */
.dh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dh-charcoal);
  border-bottom: 1px solid var(--dh-line-dark);
}

.dh-header__announce {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  overflow: hidden;
}
.dh-header__announce-rotator {
  position: relative;
  height: 1.4em;
  max-width: var(--container-max);
  margin: 0 auto;
}
.dh-header__announce-phrase {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: dh-header-rotate 15s linear infinite;
}
.dh-header__announce-phrase[data-announce-index="0"] { animation-delay: 0s; }
.dh-header__announce-phrase[data-announce-index="1"] { animation-delay: 5s; }
.dh-header__announce-phrase[data-announce-index="2"] { animation-delay: 10s; }
@keyframes dh-header-rotate {
  0%   { opacity: 0; transform: translateY(6px); }
  4%   { opacity: 1; transform: translateY(0); }
  29%  { opacity: 1; transform: translateY(0); }
  33%  { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .dh-header__announce-rotator { height: auto; display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
  .dh-header__announce-phrase { position: static; inset: auto; opacity: 1; transform: none; animation: none; }
}

.dh-header__main {
  background: var(--dh-charcoal);
  padding: var(--space-4) 0;
}
.dh-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 768px) {
  .dh-header__inner { padding: 0 var(--space-8); }
}

.dh-header__logo {
  text-decoration: none;
  color: var(--dh-cream);
}
.dh-header__wordmark {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--dh-cream);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .dh-header__wordmark { font-size: 26px; }
}
.dh-header__logo-img { max-height: 36px; width: auto; display: block; }

.dh-header__nav {
  /* 2026-05-18 fix: nav was hidden on mobile entirely. Now visible as a
     compact scrollable row so customers can navigate. */
  display: flex;
  justify-content: center;
  gap: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.dh-header__nav::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
  /* Mobile: nav appears as second row under logo+bag — TIGHT padding */
  .dh-header__main { padding: 10px 0; }
  .dh-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 6px;
    padding: 0 14px;
  }
  .dh-header__logo { grid-row: 1; grid-column: 1; }
  .dh-header__cart { grid-row: 1; grid-column: 2; }
  .dh-header__nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 6px;
    gap: 16px;
  }
  .dh-header__nav-link {
    font-size: 11px;
    letter-spacing: 0.06em;
  }
  .dh-header__wordmark { font-size: 16px; letter-spacing: 0.06em; }
  .dh-header__announce { padding: 6px 0; font-size: 10px; }
  .dh-header__announce-rotator { height: 1.2em; }
}
@media (min-width: 768px) {
  .dh-header__nav {
    gap: var(--space-6);
    overflow: visible;
  }
}
.dh-header__nav-link {
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dh-cream);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 200ms ease, color 200ms ease;
}
.dh-header__nav-link:hover { opacity: 1; color: var(--dh-oxblood); }

.dh-header__cart {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: transparent;
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dh-line-dark);
  border-radius: 2px;
  transition: border-color 200ms ease;
}
.dh-header__cart:hover { border-color: var(--dh-oxblood); color: var(--dh-cream); }
.dh-header__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

/* ── dh-footer — 4-column charcoal ── */
.dh-footer {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  border-top: 1px solid var(--dh-line-dark);
}
.dh-footer__top {
  padding: var(--space-12) 0;
}
@media (min-width: 768px) {
  .dh-footer__top { padding: var(--space-16) 0; }
}
.dh-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .dh-footer__inner {
    padding: 0 var(--space-8);
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: var(--space-8);
  }
}

.dh-footer__brand-title {
  font-family: var(--dh-font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--dh-cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}
.dh-footer__brand-tagline {
  font-family: var(--dh-font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--dh-oxblood);
  margin: 0 0 var(--space-3) 0;
}
.dh-footer__brand-blurb {
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--dh-cream);
  opacity: 0.7;
  margin: 0;
  max-width: 320px;
}

.dh-footer__col-title {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-oxblood);
  margin-bottom: var(--space-3);
}
.dh-footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.dh-footer__col-list a {
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--dh-cream);
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 150ms ease;
}
.dh-footer__col-list a:hover { opacity: 1; color: var(--dh-oxblood); }

.dh-footer__newsletter-body {
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--dh-cream);
  opacity: 0.7;
  margin: 0 0 var(--space-3) 0;
}
.dh-footer__newsletter-form {
  display: flex;
  gap: 0;
}
.dh-footer__newsletter-form input[type="email"] {
  flex: 1;
  padding: var(--space-3);
  background: var(--dh-charcoal-2);
  border: 1px solid var(--dh-line-dark);
  border-right: none;
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 14px;
  border-radius: 2px 0 0 2px;
}
.dh-footer__newsletter-form input[type="email"]::placeholder {
  color: var(--dh-cream);
  opacity: 0.4;
}
.dh-footer__newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--dh-oxblood);
}
.dh-footer__newsletter-submit {
  padding: var(--space-3) var(--space-5);
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border: 1px solid var(--dh-oxblood);
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 200ms ease;
}
.dh-footer__newsletter-submit:hover { background: var(--dh-oxblood-2); }

.dh-footer__bottom {
  background: #060706;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--dh-line-dark);
}
.dh-footer__bottom .dh-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .dh-footer__bottom .dh-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.dh-footer__copyright,
.dh-footer__payments {
  font-family: var(--dh-font-body);
  font-size: 11px;
  color: var(--dh-cream);
  opacity: 0.55;
  letter-spacing: 0.04em;
}
.dh-footer__payments span:not(.dh-footer__pay-dot) {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dh-footer__pay-dot {
  margin: 0 var(--space-2);
  opacity: 0.4;
}

/* Hide dh-pdp-utility-bar when header handles trust signals
   (header announce now carries the same job, so the utility-bar
   becomes redundant on the PDP). Keep section on disk for rollback —
   just visually suppress on PDP body. */
body.template-product .dh-section--pdp-utility-bar { display: none; }

/* ============================================================
   Polish-2 — typography upgrade + logo + image-slot polish (2026-05-17)
   Manrope display swap (Cormorant retired from headlines, kept as italic
   accent). Bigger, bolder, sharper type system. Image placeholders get
   subtle pattern + watermark.
   ============================================================ */

/* Hero hook headline — bigger, bolder, Manrope ExtraBold */
.dh-pdp-hero__title {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}

/* Section headlines — Manrope 700, larger */
.dh-pdp-h2 {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

/* h3 (used in how-to step titles, guarantee block titles) */
.dh-pdp-how-to__step-title,
.dh-pdp-guarantee__block-title,
.dh-pdp-related__card-title {
  font-family: var(--dh-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 22px;
}

/* Hero strapline — keep italic, switch to Cormorant accent */
.dh-pdp-hero__strapline {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .dh-pdp-hero__strapline { font-size: 20px; }
}

/* Bundle ladder title — bigger, sans, bolder */
.dh-pdp-hero__bundle-title {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.005em;
}
.dh-pdp-hero__bundle-price {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}

/* Hero price block — bolder */
.dh-pdp-hero__price {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
}

/* Testifier caption — keep Cormorant italic accent */
.dh-pdp-hero__testifier-caption {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
}

/* Hero overline — Inter UPPERCASE bolder */
.dh-pdp-hero__overline {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3) 0;
}

/* Hero CTA — bigger oxblood button */
.dh-section--bg-charcoal .dh-pdp-hero__cta {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-6);
  border-radius: 2px;
}
.dh-section--bg-charcoal .dh-pdp-hero__cta:hover {
  background: var(--dh-oxblood-2);
}

/* ── Logo wordmark — Manrope 800, bigger, sharper ── */
.dh-header__wordmark {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--dh-cream);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .dh-header__wordmark {
    font-size: 30px;
    letter-spacing: 0.03em;
  }
}

/* ── Footer brand title — also Manrope 800 ── */
.dh-footer__brand-title {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.dh-footer__brand-tagline {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
}

/* ── Sticky cart product name — Manrope 700 ── */
.dh-pdp-sticky-cart__name {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}

/* ── Heritage pill + headlines bolder ── */
.dh-pdp-pill {
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 11px;
  padding: 5px 12px;
}

/* ── Marquee phrases — Manrope 700 ── */
.dh-pdp-marquee__phrase {
  font-family: var(--dh-font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
}

/* ── Stats numerals — bigger, bolder ── */
.dh-pdp-stats__num {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) {
  .dh-pdp-stats__num { font-size: 80px; }
}

/* ── Image-slot placeholder — DUSKHALO void + halo ── */
.dh-media-slot--placeholder {
  background: radial-gradient(ellipse at 50% 120%, #2b2d55 0%, #16161f 70%);
  border: 1px dashed rgba(159, 216, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.dh-media-slot--placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -60%);
  border: 2px solid rgba(159, 216, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(159, 216, 255, 0.06), 0 0 60px rgba(159, 216, 255, 0.18);
  pointer-events: none;
}
.dh-media-slot__placeholder-inner {
  z-index: 1;
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
}
.dh-media-slot__handle {
  display: block;
  font-family: var(--dh-font-display, var(--font-display));
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: #e8ecf4;
}
.dh-media-slot__ratio {
  display: block;
  font-family: var(--dh-font-body, var(--font-body));
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f9bc4;
  margin-top: 4px;
}

.dh-section--bg-cream .dh-media-slot__placeholder-inner,
.dh-section--bg-card .dh-media-slot__placeholder-inner {
  background: rgba(242, 244, 248, 0.9);
}
.dh-section--bg-cream .dh-media-slot__handle,
.dh-section--bg-card .dh-media-slot__handle {
  color: var(--dh-oxblood);
}
.dh-section--bg-cream .dh-media-slot__ratio,
.dh-section--bg-card .dh-media-slot__ratio {
  color: var(--dh-ink);
  opacity: 0.55;
}

/* ── Hero main image — subtle hover scale, cleaner edges ── */
.dh-pdp-hero__main-image {
  transition: transform 400ms ease, opacity 250ms ease;
}
.dh-pdp-hero__main:hover .dh-pdp-hero__main-image {
  transform: scale(1.02);
}

/* ── Bundle ladder — stronger badge styling ── */
.dh-pdp-hero__bundle-tag {
  font-family: var(--dh-font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 8px;
}

/* ── Save pill — bigger, bolder ── */
.dh-pdp-hero__save-pill {
  font-family: var(--dh-font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 10px;
}

/* ── Benefits — slightly bigger, bolder weight ── */
.dh-pdp-hero__benefits li {
  font-family: var(--dh-font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}

/* ============================================================
   Overnight transformation polish — 2026-05-17 (autonomous)
   Cookie consent restyle, hero gallery enlargement, bundle ladder
   per-tier band dots, scarcity + price-anchor row, secondary CTA,
   guarantee full-bleed, comparison card-style, reviews seed offer.
   ============================================================ */

/* ── Shopify cookie consent banner — re-anchored to bottom + restyled ── */
#shopify-pc__banner,
.shopify-pc__banner,
shopify-pc-banner {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  background: var(--dh-charcoal) !important;
  color: var(--dh-cream) !important;
  border-top: 2px solid var(--dh-oxblood) !important;
  border-radius: 0 !important;
  font-family: var(--dh-font-body) !important;
  font-size: 13px !important;
  padding: var(--space-3) var(--space-4) !important;
  z-index: 95 !important;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2) !important;
}
#shopify-pc__banner *,
.shopify-pc__banner * {
  color: var(--dh-cream) !important;
  font-family: var(--dh-font-body) !important;
}
#shopify-pc__banner__btn-accept,
.shopify-pc__banner__btn-accept,
#shopify-pc__banner button[role="button"]:not([id*="decline"]):not([id*="prefs"]) {
  background: var(--dh-oxblood) !important;
  color: var(--dh-cream) !important;
  border: 1px solid var(--dh-oxblood) !important;
}

/* ── Hero gallery enlargement — give left column more weight ── */
@media (min-width: 768px) {
  .dh-pdp-hero__inner {
    /* 2026-05-18: fixed gallery width 360px so right column has more room for offer stack */
    grid-template-columns: 360px minmax(0, 1fr);
    gap: var(--space-10, var(--space-8));
  }
}
@media (min-width: 1024px) {
  .dh-pdp-hero__inner {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: var(--space-12);
  }
}
.dh-pdp-hero__main {
  aspect-ratio: 1 / 1;
  background: var(--dh-charcoal-2);
  border-radius: 2px;
  position: relative;
}
.dh-pdp-hero__main::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dh-line-dark);
  pointer-events: none;
  border-radius: 2px;
}

/* ── Hero secondary CTA — soft anchor link ── */
.dh-pdp-hero__secondary-cta {
  display: inline-block;
  margin-top: var(--space-3);
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--dh-cream);
  opacity: 0.7;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  transition: opacity 200ms ease, color 200ms ease;
}
.dh-pdp-hero__secondary-cta:hover {
  opacity: 1;
  color: var(--dh-oxblood);
}

/* ── Hero price anchors (lesson + scarcity) ── */
.dh-pdp-hero__price-anchors {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--dh-line-dark);
  border-bottom: 1px solid var(--dh-line-dark);
  margin-bottom: var(--space-2);
}
.dh-pdp-hero__lesson-anchor {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.dh-pdp-hero__lesson-anchor::before {
  content: '£';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border-radius: 50%;
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 12px;
}
.dh-pdp-hero__lesson-anchor-label {
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--dh-cream);
  opacity: 0.85;
}
.dh-pdp-hero__scarcity {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.dh-pdp-hero__scarcity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dh-oxblood);
  animation: dh-scarcity-pulse 2s ease-in-out infinite;
}
@keyframes dh-scarcity-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .dh-pdp-hero__scarcity-dot { animation: none; }
}
.dh-pdp-hero__scarcity-text {
  font-family: var(--dh-font-body);
  font-size: 12px;
  color: var(--dh-cream);
  opacity: 0.75;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Bundle ladder — per-tier band-dot visual anchors ── */
.dh-pdp-hero__bundle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
}
.dh-pdp-hero__bundle-visual {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.dh-pdp-hero__band-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(242, 244, 248, 0.25);
}
.dh-pdp-hero__band-dot--black { background: #14141c; }
.dh-pdp-hero__band-dot--cream { background: #f2f4f8; }
.dh-pdp-hero__band-dot--blue { background: #2B5797; }

.dh-pdp-hero__bundle-subtitle {
  font-family: var(--dh-font-body);
  font-size: 12px;
  color: var(--dh-cream);
  opacity: 0.6;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* ── Guarantee panel — full-bleed charcoal restyle ── */
.dh-section--pdp-guarantee {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}
.dh-section--pdp-guarantee .dh-pdp-h2 {
  color: var(--dh-cream);
}
.dh-section--pdp-guarantee .dh-pdp-guarantee__overline {
  color: var(--dh-oxblood);
  text-align: center;
  display: block;
  margin-bottom: var(--space-3);
}
.dh-pdp-guarantee__inner { max-width: 1080px; }
.dh-pdp-guarantee__panel {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
}
.dh-pdp-guarantee__headline {
  text-align: center;
  margin-bottom: var(--space-3);
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
}
.dh-pdp-guarantee__sub {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--dh-cream);
  opacity: 0.8;
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-12) auto;
}
.dh-pdp-guarantee__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  text-align: left;
}
@media (min-width: 768px) {
  .dh-pdp-guarantee__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.dh-pdp-guarantee__block {
  padding: var(--space-6);
  background: var(--dh-charcoal-2);
  border: 1px solid var(--dh-line-dark);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.dh-pdp-guarantee__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--dh-oxblood);
}
.dh-pdp-guarantee__block-title {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--dh-cream);
  margin-bottom: var(--space-3);
}
.dh-pdp-guarantee__block-body {
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dh-cream);
  opacity: 0.8;
}

/* ── Comparison — bigger, bolder card-style table ── */
.dh-section--pdp-comparison {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}
.dh-pdp-comp__headline {
  text-align: center;
  margin-bottom: var(--space-8);
  font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
}
.dh-pdp-comp__table {
  max-width: 1080px;
  border: 1px solid var(--dh-line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--colour-white);
  font-size: 15px;
}
.dh-pdp-comp__table thead th {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 16px;
  background: #f2f4f8;
  color: var(--dh-ink);
  padding: var(--space-4) var(--space-4);
  border-bottom: none;
}
.dh-pdp-comp__th--us {
  background: var(--dh-oxblood) !important;
  color: var(--dh-cream) !important;
  font-size: 18px !important;
  letter-spacing: 0.01em;
}
.dh-pdp-comp__th--feature { background: var(--colour-white) !important; }
.dh-pdp-comp__row-label {
  text-align: left;
  font-family: var(--dh-font-body);
  font-weight: 600;
  color: var(--dh-ink);
  font-size: 14px;
  padding: var(--space-4) !important;
  background: var(--colour-white);
}
.dh-pdp-comp__cell {
  padding: var(--space-4) !important;
  background: var(--colour-white);
}
.dh-pdp-comp__cell--us {
  background: rgba(139, 45, 45, 0.08) !important;
  border-left: 2px solid var(--dh-oxblood);
  border-right: 2px solid var(--dh-oxblood);
}
.dh-pdp-comp__table tbody tr:last-child .dh-pdp-comp__cell--us {
  border-bottom: 2px solid var(--dh-oxblood);
}
.dh-pdp-comp__icon { width: 22px; height: 22px; }

/* ── Reviews section — seed offer card replaces empty state ── */
.dh-section--pdp-reviews { background: var(--dh-cream); padding-top: var(--space-20); padding-bottom: var(--space-20); }
.dh-pdp-reviews__inner { max-width: 720px; text-align: center; }
.dh-pdp-reviews__overline {
  display: block;
  text-align: center;
  color: var(--dh-oxblood);
  margin-bottom: var(--space-3);
}
.dh-pdp-reviews__headline {
  text-align: center;
  margin-bottom: var(--space-3);
}
.dh-pdp-reviews__sub {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--dh-ink);
  opacity: 0.75;
  max-width: 540px;
  margin: 0 auto var(--space-10) auto;
}
.dh-pdp-reviews__seed-card {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  padding: var(--space-8) var(--space-6);
  border-radius: 4px;
  border-left: 4px solid var(--dh-oxblood);
  text-align: left;
}
@media (min-width: 768px) {
  .dh-pdp-reviews__seed-card { padding: var(--space-10) var(--space-8); }
}
.dh-pdp-reviews__seed-pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: var(--space-3);
}
.dh-pdp-reviews__seed-title {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--dh-cream);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 var(--space-3) 0;
}
@media (min-width: 768px) {
  .dh-pdp-reviews__seed-title { font-size: 28px; }
}
.dh-pdp-reviews__seed-body {
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dh-cream);
  opacity: 0.85;
  margin: 0 0 var(--space-4) 0;
}
.dh-pdp-reviews__seed-form {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-3);
}
.dh-pdp-reviews__seed-form input[type="email"] {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: var(--dh-charcoal-2);
  border: 1px solid var(--dh-line-dark);
  border-right: none;
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 14px;
  border-radius: 2px 0 0 2px;
}
.dh-pdp-reviews__seed-form input[type="email"]:focus {
  outline: none;
  border-color: var(--dh-oxblood);
}
.dh-pdp-reviews__seed-form input[type="email"]::placeholder {
  color: var(--dh-cream);
  opacity: 0.4;
}
.dh-pdp-reviews__seed-form button {
  padding: var(--space-3) var(--space-5);
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border: 1px solid var(--dh-oxblood);
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 200ms ease;
}
.dh-pdp-reviews__seed-form button:hover { background: var(--dh-oxblood-2); }
.dh-pdp-reviews__seed-fine {
  font-family: var(--dh-font-body);
  font-size: 11px;
  color: var(--dh-cream);
  opacity: 0.5;
  margin: 0;
}

/* ── Marquee — give more breathing room from header ── */
.dh-section--pdp-marquee {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

/* ── Visual rhythm — reduce padding between charcoal-adjacent sections ── */
.dh-section--pdp-hero + .dh-section--pdp-marquee { margin-top: 0; }
.dh-section--pdp-marquee + .dh-section--bg-cream { padding-top: var(--space-16); }

/* ── Scarcity LOUD variant — ruthless DR ── */
.dh-pdp-hero__scarcity--loud {
  background: rgba(139, 45, 45, 0.15);
  border: 1px solid var(--dh-oxblood);
  padding: var(--space-2) var(--space-3);
  border-radius: 2px;
  margin: var(--space-2) 0;
}
.dh-pdp-hero__scarcity--loud .dh-pdp-hero__scarcity-text {
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--dh-cream);
  opacity: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dh-pdp-hero__scarcity--loud .dh-pdp-hero__scarcity-dot {
  width: 10px;
  height: 10px;
  background: var(--dh-oxblood);
  box-shadow: 0 0 0 4px rgba(139, 45, 45, 0.3);
}

/* ── dh-pdp-trust-badges (new section) ── */
.dh-section--pdp-trust-badges {
  background: var(--dh-cream);
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}
.dh-pdp-trust__inner { max-width: 1080px; }
.dh-pdp-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  text-align: center;
}
@media (min-width: 768px) {
  .dh-pdp-trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
}
.dh-pdp-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.dh-pdp-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  border: 1px solid var(--dh-oxblood);
}
.dh-pdp-trust__label {
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dh-ink);
  line-height: 1.3;
}

/* ── dh-pdp-press-strip (new section, auto-hidden if empty) ── */
.dh-section--pdp-press {
  background: var(--dh-cream);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  border-top: 1px solid var(--dh-line);
  border-bottom: 1px solid var(--dh-line);
}
.dh-pdp-press__inner { text-align: center; }
.dh-pdp-press__label {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dh-oxblood);
  margin-bottom: var(--space-4);
}
.dh-pdp-press__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}
.dh-pdp-press__name {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--dh-ink);
  opacity: 0.7;
  letter-spacing: 0;
  font-style: italic;
}
@media (min-width: 768px) {
  .dh-pdp-press__name { font-size: 26px; }
}

/* ── Hide zombie Loox app sections (collapse 0-height duplicates) ── */
/* The 3 Loox app blocks in product.json — 1 renders a working .loox-widget
   iframe at full height; 2 render empty 0-height shells. The empty ones still
   take vertical space in some browsers and confuse the visual flow.
   Selector targets sections that DON'T contain a .loox-widget (real iframe). */
body.template-product .shopify-section[id*="177888087661395c46"]:not(:has(.loox-widget)),
body.template-product .shopify-section[id*="1778883342c13ee84c"]:not(:has(.loox-widget)),
body.template-product .shopify-section[id*="177888339240205bb6"]:not(:has(.loox-widget)) {
  display: none;
}

/* ── dh-pdp-avatar (new section) — avatar pull-quote strip ── */
.dh-section--pdp-avatar {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}
.dh-pdp-avatar__inner {
  max-width: 960px;
  text-align: center;
}
.dh-pdp-avatar__overline {
  display: block;
  color: var(--dh-oxblood);
  margin-bottom: var(--space-3);
}
.dh-pdp-avatar__headline {
  color: var(--dh-cream);
  text-align: center;
  margin-bottom: var(--space-10);
}
.dh-pdp-avatar__quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  text-align: left;
}
@media (min-width: 768px) {
  .dh-pdp-avatar__quotes { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.dh-pdp-avatar__quote {
  margin: 0;
  padding: var(--space-6);
  background: var(--dh-charcoal-2);
  border-left: 3px solid var(--dh-oxblood);
  border-radius: 2px;
}
.dh-pdp-avatar__quote p {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--dh-cream);
  margin: 0;
  opacity: 0.95;
}
.dh-pdp-avatar__close {
  font-family: var(--dh-font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--dh-cream);
  margin: 0 0 var(--space-6) 0;
  letter-spacing: -0.005em;
}
@media (min-width: 768px) {
  .dh-pdp-avatar__close { font-size: 22px; }
}
.dh-pdp-avatar__cta {
  display: inline-block;
  padding: var(--space-4) var(--space-8);
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 200ms ease;
}
.dh-pdp-avatar__cta:hover {
  background: var(--dh-oxblood-2);
  color: var(--dh-cream);
}

/* ── Hero pre-pill row (BESTSELLER + secondary ghost) ── */
.dh-pdp-hero__pre-pill-row {
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.dh-pdp-hero__pre-pill {
  display: inline-block;
  padding: 4px 10px;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.dh-pdp-hero__pre-pill--ghost {
  background: transparent;
  color: var(--dh-cream);
  border: 1px solid var(--dh-line-dark);
  opacity: 0.85;
}

/* ── Hero gallery — bigger thumbs + new all-views strip below ── */
.dh-pdp-hero__gallery {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: var(--space-3);
  grid-template-areas:
    "thumbs main"
    "all-views all-views";
  grid-template-rows: auto auto;
}
@media (max-width: 640px) {
  .dh-pdp-hero__gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "main"
      "thumbs"
      "all-views";
  }
}

.dh-pdp-hero__thumbs { grid-area: thumbs; }
.dh-pdp-hero__main { grid-area: main; }
.dh-pdp-hero__all-views { grid-area: all-views; }

/* 2026-05-18 user request: remove "SEE EVERY ANGLE" all-views strip site-wide.
   The thumbnail rail above the main image gives customers the navigation
   they need; the all-views strip duplicates that visual function. */
.dh-pdp-hero__all-views { display: none !important; }

/* Mobile hero gallery — 2026-05-18 fix: smaller main image, visible thumb rail */
@media (max-width: 767px) {
  .dh-pdp-hero__gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .dh-pdp-hero__main {
    aspect-ratio: 4 / 3;
    max-height: 50vh;
    order: 1;
  }
  .dh-pdp-hero__main img {
    object-fit: contain;
    background: #fff;
  }
  .dh-pdp-hero__thumbs {
    order: 2;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .dh-pdp-hero__thumbs::-webkit-scrollbar { display: none; }
  .dh-pdp-hero__thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    padding: 0;
  }
  .dh-pdp-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.dh-pdp-hero__thumb {
  width: 96px;
  height: 96px;
}
.dh-pdp-hero__thumb img {
  width: 96px;
  height: 96px;
}

.dh-pdp-hero__all-views {
  margin-top: var(--space-4);
}
.dh-pdp-hero__all-views-label {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dh-oxblood);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.dh-pdp-hero__all-views-label::before,
.dh-pdp-hero__all-views-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dh-line-dark);
}
.dh-pdp-hero__all-views-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.dh-pdp-hero__all-views-tile {
  padding: 0;
  background: var(--dh-charcoal-2);
  border: 2px solid var(--dh-line-dark);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  transition: border-color 200ms ease, transform 250ms ease, box-shadow 250ms ease;
  border-radius: 2px;
}
.dh-pdp-hero__all-views-tile:hover {
  border-color: var(--dh-oxblood);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(139, 45, 45, 0.25);
}

/* ============================================================
   Final polish A + mobile polish B — 2026-05-17 (overnight close)
   Colour names under swatches, animated CTA arrow, mid-page
   sticky scarcity, mobile-specific tweaks.
   ============================================================ */

/* ── Colour swatches: 2026-05-18 fix — REMOVED ::after labels that
   overlapped at 36/44px swatch width with multi-word variant names
   ("Royal Blue", "Cream White"). The "Colour: [Selected]" label above
   the swatch row (dh-pdp-hero__variant-label) communicates the active
   selection cleanly. Multi-word per-swatch labels caused the visible
   "BLACK ROYAL BLU CREAM WHITE" run-on bug. ── */
.dh-pdp-hero__swatches { gap: var(--space-3); padding-bottom: var(--space-2); }
.dh-pdp-hero__swatch { position: relative; }
.dh-pdp-hero__swatch::after { content: none; }

/* ── Animated CTA arrow ── */
.dh-section--bg-charcoal .dh-pdp-hero__cta {
  position: relative;
  overflow: hidden;
}
.dh-section--bg-charcoal .dh-pdp-hero__cta::after {
  content: '→';
  display: inline-block;
  margin-left: var(--space-3);
  font-size: 18px;
  transition: transform 250ms ease;
}
.dh-section--bg-charcoal .dh-pdp-hero__cta:hover::after {
  transform: translateX(4px);
}

/* ── Mid-page floating scarcity bar ── */
/* Shows below the hero (after the sticky-cart sentinel triggers).
   Non-intrusive slim band at top of viewport. */
.dh-mid-scarcity {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  transform: translateY(-100%);
  transition: transform 300ms ease;
  pointer-events: none;
}
.dh-mid-scarcity.is-visible {
  transform: translateY(0);
}
.dh-mid-scarcity__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dh-cream);
  margin-right: var(--space-2);
  vertical-align: middle;
  animation: dh-mid-pulse 1.6s ease-in-out infinite;
}
@keyframes dh-mid-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
  .dh-mid-scarcity__dot { animation: none; }
}

/* ============================================================
   MOBILE-specific polish (≤ 640px) — 2026-05-17 overnight
   ============================================================ */
@media (max-width: 640px) {
  /* Hero gallery on mobile: main full-width, thumbs horizontal scroll, all-views 2x2 */
  .dh-pdp-hero__gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "main"
      "thumbs"
      "all-views";
  }
  .dh-pdp-hero__thumbs {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-2);
    padding-bottom: var(--space-2);
  }
  .dh-pdp-hero__thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .dh-pdp-hero__thumb img { width: 64px; height: 64px; }
  .dh-pdp-hero__all-views-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }
  .dh-pdp-hero__all-views-label {
    font-size: 10px;
  }

  /* Hero pre-pills wrap nicely */
  .dh-pdp-hero__pre-pill-row {
    flex-wrap: wrap;
  }
  .dh-pdp-hero__pre-pill { font-size: 9px; padding: 3px 8px; }

  /* Hero title less aggressive on small screens */
  .dh-pdp-hero__title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.08;
  }

  /* Hero CTA bigger on mobile (primary tap target) */
  .dh-section--bg-charcoal .dh-pdp-hero__cta {
    font-size: 13px;
    padding: var(--space-5) var(--space-4);
    flex-wrap: wrap;
    gap: var(--space-2);
  }
  .dh-section--bg-charcoal .dh-pdp-hero__cta-price {
    font-size: 13px;
  }

  /* Bundle ladder cards tighter on mobile */
  .dh-pdp-hero__bundle {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-2);
    padding: var(--space-3);
  }
  .dh-pdp-hero__bundle-visual { gap: 2px; }
  .dh-pdp-hero__band-dot { width: 11px; height: 11px; }
  .dh-pdp-hero__bundle-title { font-size: 14px; }
  .dh-pdp-hero__bundle-subtitle { font-size: 10px; }
  .dh-pdp-hero__bundle-price { font-size: 18px; }
  .dh-pdp-hero__bundle-compare { font-size: 11px; }
  .dh-pdp-hero__bundle-save { font-size: 9px; letter-spacing: 0.04em; }

  /* Scarcity element on mobile */
  .dh-pdp-hero__scarcity--loud .dh-pdp-hero__scarcity-text {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  /* Section padding tighter on mobile */
  .dh-section--pdp { padding-top: var(--space-12); padding-bottom: var(--space-12); }
  .dh-section--pdp-trust-badges { padding-top: var(--space-8); padding-bottom: var(--space-8); }

  /* Why-pick cards stack 1-per-row */
  .dh-pdp-why-pick__grid { gap: var(--space-4); }
  .dh-pdp-why-pick__card { padding: var(--space-4); }
  .dh-pdp-why-pick__icon { width: 48px; height: 48px; }
  .dh-pdp-why-pick__card-title { font-size: 18px; }
  .dh-pdp-why-pick__card-body { font-size: 13px; }

  /* Avatar section mobile */
  .dh-pdp-avatar__quote { padding: var(--space-4); }
  .dh-pdp-avatar__quote p { font-size: 15px; }
  .dh-pdp-avatar__close { font-size: 16px; }

  /* Trust badges row mobile — 2x2 with tighter icons */
  .dh-pdp-trust__icon { width: 44px; height: 44px; }
  .dh-pdp-trust__icon svg { width: 22px; height: 22px; }
  .dh-pdp-trust__label { font-size: 12px; }

  /* Guarantee panel mobile — tighter blocks */
  .dh-pdp-guarantee__block { padding: var(--space-4); }
  .dh-pdp-guarantee__block-title { font-size: 17px; }
  .dh-pdp-guarantee__block-body { font-size: 13px; }
  .dh-pdp-guarantee__headline { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .dh-pdp-guarantee__sub { font-size: 14px; }

  /* Comparison table mobile — tighter cells, smaller text */
  .dh-pdp-comp__table { font-size: 12px; }
  .dh-pdp-comp__row-label { font-size: 12px; padding: var(--space-3) var(--space-2) !important; }
  .dh-pdp-comp__cell { padding: var(--space-3) var(--space-2) !important; }
  .dh-pdp-comp__th--us { font-size: 13px !important; }

  /* Footer on mobile — collapse columns, tighter padding */
  .dh-footer__top { padding: var(--space-8) 0; }
  .dh-footer__inner { gap: var(--space-6); }
  .dh-footer__brand-title { font-size: 20px; }

  /* Header on mobile — slimmer wordmark */
  .dh-header__wordmark { font-size: 18px; letter-spacing: 0.04em; }
  .dh-header__inner { gap: var(--space-3); padding: 0 var(--space-3); }
  .dh-header__cart { padding: var(--space-2); font-size: 11px; }
  .dh-header__announce { font-size: 10px; padding: var(--space-2) var(--space-3); }

  /* Sticky cart mobile — tighter */
  .dh-pdp-sticky-cart__inner {
    grid-template-columns: 40px 1fr auto;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
  }
  .dh-pdp-sticky-cart__thumb { width: 40px; height: 40px; }
  .dh-pdp-sticky-cart__name { font-size: 13px; }
  .dh-pdp-sticky-cart__meta { font-size: 10px; }
  .dh-pdp-sticky-cart__cta { padding: var(--space-3) var(--space-4); font-size: 11px; }

  /* Stats panel mobile */
  .dh-pdp-stats__num { font-size: 48px; }

  /* Marquee mobile — slightly smaller */
  .dh-pdp-marquee__phrase { font-size: 16px; }
}

/* ============================================================
   Tablet polish (641px – 1024px) — narrow desktop fixes
   ============================================================ */
@media (min-width: 641px) and (max-width: 1024px) {
  .dh-pdp-hero__inner {
    /* 2026-05-18: gallery fixed at 320px for tablet so right column has room for offer stack */
    grid-template-columns: 320px minmax(0, 1fr);
    gap: var(--space-6);
  }
  .dh-pdp-trust__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Cross-page polish — 2026-05-17 (all-pages audit)
   Global h1/h2 typography bumped to Manrope 800. Cart, policy,
   page, FAQ-page templates all inherit. Brand-consistent CTAs
   on the cart empty state. FAQ accordion items restyled.
   ============================================================ */

/* ── Global heading typography (override the brief-era thin Manrope 500) ── */
h1 {
  font-family: var(--dh-font-display);
  font-weight: 800 !important;
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: var(--dh-green);
}
h2 {
  font-family: var(--dh-font-display);
  font-weight: 700 !important;
  font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem) !important;
  letter-spacing: -0.015em !important;
  line-height: 1.1 !important;
  color: var(--dh-green);
}
h3 {
  font-family: var(--dh-font-display);
  font-weight: 700 !important;
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.625rem) !important;
  letter-spacing: -0.01em !important;
}

/* ── Cart page polish ── */
.main-cart {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background: var(--dh-cream);
  min-height: 60vh;
}
.main-cart__title {
  text-align: center;
  color: var(--dh-green);
  font-family: var(--dh-font-display);
  font-weight: 800;
  margin-bottom: var(--space-8);
}
.main-cart .btn--primary {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border-color: var(--dh-oxblood);
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: 2px;
}
.main-cart .btn--primary:hover {
  background: var(--dh-oxblood-2);
  border-color: var(--dh-oxblood-2);
}
.main-cart .btn--secondary {
  background: transparent;
  color: var(--dh-green);
  border: 2px solid var(--dh-green);
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: 2px;
}
.main-cart .btn--secondary:hover {
  background: var(--dh-green);
  color: var(--dh-cream);
}

/* ── Page / policy template polish ── */
.main-page {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background: var(--dh-cream);
  min-height: 60vh;
}
.main-page .container {
  max-width: var(--container-text);
}
.main-page__title {
  text-align: center;
  color: var(--dh-green);
  font-family: var(--dh-font-display);
  font-weight: 800;
  margin-bottom: var(--space-10);
}
.main-page .rte {
  font-family: var(--dh-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dh-ink);
}
.main-page .rte h2 {
  font-family: var(--dh-font-display);
  font-weight: 700;
  color: var(--dh-green);
  margin: var(--space-10) 0 var(--space-4);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.main-page .rte h3 {
  font-family: var(--dh-font-display);
  font-weight: 600;
  color: var(--dh-green);
  margin: var(--space-8) 0 var(--space-3);
  font-size: 20px;
}
.main-page .rte p {
  margin: 0 0 var(--space-4);
}
.main-page .rte ul, .main-page .rte ol {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}
.main-page .rte li { margin-bottom: var(--space-2); }
.main-page .rte a {
  color: var(--dh-oxblood);
  text-decoration: underline;
  text-decoration-color: rgba(139, 45, 45, 0.4);
  text-underline-offset: 3px;
}
.main-page .rte a:hover {
  color: var(--dh-oxblood-2);
  text-decoration-color: var(--dh-oxblood);
}
.main-page .rte blockquote {
  border-left: 3px solid var(--dh-oxblood);
  padding: var(--space-3) var(--space-5);
  margin: var(--space-6) 0;
  background: var(--colour-card);
  font-style: italic;
}

/* ── Policy pages — Shopify renders these via .rte too on policy templates ── */
.shopify-policy__container {
  max-width: var(--container-text) !important;
  padding: var(--space-16) var(--space-6) !important;
  background: var(--dh-cream);
}
.shopify-policy__title h1 {
  font-family: var(--dh-font-display) !important;
  font-weight: 800 !important;
  color: var(--dh-green) !important;
  text-align: center !important;
}

/* ── FAQ page accordion restyle (page.faq custom template) ── */
.main-page details,
.main-page .faq-item {
  border-bottom: 1px solid var(--dh-line);
  margin-bottom: 0;
}
.main-page details summary,
.main-page .faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: var(--space-4) 0;
  list-style: none;
  font-family: var(--dh-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--dh-ink);
  position: relative;
}
.main-page details summary::-webkit-details-marker { display: none; }
.main-page details summary::after {
  content: '+';
  color: var(--dh-oxblood);
  font-size: 22px;
  font-weight: 400;
  transition: transform 200ms ease;
}
.main-page details[open] summary::after {
  transform: rotate(45deg);
}
.main-page details > div,
.main-page details > p {
  padding: 0 0 var(--space-4) 0;
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dh-ink);
  opacity: 0.85;
}

/* ── 404 page polish ── */
.template-404 {
  background: var(--dh-cream);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-6);
}

/* ── Cart line items polish ── */
.main-cart [name="checkout"] {
  width: 100%;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4);
  border: none;
  border-radius: 2px;
  font-size: 14px;
  cursor: pointer;
}
.main-cart [name="checkout"]:hover {
  background: var(--dh-oxblood-2);
}

/* ============================================================
   New sections: skeptic confession + mid-page CTA + header countdown
   ============================================================ */

/* ── dh-pdp-skeptic-confession — full-bleed reframe between hero + marquee ── */
.dh-section--pdp-skeptic {
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  border-top: 1px solid var(--dh-line-dark);
  border-bottom: 1px solid var(--dh-line-dark);
}
.dh-pdp-skeptic__inner {
  max-width: 880px;
  text-align: center;
}
.dh-pdp-skeptic__pre {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dh-oxblood);
  margin: 0 0 var(--space-3) 0;
}
.dh-pdp-skeptic__statement {
  font-family: var(--dh-font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  line-height: 1.25;
  color: var(--dh-cream);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.005em;
}
.dh-pdp-skeptic__close {
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dh-oxblood);
  margin: 0;
  text-transform: uppercase;
}

/* ── dh-pdp-mid-cta — full-bleed oxblood mid-page anchor CTA ── */
.dh-section--pdp-mid-cta {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dh-section--pdp-mid-cta::before,
.dh-section--pdp-mid-cta::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: repeating-linear-gradient(45deg,
    rgba(242, 244, 248, 0.03) 0,
    rgba(242, 244, 248, 0.03) 8px,
    transparent 8px,
    transparent 16px);
  pointer-events: none;
}
.dh-section--pdp-mid-cta::before { left: 0; }
.dh-section--pdp-mid-cta::after { right: 0; transform: scaleX(-1); }
.dh-pdp-mid-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.dh-pdp-mid-cta__pre-pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--dh-cream);
  color: var(--dh-oxblood);
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: var(--space-4);
}
.dh-pdp-mid-cta__headline {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dh-cream);
  margin: 0 0 var(--space-4) 0;
}
.dh-pdp-mid-cta__sub {
  font-family: var(--dh-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dh-cream);
  opacity: 0.9;
  margin: 0 0 var(--space-8) 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.dh-pdp-mid-cta__cta {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-10);
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 200ms ease, transform 200ms ease;
  margin-bottom: var(--space-4);
  font-size: 15px;
}
.dh-pdp-mid-cta__cta:hover {
  background: #000;
  color: var(--dh-cream);
  transform: translateY(-2px);
}
.dh-pdp-mid-cta__cta::after {
  content: '→';
  margin-left: var(--space-2);
  font-size: 18px;
  transition: transform 250ms ease;
}
.dh-pdp-mid-cta__cta:hover::after { transform: translateX(4px); }
.dh-pdp-mid-cta__cta-price {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.dh-pdp-mid-cta__guarantee {
  font-family: var(--dh-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dh-cream);
  opacity: 0.85;
  margin: 0;
}

/* ── Header countdown bar — HIDDEN 2026-05-18 ── */
/* Stacked too many strips with the rotating announce bar. The
   announce bar already carries "Free UK Shipping" + "30-Day Feel
   Guarantee" + "Designed in the UK" which are stronger trust
   signals than a launch-pricing reminder. To re-enable, delete
   the display:none line below. */
.dh-header__countdown {
  display: none !important;
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  padding: var(--space-2) var(--space-4);
  text-align: center;
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(139, 45, 45, 0.4);
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}
.dh-header__countdown-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dh-oxblood);
  animation: dh-mid-pulse 1.6s ease-in-out infinite;
}

/* ============================================================
   Cart drawer polish (2026-05-17) — brand-aligned slide-in
   When user clicks ATC from anywhere, drawer slides in with
   matching charcoal-cream-oxblood palette + Manrope typography.
   ============================================================ */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 15, 14, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, visibility 250ms ease;
  z-index: 90;
}
.drawer-overlay[aria-hidden="false"] { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--dh-cream);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.2);
}
.drawer[aria-hidden="false"] { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  border-bottom: 2px solid var(--dh-oxblood);
}
.drawer__title {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dh-cream);
}
.drawer__close {
  background: transparent;
  border: 1px solid var(--dh-line-dark);
  color: var(--dh-cream);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 4px 12px;
  border-radius: 2px;
  transition: border-color 200ms ease;
}
.drawer__close:hover { border-color: var(--dh-oxblood); }

.drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5) var(--space-6);
}
.drawer__items {
  font-family: var(--dh-font-body);
  color: var(--dh-ink);
}
.drawer__items:empty::after {
  content: 'Your bag is empty.';
  display: block;
  text-align: center;
  font-style: italic;
  color: var(--dh-ink);
  opacity: 0.6;
  padding: var(--space-12) 0;
}

.drawer__upsell {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  border-left: 3px solid var(--dh-oxblood);
  border-radius: 2px;
}
.drawer__upsell-title {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: var(--space-2);
  color: var(--dh-cream);
}
.drawer__upsell-body {
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--dh-cream);
  opacity: 0.85;
  margin-bottom: var(--space-3);
}
.drawer__upsell-btn {
  width: 100%;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border: 1px solid var(--dh-oxblood);
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-3);
  font-size: 12px;
  border-radius: 2px;
  cursor: pointer;
}
.drawer__upsell-btn:hover { background: var(--dh-oxblood-2); border-color: var(--dh-oxblood-2); }

.drawer__footer {
  padding: var(--space-5) var(--space-6);
  background: var(--colour-card);
  border-top: 1px solid var(--dh-line);
}
.drawer__totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-2);
}
.drawer__totals-label {
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dh-ink);
  opacity: 0.7;
}
.drawer__totals-value {
  font-family: var(--dh-font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--dh-green);
}
.drawer__shipping {
  font-family: var(--dh-font-body);
  font-size: 12px;
  color: var(--dh-ink);
  opacity: 0.6;
  margin: 0 0 var(--space-3) 0;
}
.drawer__checkout {
  width: 100%;
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  border: none;
  font-family: var(--dh-font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-4);
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 200ms ease;
}
.drawer__checkout:hover { background: var(--dh-oxblood-2); }

/* ── Drawer line items (rendered by theme.js) ── */
.drawer__items > * {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--dh-line);
}
.drawer__items img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}

/* Mobile drawer adjustments */
@media (max-width: 640px) {
  .drawer { max-width: 100%; }
}

/* ============================================================
   LIGHTEN PASS — 2026-05-17 (founder feedback "too dark")
   Flip Hero + video-grid + before-after + stats + marquee +
   sticky-cart back to cream bg. Keep skeptic confession +
   mid-cta as the only dark/colour-bg punch moments.
   ============================================================ */

/* ── Hero on cream bg (was charcoal) — override the dark-section
   sub-element rules so cream-on-cream stays readable ── */
.dh-section--pdp-hero.dh-section--bg-cream {
  background: var(--dh-cream);
  color: var(--dh-ink);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__title { color: var(--dh-green); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__strapline { color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__testifier-caption { color: var(--dh-brass); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__overline { color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__main,
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__thumb { background: var(--colour-card); border-color: var(--dh-line); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__main::after { border-color: var(--dh-line); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__price { color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__compare-at { color: var(--dh-ink); opacity: 0.5; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__save-pill { background: var(--dh-oxblood); color: var(--dh-cream); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__benefits li { color: var(--dh-ink); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__check { background: var(--dh-success); color: var(--dh-cream); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__variant-label { color: var(--dh-ink); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__swatch {
  background: var(--dh-cream);
  border-color: var(--dh-line);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__swatch.is-active { border-color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__swatch::after {
  color: var(--dh-ink); opacity: 0.6;
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__swatch.is-active::after,
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__swatch:hover::after { color: var(--dh-oxblood); opacity: 1; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle {
  background: var(--colour-card);
  border-color: var(--dh-line);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle:hover { border-color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle.is-active {
  border-color: var(--dh-oxblood);
  background: rgba(194, 94, 26, 0.08);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle-title { color: var(--dh-green); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle-subtitle { color: var(--dh-ink); opacity: 0.65; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle-price { color: var(--dh-green); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle-compare { color: var(--dh-ink); opacity: 0.5; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle-save { color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__bundle-tag { background: var(--dh-oxblood); color: var(--dh-cream); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__band-dot {
  border-color: rgba(26, 26, 26, 0.2);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__addon {
  background: var(--colour-card);
  border-color: var(--dh-line);
  color: var(--dh-ink);
  opacity: 0.55;
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__cta {
  background: var(--dh-oxblood);
  color: var(--dh-cream);
  font-family: var(--dh-font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-6);
  border-radius: 2px;
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__cta:hover { background: var(--dh-oxblood-2); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__cta::after { color: var(--dh-cream); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__cta-price { font-size: 14px; opacity: 1; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__secondary-cta { color: var(--dh-ink); opacity: 0.7; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__secondary-cta:hover { color: var(--dh-oxblood); opacity: 1; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__price-anchors {
  border-color: var(--dh-line);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__lesson-anchor-label { color: var(--dh-ink); opacity: 0.85; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__scarcity--loud {
  background: rgba(194, 94, 26, 0.12);
  border-color: var(--dh-oxblood);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__scarcity--loud .dh-pdp-hero__scarcity-text {
  color: var(--dh-ink);
  opacity: 1;
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__trust-row { border-color: var(--dh-line); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__trust-row li { color: var(--dh-ink); opacity: 0.85; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__testimonial {
  background: var(--colour-card);
  border-left-color: var(--dh-oxblood);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__testimonial-name { color: var(--dh-ink); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__testimonial-quote { color: var(--dh-ink); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__testimonial-placeholder-note { color: var(--dh-ink); opacity: 0.5; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__mini-faq { border-color: var(--dh-line); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__faq-item { border-color: var(--dh-line); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__faq-q { color: var(--dh-ink); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__faq-a { color: var(--dh-ink); opacity: 0.85; }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__faq-icon { color: var(--dh-oxblood); }
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__pre-pill--ghost {
  background: transparent;
  color: var(--dh-ink);
  border-color: var(--dh-line);
  opacity: 0.7;
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__all-views-tile {
  background: var(--colour-card);
  border-color: var(--dh-line);
}
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__all-views-label::before,
.dh-section--pdp-hero.dh-section--bg-cream .dh-pdp-hero__all-views-label::after {
  background: var(--dh-line);
}

/* ── Marquee on cream ── */
.dh-section--pdp-marquee {
  background: var(--dh-cream) !important;
  border-top: 1px solid var(--dh-line) !important;
  border-bottom: 1px solid var(--dh-line) !important;
}
.dh-pdp-marquee__phrase { color: var(--dh-green) !important; }
.dh-pdp-marquee__sep { color: var(--dh-oxblood) !important; opacity: 1 !important; }

/* ── Video grid on cream ── */
.dh-section--pdp-video-grid {
  background: var(--dh-cream) !important;
  color: var(--dh-ink) !important;
}
.dh-section--pdp-video-grid .dh-pdp-h2 { color: var(--dh-green) !important; }
.dh-pdp-video-grid__media { background: var(--colour-card) !important; }

/* ── Before/after on cream ── */
.dh-section--pdp-before-after {
  background: var(--dh-cream) !important;
  color: var(--dh-ink) !important;
}
.dh-section--pdp-before-after .dh-pdp-h2 { color: var(--dh-green) !important; }
.dh-pdp-ba__sub { color: var(--dh-ink) !important; opacity: 0.85 !important; }
.dh-pdp-ba__slider { background: var(--colour-card) !important; }
.dh-pdp-ba__handle-grip {
  background: var(--dh-cream) !important;
  border-color: var(--dh-oxblood) !important;
  color: var(--dh-oxblood) !important;
}
.dh-pdp-ba__label { background: rgba(242, 244, 248, 0.95) !important; color: var(--dh-ink) !important; }

/* ── Stats on cream ── */
.dh-section--pdp-stats {
  background: var(--dh-cream) !important;
  color: var(--dh-ink) !important;
}
.dh-section--pdp-stats .dh-pdp-h2 { color: var(--dh-green) !important; }
.dh-pdp-stats__num { color: var(--dh-oxblood) !important; }
.dh-pdp-stats__label { color: var(--dh-green) !important; }
.dh-pdp-stats__stat { border-color: var(--dh-line) !important; }

/* ── Sticky cart on cream ── */
.dh-pdp-sticky-cart {
  background: var(--dh-cream) !important;
  border-top: 2px solid var(--dh-oxblood) !important;
  color: var(--dh-ink) !important;
  box-shadow: 0 -4px 16px rgba(31, 71, 51, 0.1) !important;
}
.dh-pdp-sticky-cart__name { color: var(--dh-green) !important; }
.dh-pdp-sticky-cart__meta { color: var(--dh-ink) !important; opacity: 0.85 !important; }
.dh-pdp-sticky-cart__price { color: var(--dh-oxblood) !important; }
.dh-pdp-sticky-cart__cta { background: var(--dh-oxblood) !important; color: var(--dh-cream) !important; }
.dh-pdp-sticky-cart__cta:hover { background: var(--dh-oxblood-2) !important; color: var(--dh-cream) !important; }
.dh-pdp-sticky-cart__thumb { background: var(--colour-card) !important; }

/* ── Keep skeptic confession dark — it's the punch moment ── */
/* (No override needed — already dark via .dh-section--pdp-skeptic) */

/* ── Keep mid-cta rust — it's the second punch moment ── */
/* (No override needed — already rust via .dh-section--pdp-mid-cta) */

/* ── Hero pre-pill ghost on cream ── */
.dh-pdp-hero__pre-pill--ghost {
  background: transparent;
  color: var(--dh-ink);
  border: 1px solid var(--dh-line);
  opacity: 0.7;
}

/* ============================================================
   dh-pdp-whats-in-box (new section, customer review pass)
   ============================================================ */
.dh-section--pdp-wib {
  background: var(--dh-cream);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.dh-pdp-wib__inner {
  max-width: 1080px;
  text-align: center;
}
.dh-pdp-wib__overline {
  color: var(--dh-oxblood);
  display: block;
  margin-bottom: var(--space-3);
}
.dh-pdp-wib__headline {
  text-align: center;
  margin-bottom: var(--space-10);
}
.dh-pdp-wib__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .dh-pdp-wib__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}
.dh-pdp-wib__item {
  background: var(--colour-card);
  border: 1px solid var(--dh-line);
  border-top: 3px solid var(--dh-oxblood);
  padding: var(--space-5) var(--space-4);
  text-align: left;
  border-radius: 2px;
}
.dh-pdp-wib__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dh-green);
  color: var(--dh-cream);
  border-radius: 50%;
  margin-bottom: var(--space-3);
}
.dh-pdp-wib__label {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--dh-green);
  margin-bottom: var(--space-2);
}
.dh-pdp-wib__body {
  font-family: var(--dh-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--dh-ink);
  opacity: 0.85;
  margin: 0;
}
@media (max-width: 640px) {
  .dh-pdp-wib__grid { gap: var(--space-3); }
  .dh-pdp-wib__item { padding: var(--space-4); }
  .dh-pdp-wib__icon { width: 40px; height: 40px; }
  .dh-pdp-wib__label { font-size: 15px; }
  .dh-pdp-wib__body { font-size: 12px; }
}

/* ============================================================
   Cart drawer — free shipping progress bar styles
   ============================================================ */
.drawer__shipping-bar {
  padding: var(--space-4) var(--space-6);
  background: var(--colour-card);
  border-bottom: 1px solid var(--dh-line);
}
.drawer__shipping-bar-text {
  font-family: var(--dh-font-body);
  font-size: 13px;
  color: var(--dh-ink);
  margin-bottom: var(--space-2);
  text-align: center;
}
.drawer__shipping-bar-text strong {
  color: var(--dh-oxblood);
  font-weight: 700;
}
.drawer__shipping-bar.is-complete .drawer__shipping-bar-text strong {
  color: var(--dh-green);
}
.drawer__shipping-bar-track {
  width: 100%;
  height: 6px;
  background: var(--dh-line);
  border-radius: 3px;
  overflow: hidden;
}
.drawer__shipping-bar-fill {
  height: 100%;
  background: var(--dh-oxblood);
  transition: width 350ms ease, background 350ms ease;
}
.drawer__shipping-bar-fill.is-complete {
  background: var(--dh-success);
}

/* ============================================================
   Hero pay-strip (express checkout placeholder)
   ============================================================ */
.dh-pdp-hero__pay-strip {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px dashed var(--dh-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--dh-font-body);
  font-size: 11px;
  color: var(--dh-ink);
  opacity: 0.65;
}
.dh-section--bg-charcoal .dh-pdp-hero__pay-strip {
  border-top-color: var(--dh-line-dark);
  color: var(--dh-cream);
}
.dh-section--bg-cream .dh-pdp-hero__pay-strip {
  border-top-color: var(--dh-line);
  color: var(--dh-ink);
}
.dh-pdp-hero__pay-label {
  font-weight: 600;
  letter-spacing: 0.04em;
}
.dh-pdp-hero__pay-method {
  font-weight: 500;
  letter-spacing: 0;
}
.dh-pdp-hero__pay-sep { opacity: 0.4; }

/* ============================================================
   dh-pdp-founder-note (new section, customer-flow review)
   ============================================================ */
.dh-section--pdp-founder {
  background: var(--dh-cream);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.dh-pdp-founder__inner {
  max-width: 720px;
  text-align: center;
}
.dh-pdp-founder__overline {
  color: var(--dh-oxblood);
  display: block;
  margin-bottom: var(--space-3);
}
.dh-pdp-founder__headline {
  text-align: center;
  margin-bottom: var(--space-8);
}
.dh-pdp-founder__prose {
  font-family: var(--dh-font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dh-ink);
  text-align: left;
}
.dh-pdp-founder__prose p {
  margin: 0 0 var(--space-4);
}
.dh-pdp-founder__sign {
  font-family: var(--dh-font-italic);
  font-style: italic;
  color: var(--dh-oxblood);
  text-align: center;
  margin-top: var(--space-6) !important;
  font-size: 15px;
}
.dh-pdp-hero__all-views-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hide all-views strip when empty (no images match the filter) */
.dh-pdp-hero__all-views:not(:has(.dh-pdp-hero__all-views-tile)) {
  display: none;
}

/* ── dh-pdp-why-pick (new section) — 3-col density block ── */
.dh-section--pdp-why-pick {
  background: var(--dh-cream);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.dh-pdp-why-pick__inner { max-width: 1080px; text-align: center; }
.dh-pdp-why-pick__overline {
  color: var(--dh-oxblood);
  display: block;
  margin-bottom: var(--space-3);
}
.dh-pdp-why-pick__headline {
  text-align: center;
  margin-bottom: var(--space-10);
}
.dh-pdp-why-pick__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  text-align: left;
}
@media (min-width: 768px) {
  .dh-pdp-why-pick__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
}
.dh-pdp-why-pick__card {
  background: var(--colour-card);
  padding: var(--space-6);
  border: 1px solid var(--dh-line);
  border-top: 3px solid var(--dh-oxblood);
  border-radius: 2px;
}
.dh-pdp-why-pick__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dh-charcoal);
  color: var(--dh-cream);
  margin-bottom: var(--space-4);
}
.dh-pdp-why-pick__card-title {
  font-family: var(--dh-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--dh-green);
  margin: 0 0 var(--space-3) 0;
  letter-spacing: -0.01em;
}
.dh-pdp-why-pick__card-body {
  font-family: var(--dh-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dh-ink);
  opacity: 0.85;
  margin: 0;
}

/* ── Stronger sticky cart — add bundle indicator + variant swatch ── */
.dh-pdp-sticky-cart__inner {
  grid-template-columns: 48px 1fr auto;
}
.dh-pdp-sticky-cart__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dh-pdp-sticky-cart__meta {
  font-family: var(--dh-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dh-pdp-sticky-cart__variant {
  color: var(--dh-cream);
  opacity: 0.8;
}
.dh-pdp-sticky-cart__cta {
  font-family: var(--dh-font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
}

/* ============================================================
   HERO LAYOUT v3 — 2026-05-18 (overrides ALL prior rules above)
   Desktop:  [ gallery | details ]
             [ left-conversion | details ]
   Mobile:   [ gallery | mobile-quickbuy ]
             [ details (full width) ]
   ============================================================ */

/* Reset and re-establish the hero grid using areas so left-conversion
   sits under the gallery and mobile-quickbuy sits next to the gallery. */
.dh-pdp-hero__inner {
  display: grid !important;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  grid-template-areas:
    "gallery quickbuy"
    "details details";
  padding: 12px;
}

.dh-pdp-hero__gallery { grid-area: gallery; }
.dh-pdp-hero__mobile-quickbuy { grid-area: quickbuy; }
.dh-pdp-hero__left-conversion { display: none; } /* mobile: hide left-conv */
.dh-pdp-hero__details { grid-area: details; }

@media (min-width: 768px) {
  .dh-pdp-hero__inner {
    grid-template-columns: 360px minmax(0, 1fr) !important;
    grid-template-areas:
      "gallery details"
      "left-conversion details" !important;
    gap: var(--space-10) !important;
    padding: 0 var(--space-8) !important;
    align-items: start;
  }
  .dh-pdp-hero__mobile-quickbuy { display: none !important; }
  .dh-pdp-hero__left-conversion { display: flex !important; grid-area: left-conversion; }
}
@media (min-width: 1024px) {
  .dh-pdp-hero__inner {
    grid-template-columns: 400px minmax(0, 1fr) !important;
    gap: var(--space-12) !important;
  }
}
@media (min-width: 641px) and (max-width: 1023px) {
  .dh-pdp-hero__inner {
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: var(--space-6) !important;
  }
}

/* MOBILE — compact 2-col with gallery and quickbuy */
@media (max-width: 767px) {
  .dh-section--pdp-hero { padding: 12px 0 !important; }

  /* Gallery: shrink to a single small image, no thumbs, no all-views */
  .dh-pdp-hero__gallery {
    display: block !important;
    grid-template-columns: none !important;
    width: 100%;
  }
  .dh-pdp-hero__thumbs,
  .dh-pdp-hero__all-views { display: none !important; }
  .dh-pdp-hero__main {
    aspect-ratio: 1 / 1 !important;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  /* Hide right-column items that are duplicated in mobile-quickbuy:
     overline, title, strapline, price-block. The bundle ladder + CTA
     stay below in the full details so user can still convert there. */
  .dh-pdp-hero__details .dh-pdp-hero__overline,
  .dh-pdp-hero__details .dh-pdp-hero__title,
  .dh-pdp-hero__details .dh-pdp-hero__pre-pill-row,
  .dh-pdp-hero__details .dh-pdp-hero__strapline,
  .dh-pdp-hero__details .dh-pdp-hero__price-block { display: none !important; }

  /* Details column on mobile: tighten gap */
  .dh-pdp-hero__details {
    gap: 14px !important;
    margin-top: 4px;
  }
}

/* ===== MOBILE QUICKBUY component styles ===== */
.dh-pdp-hero__mobile-quickbuy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px 2px;
  min-width: 0;
}
.dh-pdp-hero__mobile-quickbuy-stars {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--dh-oxblood, #3f8cc4);
  line-height: 1;
}
.dh-pdp-hero__mobile-quickbuy-title {
  font-family: var(--dh-font-display, 'Manrope', sans-serif);
  font-weight: 800 !important;
  font-size: clamp(18px, 5.2vw, 22px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: var(--dh-green, #16161f) !important;
  margin: 0 !important;
}
.dh-pdp-hero__mobile-quickbuy-strap {
  font-family: var(--dh-font-body, 'Inter', sans-serif);
  font-size: 12px;
  line-height: 1.3;
  color: var(--dh-ink, #2A3A33);
  opacity: 0.75;
  margin: 0;
}
.dh-pdp-hero__mobile-quickbuy-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}
.dh-pdp-hero__mobile-quickbuy-now {
  font-family: var(--dh-font-display, 'Manrope', sans-serif);
  font-weight: 800;
  font-size: 22px;
  color: var(--dh-oxblood, #3f8cc4);
}
.dh-pdp-hero__mobile-quickbuy-was {
  font-family: var(--dh-font-body, 'Inter', sans-serif);
  font-size: 13px;
  color: var(--dh-ink, #2A3A33);
  text-decoration: line-through;
  opacity: 0.55;
}
.dh-pdp-hero__mobile-quickbuy-ticks {
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dh-pdp-hero__mobile-quickbuy-ticks li {
  font-family: var(--dh-font-body, 'Inter', sans-serif);
  font-size: 11.5px;
  line-height: 1.25;
  color: var(--dh-green, #16161f);
  font-weight: 600;
}
.dh-pdp-hero__mobile-quickbuy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 12px 10px;
  background: var(--dh-oxblood, #3f8cc4);
  color: var(--dh-cream, #f2f4f8);
  font-family: var(--dh-font-body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 200ms ease;
}
.dh-pdp-hero__mobile-quickbuy-cta:hover,
.dh-pdp-hero__mobile-quickbuy-cta:focus {
  background: var(--dh-green, #16161f);
}

/* Mobile quickbuy — 3-dot colour swatch indicator */
.dh-pdp-hero__mobile-quickbuy-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.dh-pdp-hero__mobile-quickbuy-swatches-label {
  font-family: var(--dh-font-body, 'Inter', sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dh-ink, #2A3A33);
  opacity: 0.7;
  margin-right: 2px;
}
.dh-pdp-hero__mobile-quickbuy-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* DH — Honest Minutes subhead (added post-agent pass) */
.dh-pdp-stats__subhead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--colour-text);
  opacity: 0.85;
}

/* V2 POLISH — missing spacing token (2026-07-25).
   var(--space-10) is referenced ~10 times (trust-badge padding, avatar
   quote margins, reviews seed card) but was never defined, so every one
   of those declarations computed to 0. Defined here on :root to slot
   between --space-8 (2rem) and --space-12 (3rem). */
:root {
  --space-10: 2.5rem;   /* 40px */
}
