/* ==========================================================================
   HEALTH C AUSTRALIA — Shared site styles  (v2 — refined)
   Brand tokens, typography, decorative motifs & component utilities.
   ========================================================================== */

:root {
  /* ----- Premium palette (v1.6) ---------------------------------------
     Reads as a magazine, not a smoothie aisle. Gold softened to a muted
     brass champagne. Sage + stone added for considered editorial accents.
  -------------------------------------------------------------------- */
  --ink:        #122e20;   /* Deep forest — matches printed pouches */
  --ink-deep:   #0a1e14;
  --ink-soft:   #2a4135;   /* For body text — slightly lifted from pure ink */
  --gold:       #b59558;   /* Muted brass — was #c89834, less saturated, more luxe */
  --gold-soft:  #d4bc8a;   /* Champagne accent */
  --cream:      #f0eadd;   /* Warm cream */
  --paper:      #faf6ec;   /* Slightly cooler than cream for layering */
  --stone:      #e3dbc8;   /* New — warm neutral for surfaces */
  --sage:       #8b9c87;   /* New — soft sage for considered accents */
  --sage-soft:  #c4cdc0;
  --blush:      #e8d2c4;   /* Slightly more muted */
  --blush-deep: #c49788;
  --mist:       #e8ddc7;

  /* Pouch-derived shelf tints */
  --tint-morning:  #f4e3dc;
  --tint-tropical: #f3e2b3;
  --tint-green:    #d9e2cd;
  --tint-clasico:  #cfd9bf;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Typography ---------- */
.display {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow-row { display: flex; align-items: center; gap: .85rem; }
.eyebrow-row .dash { width: 36px; height: 1px; background: currentColor; opacity: .5; }
.gold-rule { height: 1px; background: var(--gold); }

/* Centered eyebrow flanked by gold rules — echoes the logo's — AUSTRALIA — */
.rule-flanked {
  display: flex; align-items: center; gap: 1.25rem;
  text-align: center;
  color: var(--ink);
  width: fit-content;
  margin: 0 auto;
}
.rule-flanked::before,
.rule-flanked::after {
  content: ""; height: 1px; width: 64px; background: var(--gold); opacity: .9;
}

/* The official brand line */
.brand-line {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
}
.brand-line .real { color: var(--gold); }

/* ---------- Drop cap (optional, for editorial layouts) ---------- */
.drop-cap::first-letter {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 4em;
  line-height: 0.95;
  float: left;
  margin: 0.06em 0.14em -0.06em 0;
  color: var(--ink);
}

/* ---------- Lead paragraph (replaces drop-cap on About page) ---------- */
.is-style-lead,
p.is-style-lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink);
  margin: 1.5rem 0 2.5rem;
  max-width: 60ch;
}

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  padding: 2.2rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  margin: 3rem 0;
  text-align: center;
}
.pull-quote .src {
  display: block;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
  margin-top: 1.4rem;
  font-weight: 600;
}

/* ---------- Grain ---------- */
.grain { position: relative; }
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: .5;
}

/* ---------- Brand mark watermark ---------- */
.mark-watermark {
  position: absolute;
  pointer-events: none;
  opacity: .065;
}
.mark-watermark.light { opacity: .09; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d-1 { transition-delay: .08s; }
.reveal.d-2 { transition-delay: .16s; }
.reveal.d-3 { transition-delay: .24s; }
.reveal.d-4 { transition-delay: .32s; }

/* ---------- Hero word reveal ---------- */
.headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.22em);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Nav underline ---------- */
.nav-link { position: relative; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--gold); }

/* ---------- Kicker line ---------- */
@keyframes drawLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.kicker-line { transform-origin: left; animation: drawLine 1.2s .6s cubic-bezier(.2,.7,.2,1) both; }

/* ---------- Marquee ---------- */
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track { animation: scrollX 50s linear infinite; }

/* ---------- Product tile ---------- */
.tile {
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s;
}
.tile:hover { transform: translateY(-7px); }

/* Pouch shelf tints */
.bg-tint-morning  { background: var(--tint-morning); }
.bg-tint-tropical { background: var(--tint-tropical); }
.bg-tint-green    { background: var(--tint-green); }
.bg-tint-clasico  { background: var(--tint-clasico); }

/* ---------- Vertical spine ---------- */
.spine {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  opacity: .55;
}

/* ---------- Scroll indicator ---------- */
.scroll-cue {
  display: inline-flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink); opacity: .55; font-weight: 600;
}
.scroll-cue .bar {
  width: 1px; height: 48px;
  background: rgba(18,46,32,0.25);
  position: relative;
  overflow: hidden;
}
.scroll-cue .bar::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 16px;
  background: var(--ink);
  animation: scrollDash 2s ease-in-out infinite;
}
@keyframes scrollDash {
  0% { transform: translateY(-110%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(310%); opacity: 0; }
}

/* ---------- Buttons ---------- */
.btn-primary, .btn-ghost, .btn-gold {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: 1rem 1.7rem;
  letter-spacing: .22em; text-transform: uppercase;
  font-size: 11px; font-weight: 600;
  border: 1px solid var(--ink);
  transition: all .4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-gold { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-primary .arrow, .btn-ghost .arrow, .btn-gold .arrow {
  transition: transform .35s ease;
}
.btn-primary:hover .arrow,
.btn-ghost:hover .arrow,
.btn-gold:hover .arrow { transform: translateX(4px); }

/* ---------- Image hover zoom ---------- */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 1.6s cubic-bezier(.2,.7,.2,1); }
.img-zoom:hover img { transform: scale(1.05); }

/* ---------- Mobile menu ---------- */
.mob-menu {
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .35s ease, visibility .35s;
}
.mob-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ---------- Form fields ---------- */
.field-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(18,46,32,.22);
  padding: 1rem 1rem;
  color: var(--ink);
  /* 16px is the iOS Safari zoom-on-focus threshold — keep at/above this. */
  font-size: 16px;
  transition: border-color .25s ease;
}
.field-input:focus { outline: none; border-color: var(--gold); }
.field-input.on-dark {
  border-color: rgba(246,239,225,.3);
  color: var(--cream);
}
.field-input.on-dark::placeholder { color: rgba(246,239,225,.4); }
.field-input.on-dark:focus { border-color: var(--gold); }

/* ---------- Page header ---------- */
/* No padding-block, no border-bottom, no ::after gold glow — keeps inner
   pages visually identical to the homepage hero. The Tailwind pt/pb classes
   set in healthc_page_hero() are the single source of truth. */
.page-hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

/* ---------- Prose — premium editorial typography ---------- */
.prose-brand {
  font-family: 'Manrope', sans-serif;
}
.prose-brand h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 3.2rem 0 1.1rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .prose-brand h2 {
    margin-top: 4.4rem;
    margin-bottom: 1.4rem;
  }
}
.prose-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--ink);
  margin: 2rem 0 0.65rem;
  font-weight: 500;
  letter-spacing: -0.008em;
}
.prose-brand h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 0.6rem;
}
.prose-brand p,
.prose-brand li {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(18, 46, 32, 0.78);
}
.prose-brand p { margin-bottom: 1.25rem; }
.prose-brand ul,
.prose-brand ol {
  padding-left: 0;
  margin: 1.25rem 0;
  list-style: none;
}
.prose-brand ul li,
.prose-brand ol li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}
.prose-brand ul li::before {
  content: '·';
  position: absolute;
  left: 0.4rem;
  top: -0.1rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1;
}
.prose-brand ol {
  counter-reset: list;
}
.prose-brand ol li {
  counter-increment: list;
}
.prose-brand ol li::before {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.18em;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.prose-brand a {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.3s ease, color 0.3s ease;
}
.prose-brand a:hover {
  color: var(--gold);
  background-size: 100% 2px;
}
.prose-brand strong {
  color: var(--ink);
  font-weight: 600;
}
.prose-brand em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
}
.prose-brand hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid rgba(18, 46, 32, 0.1);
}
.prose-brand blockquote {
  margin: 2.4rem 0;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--ink);
}
.prose-brand img {
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
}
.prose-brand figcaption {
  margin-top: 0.6rem;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(18, 46, 32, 0.55);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--ink);
  border-top: 1px solid rgba(18,46,32,.15);
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--gold);
  transition: transform .3s ease;
  display: inline-block;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--gold); }
.faq-item:hover summary { color: var(--gold); }
.faq-item .ans {
  padding: 0 0 1.6rem;
  color: rgba(18,46,32,.75);
  font-size: 15px;
  line-height: 1.8;
  max-width: 70ch;
}
.faq-item:last-child .ans { border-bottom: 1px solid rgba(18,46,32,.15); }

/* ---------- Ingredient block (NEW) ---------- */
.ingredient-block {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  border: 1px solid rgba(18,46,32,0.12);
  background: var(--paper);
  overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ingredient-block .big-word {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .95;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.ingredient-block.b-fruit  { background: var(--tint-morning); }
.ingredient-block.b-green  { background: var(--tint-green); }
.ingredient-block.b-chia   { background: var(--mist); }
.ingredient-block .accent  { color: var(--gold); }

/* ---------- Pillars (typography-led) ---------- */
.pillar {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--gold);
}
.pillar .roman {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.pillar .pillar-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink);
  line-height: 1.2;
  margin: .9rem 0 .6rem;
}

/* ---------- Recipe step card ---------- */
.step-card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(18,46,32,.1);
  padding: 2rem 1.75rem 2.25rem;
  transition: transform .5s ease, box-shadow .5s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -16px rgba(18,46,32,0.25); }
.step-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--gold);
}
.step-card .ord {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
}

/* ---------- Tabs (PDP) ---------- */
.tab-btn {
  padding: .9rem 0;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18,46,32,0.55);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  cursor: pointer;
}
.tab-btn[aria-selected="true"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.tab-panel[hidden] { display: none; }

/* ---------- Selection ---------- */
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Card content ---------- */
.card-info {
  padding: 1.4rem 1.5rem 1.6rem;
}
.card-info .ord {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(18,46,32,0.45);
}

/* ==========================================================================
   WooCommerce overrides — style the WC default markup we keep using
   (PDP add-to-cart form, quantity inputs, notices, account/cart/checkout).
   ========================================================================== */

/* Skip-link (a11y). */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .65rem 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  outline: 2px solid var(--gold);
}

/* WC: hide screen-reader-only text */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* WC: PDP quantity selector */
form.cart .quantity {
  display: inline-flex;
  align-items: stretch;
  margin-right: .75rem;
  vertical-align: middle;
}
form.cart .quantity .qty,
.woocommerce .quantity .qty,
.woocommerce-cart .quantity .qty {
  width: 64px;
  background: transparent;
  border: 1px solid rgba(18,46,32,.22);
  padding: 0 .75rem;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  /* 16px prevents iOS Safari from zooming in when the field is tapped. */
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  height: 48px;
  line-height: 48px;
  border-radius: 0;
  -moz-appearance: textfield;
}
form.cart .quantity .qty::-webkit-inner-spin-button,
form.cart .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form.cart .quantity .qty:focus { outline: none; border-color: var(--gold); }

/* WC: Single product Add to cart button */
.single_add_to_cart_button,
button.single_add_to_cart_button,
.woocommerce-cart .button[name="update_cart"],
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 1.7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: all .4s ease;
  cursor: pointer;
  text-decoration: none;
  height: 48px;
  line-height: 1;
}
.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover,
.woocommerce-cart .button[name="update_cart"]:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: transparent;
  color: var(--ink);
}

/* WC: default (non-alt) button — used for "Apply coupon", "Update cart", "Place order" */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: .85rem 1.4rem;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  transition: all .35s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Loop "Add" button → look like our eyebrow link */
.healthc-loop-add.button,
.woocommerce a.healthc-loop-add.button,
.woocommerce a.button.healthc-loop-add {
  background: transparent !important;
  color: var(--ink) !important;
  border: 0 !important;
  padding: 0 !important;
  height: auto !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.healthc-loop-add.added::after {
  font-family: WooCommerce, sans-serif;
  content: " ✓";
  color: var(--gold);
  margin-left: 4px;
}

/* WC: notices (cart, checkout, account) */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  background: var(--cream) !important;
  color: var(--ink) !important;
  border: 0 !important;
  border-left: 3px solid var(--gold) !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 1.5rem !important;
  border-radius: 0 !important;
  font-size: 14px !important;
  list-style: none !important;
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none !important;
}
.woocommerce-error {
  border-left-color: #b22222 !important;
}
.woocommerce-message a.button,
.woocommerce-info a.button {
  margin-left: 1rem;
}

/* WC: form inputs (cart coupon, checkout, account) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.select2-container--default .select2-selection--single {
  border: 1px solid rgba(18,46,32,.22) !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: .85rem 1rem !important;
  font-family: 'Manrope', sans-serif !important;
  /* 16px prevents iOS Safari zoom-on-focus during checkout. */
  font-size: 16px !important;
  height: auto !important;
}
.select2-container--default .select2-selection--single {
  height: 48px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px !important;
  padding: 0 !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none !important;
  border-color: var(--gold) !important;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18,46,32,.65);
  margin-bottom: .35rem !important;
}

/* WC: cart table */
.woocommerce-cart table.cart {
  border: 0;
  border-top: 1px solid rgba(18,46,32,.12);
  border-radius: 0;
}
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
  border-bottom: 1px solid rgba(18,46,32,.08);
  padding: 1.25rem 1rem !important;
}
.woocommerce-cart table.cart th {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18,46,32,.65);
}
.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
}

/* WC: My Account navigation */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid rgba(18,46,32,.12);
  padding-left: 1.25rem;
}
.woocommerce-MyAccount-navigation ul li {
  margin-bottom: .85rem;
}
.woocommerce-MyAccount-navigation ul li a {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18,46,32,.6);
  text-decoration: none;
  transition: color .25s ease;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--gold);
}

/* WC: product price */
.woocommerce-Price-amount,
p.price .woocommerce-Price-amount,
.price .woocommerce-Price-amount {
  font-family: 'Fraunces', serif;
  font-weight: 400;
}
.price del .woocommerce-Price-amount {
  opacity: .5;
  margin-right: .5rem;
}
.price ins {
  background: transparent;
  text-decoration: none;
}

/* WC: PDP gallery (default WC slider/lightbox) */
.woocommerce-product-gallery {
  position: relative;
  z-index: 1;
}
.woocommerce-product-gallery__trigger {
  background: var(--cream) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(18,46,32,.12);
  border-radius: 50%;
  top: .75rem !important;
  right: .75rem !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* WC: variation select */
.woocommerce div.product form.cart .variations label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
}
.woocommerce div.product form.cart .reset_variations {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
}

/* Spam-prevention: hide WC "result count" if it slips through */
.woocommerce-result-count {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,46,32,.55);
}

/* AJAX add-to-cart loading state */
.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after {
  font-family: WooCommerce, sans-serif;
  content: "";
  animation: healthc-spin .8s linear infinite;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  margin-left: .5rem;
}
@keyframes healthc-spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Mobile-first polish
   ========================================================================== */

/* Body scroll lock while the mobile menu is open.
   Note: only set overflow:hidden, NOT touch-action:none — the latter
   would block pinch-to-zoom which low-vision users rely on. */
.healthc-no-scroll {
  overflow: hidden;
}
/* On mobile, the open menu fills the viewport below the header. */
.mob-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mob-menu.open {
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Tap-target minimums (Apple HIG 44px, WCAG AAA 44x44).
   Any anchor inside the header, footer or mobile menu that's *just* an icon
   inherits the w-11 h-11 utility we apply in markup; this rule covers any
   text links that would otherwise be tiny. */
.mob-menu a {
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Make the footer's tiny social icon links large enough to tap. */
footer[role="contentinfo"] a[aria-label] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

/* NOTE: We deliberately do NOT set overflow-x:hidden on html or body.
   - It's redundant: every section with a decorative watermark already
     sets `overflow-hidden` on itself to clip those motifs.
   - Worse, applying overflow on the html element breaks position:sticky
     on iOS Safari < 16, which would cause the sticky header to scroll away. */

/* WC: stack PDP gallery + summary on mobile with reasonable rhythm. */
@media (max-width: 1023.98px) {
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    width: 100% !important;
    float: none !important;
  }
  .woocommerce div.product div.summary {
    margin-top: 2rem;
  }
}

/* WC: shop loop — make sure cards have breathing room on small phones. */
@media (max-width: 639.98px) {
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin-bottom: 2rem;
  }
}

/* PDP add-to-cart row stacks cleanly on phones. */
@media (max-width: 639.98px) {
  form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }
  form.cart .quantity {
    flex: 0 0 100%;
    margin-right: 0;
  }
  form.cart .single_add_to_cart_button {
    flex: 1 1 100%;
  }
}

/* Cart page table on mobile — WC has decent defaults; we just tighten gutters. */
@media (max-width: 639.98px) {
  .woocommerce-cart table.cart th,
  .woocommerce-cart table.cart td {
    padding: .9rem .5rem !important;
    font-size: 14px;
  }
}

/* Buttons in the announcement bar — left and right text already hidden on
   sub-sm via Tailwind `hidden sm:inline`; ensure center text doesn't wrap awkwardly. */
@media (max-width: 380px) {
  .bg-ink .max-w-\[1400px\] { padding-left: .75rem; padding-right: .75rem; }
}

/* ==========================================================================
   Announcement bar — infinite scrolling marquee
   ========================================================================== */
.healthc-announce {
  position: relative;
}
.healthc-announce-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  width: max-content;
  animation: healthc-announce-scroll 40s linear infinite;
}
.healthc-announce-item {
  flex-shrink: 0;
  opacity: 0.9;
}
.healthc-announce-dot {
  flex-shrink: 0;
  color: var(--gold-soft);
  opacity: 0.55;
}
@keyframes healthc-announce-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pause on hover so users can read the message */
.healthc-announce:hover .healthc-announce-track {
  animation-play-state: paused;
}
/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .healthc-announce-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Search overlay
   ========================================================================== */
.healthc-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.healthc-search-overlay[hidden] { display: none; }
.healthc-search-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(18, 46, 32, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.healthc-search-overlay.is-open .healthc-search-overlay-bg { opacity: 1; }

.healthc-search-overlay-panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.healthc-search-overlay.is-open .healthc-search-overlay-panel {
  transform: translateY(0);
  opacity: 1;
}

.healthc-search-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 239, 225, 0.65);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}
.healthc-search-close:hover { color: var(--gold); }

.healthc-search-form input[type="search"] {
  width: 100%;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  color: var(--cream);
  background: transparent;
  border: 0;
}
.healthc-search-form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.healthc-search-form kbd {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
}

@media (min-width: 768px) {
  .healthc-search-overlay-panel { padding-top: 8rem; }
}

/* ==========================================================================
   Footer logo lockup
   ========================================================================== */
/* Light variant of the rule-flanked eyebrow for the dark footer */
.rule-flanked--on-dark::before,
.rule-flanked--on-dark::after {
  background: var(--gold);
  opacity: 0.6;
  width: 32px;
}

/* ==========================================================================
   Cart / Checkout / Account page wrappers — proper editorial spacing
   ========================================================================== */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content,
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 768px) {
  .woocommerce-cart .entry-content,
  .woocommerce-checkout .entry-content,
  .woocommerce-account .entry-content,
  .woocommerce-cart .page-content,
  .woocommerce-checkout .page-content,
  .woocommerce-account .page-content {
    padding: 4rem 2rem 6rem;
  }
}

/* Empty cart message */
.woocommerce-cart .cart-empty,
.woocommerce-cart .wc-empty-cart-message {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
  padding: 4rem 1rem 2rem;
  margin: 0;
}
.woocommerce-cart .return-to-shop {
  text-align: center;
  margin: 2rem 0 4rem;
}
.woocommerce-cart .return-to-shop .button {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 0.95rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  transition: background 0.2s ease;
}
.woocommerce-cart .return-to-shop .button:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Cross-sells / "You may also like" / "New in store" — old single-target
   rule kept here for compatibility; the unified `.healthc-wc-section`
   block below covers ALL section heading + grid combinations across
   single-product, cart, account, and shop. */
.woocommerce .cross-sells,
.woocommerce-cart .cross-sells {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(18, 46, 32, 0.1);
}
.woocommerce .cross-sells > h2,
.woocommerce-cart .cross-sells > h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 2rem;
  text-align: center;
}
.woocommerce .cross-sells ul.products,
.woocommerce-cart .cross-sells ul.products {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 640px) {
  .woocommerce .cross-sells ul.products,
  .woocommerce-cart .cross-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .woocommerce .cross-sells ul.products,
  .woocommerce-cart .cross-sells ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* ==========================================================================
   UNIFIED WC SECTION STYLING — Related / Upsells / Cross-sells
   Applies the same editorial treatment (eyebrow + Fraunces title + grid)
   to every WC product section across single-product, cart, account pages.
   ========================================================================== */

/* Section wrapper — proper spacing, not excessive */
.related.products,
.upsells.products,
.woocommerce-related-products,
.woocommerce-up-sells {
  margin-top: 3rem !important;
  padding-top: 2.5rem !important;
  border-top: 1px solid rgba(18, 46, 32, 0.1);
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .related.products,
  .upsells.products,
  .woocommerce-related-products,
  .woocommerce-up-sells {
    margin-top: 4rem !important;
    padding-top: 3rem !important;
  }
}

/* Section heading — Fraunces serif, generous bottom margin */
.related.products > h2,
.upsells.products > h2,
.woocommerce-related-products > h2,
.woocommerce-up-sells > h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 1.75rem !important;
  padding: 0;
  text-align: center;
  position: relative;
}
@media (min-width: 1024px) {
  .related.products > h2,
  .upsells.products > h2,
  .woocommerce-related-products > h2,
  .woocommerce-up-sells > h2 {
    margin-bottom: 2.25rem !important;
  }
}

/* Eyebrow above the heading (created via :before) */
.related.products > h2::before,
.upsells.products > h2::before,
.woocommerce-related-products > h2::before,
.woocommerce-up-sells > h2::before {
  content: '· The Range ·';
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* Products grid inside any of these sections — responsive 1/2/3 columns */
.related.products ul.products,
.upsells.products ul.products,
.woocommerce-related-products ul.products,
.woocommerce-up-sells ul.products {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 2rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}
@media (min-width: 640px) {
  .related.products ul.products,
  .upsells.products ul.products,
  .woocommerce-related-products ul.products,
  .woocommerce-up-sells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem !important;
  }
}
@media (min-width: 1024px) {
  .related.products ul.products,
  .upsells.products ul.products,
  .woocommerce-related-products ul.products,
  .woocommerce-up-sells ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 2.5rem !important;
  }
}
/* WC adds explicit `columns-N` classes — force them off so our grid wins */
.related.products ul.products.columns-2,
.related.products ul.products.columns-3,
.related.products ul.products.columns-4,
.related.products ul.products.columns-5,
.related.products ul.products.columns-6,
.upsells.products ul.products.columns-2,
.upsells.products ul.products.columns-3,
.upsells.products ul.products.columns-4 {
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
@media (min-width: 640px) {
  .related.products ul.products.columns-2,
  .related.products ul.products.columns-3,
  .related.products ul.products.columns-4,
  .related.products ul.products.columns-5,
  .related.products ul.products.columns-6,
  .upsells.products ul.products.columns-2,
  .upsells.products ul.products.columns-3,
  .upsells.products ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .related.products ul.products.columns-2,
  .related.products ul.products.columns-3,
  .related.products ul.products.columns-4,
  .related.products ul.products.columns-5,
  .related.products ul.products.columns-6,
  .upsells.products ul.products.columns-2,
  .upsells.products ul.products.columns-3,
  .upsells.products ul.products.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Products inside grids — kill float-based layout from WC core */
.related.products ul.products li.product,
.upsells.products ul.products li.product,
.woocommerce-related-products ul.products li.product,
.woocommerce-up-sells ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  clear: none !important;
}

/* WC product tabs (Description, Reviews) — proper spacing */
.woocommerce-tabs {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(18, 46, 32, 0.1);
}
.woocommerce-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  border-bottom: 1px solid rgba(18, 46, 32, 0.15);
}
.woocommerce-tabs .tabs li {
  margin: 0;
}
.woocommerce-tabs .tabs li a {
  display: block;
  padding: 1rem 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(18, 46, 32, 0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.woocommerce-tabs .tabs li.active a,
.woocommerce-tabs .tabs li a:hover {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.woocommerce-tabs .panel {
  padding: 1.5rem 0;
  font-family: 'Manrope', sans-serif;
  line-height: 1.7;
  color: var(--ink);
}
.woocommerce-tabs .panel h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--ink);
}

/* Checkout — section headings inside the form */
.woocommerce-checkout h3,
.woocommerce-checkout-review-order > h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--ink);
  margin: 2.5rem 0 1.5rem !important;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(18, 46, 32, 0.1);
}

/* My Account — dashboard sections */
.woocommerce-account .woocommerce-MyAccount-content > h2,
.woocommerce-account .woocommerce-MyAccount-content > h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 1.5rem !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.7rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18, 46, 32, 0.7);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: var(--ink);
  border-left-color: var(--gold);
  background: rgba(200, 152, 52, 0.05);
}

/* WC notices (success, info, error) — branded */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  color: var(--ink);
  padding: 1rem 1.4rem;
  margin: 1.5rem 0;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  list-style: none;
}
.woocommerce-message a,
.woocommerce-info a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.woocommerce-error {
  border-left-color: #c44;
}

/* Pagination — give the result list breathing room */
.woocommerce-pagination,
nav.woocommerce-pagination {
  margin: 3rem 0 1rem !important;
  text-align: center;
}
.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination ul.page-numbers a,
.woocommerce-pagination ul.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(18, 46, 32, 0.15);
  background: var(--paper);
  transition: background 0.2s ease, color 0.2s ease;
}
.woocommerce-pagination ul.page-numbers .current,
.woocommerce-pagination ul.page-numbers a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Shop top bar — result count + orderby alignment */
.woocommerce-result-count {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(18, 46, 32, 0.65);
  margin: 0 0 2rem;
}
.woocommerce-ordering {
  margin: 0 0 2rem;
}
.woocommerce-ordering select {
  padding: 0.6rem 2.4rem 0.6rem 0.9rem;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  background: var(--paper);
  border: 1px solid rgba(18, 46, 32, 0.2);
  color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23122e20' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 10px;
}

/* Single-product inner sections — generous breathing room around tabs/related */
.single-product .product .summary {
  padding-bottom: 1rem;
}

/* Cart totals + checkout button */
.woocommerce-cart .cart_totals {
  background: var(--cream);
  padding: 2rem;
  border: 1px solid rgba(18, 46, 32, 0.08);
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1.1rem 2rem;
  text-align: center;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s ease;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Coupon form inline alignment */
.woocommerce-cart .coupon {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: stretch;
  max-width: 500px;
}
.woocommerce-cart .coupon input[type="text"] {
  flex: 1;
  min-width: 180px;
  padding: 0.85rem 1rem;
  font-size: 16px;
  border: 1px solid rgba(18, 46, 32, 0.2);
  background: var(--paper);
}
.woocommerce-cart .coupon .button {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.85rem 1.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

/* The wrap that catches our contact form shortcode at end of contact page */
.healthc-contact-form-wrap {
  max-width: 640px;
}
.healthc-contact-form-wrap input[type="text"],
.healthc-contact-form-wrap input[type="email"],
.healthc-contact-form-wrap input[type="tel"],
.healthc-contact-form-wrap textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 16px;
  border: 1px solid rgba(18, 46, 32, 0.2);
  background: #fff;
  font-family: 'Manrope', sans-serif;
}
.healthc-contact-form-wrap textarea { min-height: 140px; }
.healthc-contact-form-wrap label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18, 46, 32, 0.7);
  margin: 1.1rem 0 0.4rem;
}
.healthc-contact-form-wrap p { margin: 0; }
.healthc-contact-form-wrap input[type="submit"],
.healthc-contact-form-wrap .wpcf7-submit {
  background: var(--ink);
  color: var(--paper);
  padding: 0.95rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  margin-top: 1.4rem;
  transition: background 0.2s ease;
}
.healthc-contact-form-wrap input[type="submit"]:hover,
.healthc-contact-form-wrap .wpcf7-submit:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ==========================================================================
   v1.3.0 — Lifestyle Collection + premium polish
   ========================================================================== */

/* Lifestyle Collection cards — quiet, considered hover */
#lifestyle .group:hover h3 {
  color: var(--ink);
}
#lifestyle .group .aspect-\[4\/5\] {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

/* Reduce visual noise on home — softer hairlines, more breathing room */
section + section {
  position: relative;
}

/* Hero — tighten the typography hierarchy on small screens */
@media (max-width: 640px) {
  /* Make the home hero feel less cramped on phones */
  .hero-display,
  .display.text-\[60px\],
  .display.text-\[44px\] {
    line-height: 1 !important;
    letter-spacing: -0.015em !important;
  }
  /* CTA buttons stack more elegantly on phones */
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-cta-row a {
    text-align: center;
    width: 100%;
  }
}

/* Premium CTA button polish — consistent across the entire site */
.btn-primary,
a.btn-primary,
.button-primary,
.healthc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-primary:hover,
.healthc-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-secondary,
a.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--ink);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Mobile: more generous tap targets + readable type */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .display { letter-spacing: -0.01em; }
  /* Reduce horizontal padding on tight phones */
  .px-4 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
  /* Eyebrow rows centred and breathable on phones */
  .eyebrow-row { font-size: 10px; }
}

/* Premium feel — soften eyebrow gold so it doesn't shout */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
}

/* Sections on home — consistent vertical rhythm */
.home-section {
  padding-block: 5rem;
}
@media (min-width: 1024px) {
  .home-section {
    padding-block: 7rem;
  }
}

/* Footer — clean origin line */
footer .normal-case {
  text-transform: none !important;
}

/* ==========================================================================
   v1.4.0 — Premium polish pass
   ========================================================================== */

/* Hero — premium centered editorial layout */
.healthc-hero {
  position: relative;
}
.healthc-hero h1.display {
  /* Refined letter-spacing for the huge display headline */
  font-feature-settings: "ss01", "ss02", "kern", "liga", "calt";
}
.healthc-hero .headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-word-in 0.9s cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}
@keyframes hero-word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium button refinements - subtle arrow nudge on hover */
.btn-primary .arrow,
.btn-secondary .arrow {
  transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.btn-primary:hover .arrow,
.btn-secondary:hover .arrow {
  transform: translateX(3px);
}

/* Range cards — slightly more premium card treatment */
.range-card {
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.range-card:hover {
  transform: translateY(-4px);
}
.range-card .pouch-wrap {
  position: relative;
  overflow: hidden;
}
.range-card .pouch-wrap img {
  transition: transform 0.7s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.range-card:hover .pouch-wrap img {
  transform: scale(1.03);
}

/* Logo refinement — slightly larger, more confident presence */
header img.custom-logo,
header img.attachment-full,
header .custom-logo-link img,
header .site-logo-link img,
.site-header img.custom-logo,
.site-header .custom-logo-link img {
  height: 48px !important;
  max-height: 48px !important;
  max-width: 240px !important;
}
@media (min-width: 1024px) {
  header img.custom-logo,
  header img.attachment-full,
  header .custom-logo-link img,
  header .site-logo-link img,
  .site-header img.custom-logo,
  .site-header .custom-logo-link img {
    height: 60px !important;
    max-height: 60px !important;
    max-width: 280px !important;
  }
}

/* Section spacing — more generous, more premium rhythm */
section + section {
  border-top: 0;
}

/* Eyebrow row — center variant gets matching dashes both sides */
.eyebrow-row.justify-center .dash {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  display: inline-block;
}

/* Spine text — vertical "Est. 2026 · Sydney · Australia" sidebar */
.spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18, 46, 32, 0.4);
  white-space: nowrap;
}

/* Gold rule - delicate horizontal divider */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg,
    rgba(200, 152, 52, 0) 0%,
    rgba(200, 152, 52, 0.8) 50%,
    rgba(200, 152, 52, 0) 100%);
}

/* Premium reveal animation - softer, more elegant */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.85, 0.25, 1),
              transform 1.2s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile-specific polish */
@media (max-width: 640px) {
  /* Tighter hero on mobile so the pouches dominate */
  .healthc-hero {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .healthc-hero h1.display {
    line-height: 0.95 !important;
    letter-spacing: -0.015em !important;
  }
  /* Trust marks stack cleanly on mobile */
  .healthc-hero .trust-marks {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Tablet polish */
@media (min-width: 641px) and (max-width: 1023px) {
  .healthc-hero h1.display {
    font-size: 64px !important;
  }
}

/* Image polish - smooth all hero image transitions */
.healthc-hero picture img {
  filter: drop-shadow(0 30px 40px rgba(18, 46, 32, 0.08));
}

/* ==========================================================================
   v1.4.1 — Inner page editorial system (About / Contact / FAQ / Shipping)
   ========================================================================== */

/* Editorial H2 — the same elegant heading style across every inner page. */
.editorial-h2,
.prose-brand h2.editorial-h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 3.5rem 0 1.25rem !important;
  padding: 0;
}
@media (min-width: 1024px) {
  .editorial-h2,
  .prose-brand h2.editorial-h2 {
    margin-top: 4.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}

/* About — three-up promise grid */
.promise-card {
  padding: 0;
}
.promise-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.promise-icon svg {
  display: block;
}
.promise-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.65rem;
  letter-spacing: -0.005em;
}
.promise-body {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(18, 46, 32, 0.72);
  margin: 0;
}

/* Contact — 2x2 channel cards */
.contact-card {
  background: var(--paper);
  border: 1px solid rgba(18, 46, 32, 0.1);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(200, 152, 52, 0.5);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .contact-card { padding: 2.5rem; }
}
.contact-card-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-card-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18, 46, 32, 0.55);
  margin-bottom: 0.5rem;
}
.contact-card-link {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
  word-break: break-word;
}
.contact-card-link:hover {
  color: var(--gold);
}
.contact-card-body {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(18, 46, 32, 0.7);
  margin: 0;
}

/* FAQ — group titles get extra top breathing room */
.faq-group-title,
h2.faq-group-title {
  margin-top: 5rem !important;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 46, 32, 0.08);
}
.faq-group-title:first-of-type,
h2.faq-group-title:first-of-type {
  margin-top: 3rem !important;
}

/* Shipping — three-feature row at top */
.shipping-feature {
  text-align: left;
  padding: 0;
}
.shipping-feature-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.shipping-feature-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.65rem;
  letter-spacing: -0.005em;
}
.shipping-feature-body {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(18, 46, 32, 0.72);
  margin: 0;
}

/* Shipping rate tables */
.shipping-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.shipping-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
}
.shipping-table th {
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(18, 46, 32, 0.55);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(18, 46, 32, 0.15);
  background: rgba(246, 239, 225, 0.5);
}
.shipping-table td {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(18, 46, 32, 0.08);
  vertical-align: top;
  color: var(--ink);
  line-height: 1.6;
}
.shipping-table tbody tr:last-child td {
  border-bottom: 0;
}
.shipping-table tbody tr:hover {
  background: rgba(246, 239, 225, 0.3);
}
.shipping-table .meta {
  display: block;
  font-size: 12px;
  color: rgba(18, 46, 32, 0.55);
  margin-top: 0.25rem;
}

/* Page-hero h1 — typography polish only (no padding/background overrides) */
.page-hero h1 {
  font-weight: 300;
  font-feature-settings: "ss01", "kern", "liga";
}

/* prose-brand — the wrapper class on page.php content */
.prose-brand {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
}
.prose-brand p {
  margin: 0 0 1.25rem;
  color: rgba(18, 46, 32, 0.85);
}
.prose-brand p strong {
  color: var(--ink);
  font-weight: 600;
}
.prose-brand h2:not(.editorial-h2) {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  margin: 3rem 0 1rem;
}
.prose-brand h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.prose-brand ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}
.prose-brand ul li {
  margin: 0.5rem 0;
  line-height: 1.7;
  color: rgba(18, 46, 32, 0.82);
}
.prose-brand a:not(.btn-primary):not(.btn-secondary) {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(200, 152, 52, 0.4);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s ease;
}
.prose-brand a:not(.btn-primary):not(.btn-secondary):hover {
  text-decoration-color: var(--gold);
}

/* not-prose escape hatch for grid blocks inside prose containers */
.prose-brand .not-prose * {
  margin: 0;
}
.prose-brand .not-prose .promise-title,
.prose-brand .not-prose .contact-card-link,
.prose-brand .not-prose .shipping-feature-title {
  margin: 0 0 0.65rem !important;
}
.prose-brand .not-prose .contact-card-label {
  margin-bottom: 0.5rem !important;
}
.prose-brand .not-prose .contact-card-icon,
.prose-brand .not-prose .promise-icon,
.prose-brand .not-prose .shipping-feature-icon {
  margin-bottom: 1.25rem !important;
}
.prose-brand .not-prose .promise-body,
.prose-brand .not-prose .contact-card-body,
.prose-brand .not-prose .shipping-feature-body {
  margin: 0 !important;
}

/* ==========================================================================
   v1.5.0 — Inner pages premium polish
   ========================================================================== */

/* Page hero — refined for the new centered editorial layout */
.page-hero {
  position: relative;
  background: var(--paper);
}
.page-hero .eyebrow-row {
  margin-bottom: 0;
}
.page-hero h1.display {
  font-feature-settings: "ss01", "kern", "liga";
}
.page-hero .gold-rule {
  opacity: 0.9;
}

/* WC Breadcrumb on inner pages — quiet, elegant */
.woocommerce-breadcrumb,
.woocommerce .woocommerce-breadcrumb {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(18, 46, 32, 0.5);
  margin-bottom: 2.5rem;
  padding-bottom: 0;
  font-weight: 600;
}
.woocommerce-breadcrumb a {
  color: rgba(18, 46, 32, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce-breadcrumb a:hover {
  color: var(--gold);
}
.woocommerce-breadcrumb .delimiter,
.woocommerce-breadcrumb > span {
  margin: 0 0.6rem;
}

/* Single product — spacing handled inline via Tailwind py-12 lg:py-16,
   no override here so the entire site uses one consistent rhythm. */

/* Single product gallery polish — soft shadow on the main image */
.single-product .woocommerce-product-gallery__image img {
  transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1);
}

/* Single product summary — premium spacing between elements */
.single-product .summary .price {
  margin: 1.6rem 0 1.4rem !important;
}
.single-product .summary form.cart {
  margin-top: 1.8rem;
}
.single-product .summary .product_meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(18, 46, 32, 0.1);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18, 46, 32, 0.55);
}

/* Section dividers — reusable, gold-fade rule */
.healthc-divider {
  margin: 3rem auto;
  height: 1px;
  width: 100%;
  max-width: 120px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 152, 52, 0.5) 50%,
    transparent 100%);
}

/* Visual rhythm — when blocks contain headings followed by content,
   tighten the spacing so it reads as a single section, not loose blocks */
.prose-brand h2 + p,
.prose-brand h3 + p {
  margin-top: 0;
}
.prose-brand h2:first-child,
.prose-brand h3:first-child {
  margin-top: 0;
}

/* Editorial page max-width — slightly narrower for premium reading */
.prose-brand {
  max-width: 720px;
}

/* But allow grid blocks (promise cards, contact cards) to break the
   prose-brand max-width and span the full container */
.prose-brand .not-prose,
.prose-brand .grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Promise cards — slightly more premium with gold accent border on hover */
.promise-card {
  position: relative;
  padding: 1.5rem 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.85, 0.25, 1);
}
.promise-card:hover {
  transform: translateY(-3px);
}
.promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* Final-CTA banner pattern — used at the end of editorial pages */
.healthc-end-cta {
  margin: 5rem auto 0;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  border: 1px solid rgba(18, 46, 32, 0.08);
  max-width: 800px;
}
@media (min-width: 1024px) {
  .healthc-end-cta {
    margin-top: 7rem;
    padding: 5rem 3rem;
  }
}
.healthc-end-cta h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.healthc-end-cta p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(18, 46, 32, 0.7);
  margin: 0 0 1.8rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* Page transitions — fade-in body on first paint for premium feel */
main#primary {
  animation: page-fade-in 0.6s cubic-bezier(0.2, 0.85, 0.25, 1) both;
}
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pull quote — premium magazine treatment */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.4;
  color: var(--ink);
  margin: 3rem auto;
  max-width: 32ch;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}
.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.pull-quote::before { top: -1.2rem; }
.pull-quote::after  { bottom: -1.2rem; }
.pull-quote .src {
  display: block;
  margin-top: 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(18, 46, 32, 0.5);
}

/* ==========================================================================
   v1.6.0 — Premium luxury wellness polish
   Tighter, more confident, more whitespace, more considered.
   ========================================================================== */

/* Refined typography variables - elevate the whole system */
:root {
  --letter-tracking-tight: -0.022em;   /* For huge display headlines */
  --letter-tracking-display: -0.015em; /* For section headlines */
  --letter-tracking-eyebrow: 0.34em;   /* Slightly wider for premium feel */
}

/* Hero — no extra padding-top here; inline pt-* classes set the spacing */
.healthc-hero {
  padding-top: 0;
}
.healthc-hero h1.display {
  /* Even tighter tracking for huge sizes, more confident weight */
  font-weight: 300 !important;
  letter-spacing: var(--letter-tracking-tight) !important;
  line-height: 0.9 !important;
}
.healthc-hero h1.display .headline-word {
  /* Soften the bounce for a more premium entrance */
  animation-duration: 1.1s !important;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.healthc-hero h1.display .italic {
  /* Italics in display become the visual punctuation */
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.025em;
}

/* Hero body paragraph — slightly tighter, more refined */
.healthc-hero p {
  font-feature-settings: "kern", "liga", "calt";
}

/* Eyebrows everywhere — slightly wider tracking, lower opacity for premium */
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  letter-spacing: var(--letter-tracking-eyebrow);
  text-transform: uppercase;
  font-weight: 600;
}

/* Premium image treatment — subtle frame, depth, no harsh shadows */
.healthc-hero picture img,
.range-card .pouch-wrap img,
.product img.wp-post-image {
  /* Soft, considered shadow that doesn't compete */
  filter: drop-shadow(0 25px 35px rgba(18, 46, 32, 0.07))
          drop-shadow(0 10px 15px rgba(18, 46, 32, 0.04));
}

/* Subtle film grain overlay for editorial texture - applied to hero */
.healthc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.18 0 0 0 0 0.13 0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

/* Sections - much more generous whitespace for premium feel */
/* v1.9 — tighter section rhythm. Previous override bumped these +20-40%
   making the home page feel like infinite scrolling whitespace. Reverted
   to the underlying Tailwind values, no escalation needed. */
section.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
section.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
section.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) {
  section.lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  section.lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

/* Range cards — quieter, more premium hover */
.range-card {
  padding: 0;
}
.range-card .pouch-wrap {
  /* Lift the pouch shot off the tint shelf */
  padding: 1.5rem 1rem 0;
}
.range-card h3 {
  /* Product names lighter, more confident */
  font-weight: 300;
  letter-spacing: var(--letter-tracking-display);
}

/* Buttons — more premium, slightly larger touch target */
.btn-primary,
a.btn-primary,
.healthc-cta {
  padding: 1.05rem 2.4rem !important;
  font-size: 10.5px !important;
  letter-spacing: 0.32em !important;
  font-weight: 600 !important;
}
.btn-secondary,
a.btn-secondary {
  padding: 1.05rem 2.4rem !important;
  font-size: 10.5px !important;
  letter-spacing: 0.32em !important;
  font-weight: 600 !important;
  border-width: 1px !important;
}

/* Add a "ghost" link variant for tertiary CTAs (Join The Waitlist etc.) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 0;
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-ghost:hover::after {
  transform-origin: right;
  transform: scaleX(0);
}

/* Marquee + press strip — quieter, more considered */
.marquee-row,
.press-row {
  font-size: 11px !important;
  letter-spacing: 0.28em !important;
  font-weight: 500 !important;
  color: rgba(18, 46, 32, 0.55) !important;
}

/* Section dividers everywhere - subtler, more refined */
.bg-paper section + section::before,
.healthc-section-divider {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(18, 46, 32, 0.15);
  margin: 0 auto;
}

/* Image card treatment for lifestyle/product photography */
.healthc-image-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.healthc-image-card img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
  filter: brightness(1.02) contrast(1.03);
}
.healthc-image-card:hover img {
  transform: scale(1.04);
}

/* Subtle warmth filter — applied to product images to elevate
   AI-generated mockups toward a more "photographic" feel */
.healthc-image-warm {
  filter: brightness(1.02) contrast(1.05) saturate(0.96);
}

/* Soft vignette around hero images for editorial depth */
.healthc-hero .reveal:has(img)::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    transparent 50%,
    rgba(18, 46, 32, 0.04) 100%);
}

/* Smaller text in trust marks - quieter, more confident */
.healthc-hero .text-\[10\.5px\] {
  font-size: 10px !important;
  letter-spacing: 0.32em !important;
}

/* Mobile - even more refined typography */
@media (max-width: 640px) {
  .healthc-hero h1.display {
    font-size: 40px !important;
    line-height: 0.95 !important;
    letter-spacing: -0.018em !important;
  }
  .healthc-hero {
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
  }
  .btn-primary,
  .btn-secondary {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* Range section — quieter background, more white space */
#range,
#products,
section[aria-labelledby*="range"] {
  background: var(--paper) !important;
}

/* Promise / pillars sections — more premium */
section[aria-labelledby*="pillars"],
section[aria-labelledby*="promise"] {
  background: var(--cream) !important;
}

/* Section eyebrows — keep gold but use the muted brass tone */
.eyebrow.text-gold,
.text-gold {
  color: var(--gold) !important;
}
.text-sage {
  color: var(--sage);
}

/* Considered link treatment site-wide */
.entry-content a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost) {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.entry-content a:not(.btn-primary):not(.btn-secondary):not(.btn-ghost):hover {
  color: var(--gold);
}


/* ==========================================================================
   v1.8.0 — Stacked editorial hero & brand banner
   Text zone on cream + product image band below. No text-on-image overlap.
   ========================================================================== */

/* === HERO === */

.healthc-hero--stacked {
  background: var(--paper);
  position: relative;
}

.healthc-hero--stacked .hero-text-zone {
  position: relative;
  background: linear-gradient(180deg, #fbf7ec 0%, #f3ecdc 100%);
  overflow: hidden;
}

.healthc-hero--stacked .hero-image-zone {
  position: relative;
  background: #f3ecdc; /* match the cream surface so the image edge blends */
  overflow: hidden;
}
.healthc-hero--stacked .hero-image-zone img {
  width: 100%;
  height: auto;
  display: block;
  /* Crop to a more cinematic letterbox so the pouches are the hero, not vertical white space above. */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 65%;
}
@media (min-width: 1024px) {
  .healthc-hero--stacked .hero-image-zone img {
    aspect-ratio: 21 / 9; /* even more cinematic on desktop */
  }
}
@media (max-width: 640px) {
  .healthc-hero--stacked .hero-image-zone img {
    aspect-ratio: 4 / 3;
  }
}

.healthc-hero--stacked .hero-trust-zone {
  background: var(--paper);
  border-top: 1px solid rgba(18, 46, 32, 0.08);
}

/* Refined headline animation */
.healthc-hero--stacked .headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-word-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes hero-word-in {
  to { opacity: 1; transform: translateY(0); }
}

/* === BRAND BANNER === */

.healthc-brand-banner--stacked {
  background: var(--paper);
  position: relative;
}

.healthc-brand-banner--stacked .brand-banner-text-zone {
  background: linear-gradient(180deg, #fbf7ec 0%, #f3ecdc 100%);
  position: relative;
  overflow: hidden;
}

.healthc-brand-banner--stacked .brand-banner-image-zone {
  background: #f3ecdc;
  overflow: hidden;
}
.healthc-brand-banner--stacked .brand-banner-image-zone img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 65%;
}
@media (max-width: 1023px) {
  .healthc-brand-banner--stacked .brand-banner-image-zone img {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 640px) {
  .healthc-brand-banner--stacked .brand-banner-image-zone img {
    aspect-ratio: 4 / 3;
  }
}

/* Tighter heading on the smaller banner */
.healthc-brand-banner--stacked .display.italic.text-gold {
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.025em;
}
