/* Vividh Health — home / marketplace styles
 *
 * Sections, in order:
 *   1. Search bar
 *   2. Category strip (rounded tiles)
 *   3. Offer cards (2-up)
 *   4. Product chips + grid
 *   5. FAQs
 *   6. Call-out band
 *   7. How it works (3 steps)
 *   8. SEO sitemap
 */

/* ============================================================
 * 1. Search
 * ========================================================== */

.vh-home__search {
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-pill);
  padding: 6px 6px 6px var(--vh-space-4);
  display: flex; align-items: center; gap: var(--vh-space-2);
  box-shadow: var(--vh-shadow-1);
  transition: box-shadow var(--vh-dur-base) var(--vh-ease), border-color var(--vh-dur-base) var(--vh-ease);
}
.vh-home__search:focus-within {
  border-color: var(--vh-primary);
  box-shadow: 0 0 0 3px var(--vh-focus), var(--vh-shadow-2);
}
.vh-home__search > svg {
  color: var(--vh-text-muted);
  flex: 0 0 auto;
  stroke: currentColor; fill: none; stroke-width: 1.6;
  margin-left: -2px;
}
.vh-auth__aside__icon .vh-icon{
  margin: 8px
}
.vh-home__search input {
  flex: 1;
  border: 0; background: transparent; outline: none;
  padding: var(--vh-space-2) 0;
  font-size: var(--vh-text-md);
  color: var(--vh-text);
  font-family: inherit;
}
.vh-home__search input::placeholder { color: var(--vh-text-subtle); }
.vh-home__search__hint {
  font-size: var(--vh-text-2xs);
  color: var(--vh-text-subtle);
  padding-right: var(--vh-space-3);
  font-family: var(--vh-font-mono);
  letter-spacing: 0.06em;
}
/* Search-as-button variant — used by the topnav to open the cmdK palette */
.vh-home__search--button {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--vh-text-subtle);
}
.vh-home__search__placeholder {
  flex: 1; min-width: 0;
  color: var(--vh-text-subtle);
  font-size: var(--vh-text-sm);
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 4px;
}

.vh-home__sectionhead {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--vh-space-3);
  flex-wrap: wrap;
  margin-bottom: var(--vh-space-phi-2);
}
.vh-home__sectionhead .vh-chips { display: flex; flex-direction: row; gap: 4px; }
.vh-home__sectionhead h2 {
  margin: 0;
  letter-spacing: var(--vh-tracking-tight);
  line-height: var(--vh-leading-snug);
}
.vh-home__sectionhead p {
  margin: 0;
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-relaxed);
}

.vh-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--vh-primary);
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-semibold);
  text-decoration: none;
  white-space: nowrap;
}
.vh-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.vh-link:hover { color: var(--vh-green-700); }

.vh-eyebrow--lab     { color: var(--vh-product-lab); }
.vh-eyebrow--physio  { color: var(--vh-product-physio); }
.vh-eyebrow--doctor  { color: var(--vh-product-doctor); }
.vh-eyebrow--otc     { color: var(--vh-product-otc); }

/* ============================================================
 * .vh-bento — signed-in dashboard (desktop only)
 * Mosaic grid built on the existing .vh-card-v3 primitive.
 * Mobile shows the marketing hero instead via .vh-show-mobile.
 * ========================================================== */

.vh-bento { display: none; }              /* shown by media query below */
.vh-mobile-only { }                       /* utility hooks (default visible mobile) */
.vh-desktop-only { display: none; }

@media (min-width: 1024px) {
  .vh-mobile-only  { display: none; }
  .vh-desktop-only { display: revert; }

  .vh-bento {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: minmax(120px, auto);
    gap: var(--vh-space-3);
  }
  .vh-bento__cell { padding: var(--vh-space-phi-2); display: flex; flex-direction: column; }

  .vh-bento__cell--stats     { grid-column: span 6; }
  .vh-bento__cell--suggested { grid-column: span 3; grid-row: span 2; }
  .vh-bento__cell--trend     { grid-column: span 3; }
  .vh-bento__cell--order     { grid-column: span 3; }
  .vh-bento__cell--reports   { grid-column: span 3; grid-row: span 2; }
  .vh-bento__cell--quick     { grid-column: span 3; }
}

.vh-bento__statgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vh-space-4);
  align-items: start;
}
.vh-bento__statgrid .vh-stat__value { font-size: var(--vh-text-2xl); }

.vh-bento__sparkholder { margin-top: var(--vh-space-2); }
.vh-bento__sparkholder svg { width: 100%; height: 64px; }

.vh-bento__list { list-style: none; padding: 0; margin: var(--vh-space-2) 0; display: grid; gap: 6px; }
.vh-bento__list a {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: var(--vh-space-2);
  align-items: center;
  padding: 6px 8px;
  border-radius: var(--vh-radius-md);
  color: var(--vh-text);
  text-decoration: none;
  font-size: var(--vh-text-sm);
  transition: background var(--vh-dur-fast) var(--vh-ease);
}
.vh-bento__list a:hover { background: var(--vh-bg-muted); }
.vh-bento__listicon { color: var(--vh-text-muted); display: inline-flex; }
.vh-bento__listname { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: var(--vh-weight-semibold); }
.vh-bento__listdate { font-family: var(--vh-font-mono); font-size: var(--vh-text-2xs); color: var(--vh-text-subtle); }

.vh-bento__quickgrid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--vh-space-2);
  margin-top: var(--vh-space-3);
}
.vh-bento__quick {
  display: flex; flex-direction: column; gap: 6px;
  padding: var(--vh-space-3);
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-2xl);
  color: var(--vh-text);
  text-decoration: none;
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-semibold);
  transition: border-color var(--vh-dur-fast) var(--vh-ease),
              background   var(--vh-dur-fast) var(--vh-ease);
}
.vh-bento__quick:hover { border-color: var(--vh-primary); background: var(--vh-primary-soft); }
.vh-bento__quick svg { color: var(--vh-primary); }

/* ============================================================
 * 2. Category strip
 * ========================================================== */

.vh-categorystrip {
  display: flex;
  gap: var(--vh-space-3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: var(--vh-space-1) 2px var(--vh-space-2);
  scroll-snap-type: x proximity;
}
.vh-categorystrip::-webkit-scrollbar { height: 6px; }
.vh-categorystrip::-webkit-scrollbar-thumb { background: var(--vh-border-strong); border-radius: 999px; }

.vh-cattile {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--vh-space-2);
  flex: 0 0 96px;
  width: 96px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--vh-text);
  font-family: inherit;
  scroll-snap-align: start;
  padding: 0;
}
/* Tile icon — slug-stable colour comes from the inline `--_cat-color`
 * CSS var that the template emits via {% category_color cat %}.
 * Sentinel tiles (All / Rx / AI) keep their bespoke palette below. */
.vh-cattile__icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--_cat-color, var(--vh-primary)) 15%, var(--vh-bg-elevated));
  color: var(--_cat-color, var(--vh-primary));
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--vh-dur-base) var(--vh-ease),
              box-shadow var(--vh-dur-base) var(--vh-ease),
              background var(--vh-dur-base) var(--vh-ease);
}
.vh-cattile__icon svg {
  width: 38px; height: 38px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}
.vh-cattile:hover .vh-cattile__icon {
  transform: translateY(-2px);
  box-shadow: var(--vh-shadow-2);
}
.vh-cattile.is-active .vh-cattile__icon {
  background: var(--_cat-color, var(--vh-primary));
  color: var(--vh-text-on-brand);
  box-shadow: var(--vh-shadow-2);
}
.vh-cattile__name {
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-semibold);
  text-align: center;
  line-height: 1.3;
  letter-spacing: var(--vh-tracking-tight);
}
/* Condition tiles with a custom illustration — image fills the 96×96
 * icon box edge-to-edge, no tint, clipped to the 24px radius. */
.vh-cattile__icon--img {
  background: transparent;
  overflow: hidden;
  padding: 0;
}
.vh-cattile__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sentinel tiles — distinct from any single category. */
.vh-cattile__icon[data-tone="all"] { background: var(--vh-primary-soft); color: var(--vh-primary); }
.vh-cattile__icon[data-tone="rx"]  { background: var(--vh-secondary-soft); color: var(--vh-gold-700); }
.vh-cattile__icon[data-tone="ai"]  { background: linear-gradient(135deg, var(--vh-primary-soft), var(--vh-secondary-soft)); color: var(--vh-primary); }

/* Staggered intro — tiles rise + fade in on page load, sequenced by the
 * per-tile `--i` index emitted in the template. Matches the hero's
 * vh-hero-rise intro. Skipped entirely for reduced-motion users. */
@media (prefers-reduced-motion: no-preference) {
  .vh-categorystrip .vh-cattile {
    animation: vh-cattile-rise 520ms var(--vh-ease-soft) both;
    animation-delay: calc(var(--i, 0) * 45ms);
  }
}
@keyframes vh-cattile-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
 * 3. Offer cards (two side-by-side)
 * ========================================================== */

.vh-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-4);
}

/* Coupons — a swipeable carousel: 1 card per view on mobile, 2 on desktop.
 * Pure scroll-snap, no JS. Extra coupons simply scroll into view. */
.vh-coupons {
  display: flex;
  gap: var(--vh-space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;          /* breathing room for the card shadow */
  /* Hide the scrollbar — the carousel is driven by swipe + dots. */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* legacy Edge */
}
.vh-coupons::-webkit-scrollbar { display: none; }  /* Chrome / Safari */
.vh-coupons > .vh-coupon {
  /* Mobile: one card per view, with a sliver of the next peeking. */
  flex: 0 0 calc(100% - var(--vh-space-6));
  scroll-snap-align: start;
}
@media (min-width: 760px) {
  .vh-coupons > .vh-coupon {
    /* Desktop: exactly two cards per view. */
    flex-basis: calc((100% - var(--vh-space-4)) / 2);
  }
}

/* Carousel dot indicators — JS adds one button per coupon when the
 * track overflows; empty / hidden when everything already fits. */
.vh-coupons__dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: var(--vh-space-3);
}
.vh-coupons__dots:empty,
.vh-coupons__dots[hidden] { display: none; }
.vh-coupons__dot {
  width: 7px; height: 7px; padding: 0;
  border: none; border-radius: 999px;
  background: var(--vh-border-strong, #c7c7c7);
  cursor: pointer;
  transition: width var(--vh-dur-2, 0.2s) var(--vh-ease, ease),
              background var(--vh-dur-2, 0.2s) var(--vh-ease, ease);
}
.vh-coupons__dot:hover { background: var(--vh-text-muted); }
.vh-coupons__dot.is-active {
  width: 20px;
  background: var(--vh-primary);
}

/* ============================================================
 * Coupon-ticket offer card
 * ========================================================== */

.vh-coupon {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 116px;
  align-items: stretch;
  border-radius: 22px;
  min-height: 220px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--vh-shadow-2);
  transition: transform var(--vh-dur-base) var(--vh-ease),
              box-shadow var(--vh-dur-base) var(--vh-ease);
}
.vh-coupon:hover {
  transform: translateY(-3px);
  box-shadow: var(--vh-shadow-3);
}

.vh-coupon__badge {
  position: absolute;
  top: var(--vh-space-3); right: calc(116px + var(--vh-space-3));
  padding: 5px 12px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-wide);
  text-transform: uppercase;
  z-index: 2;
}
.vh-coupon__badge--dark {
  background: rgba(31, 19, 0, 0.92);
  color: #fff8dc;
  border-color: rgba(31, 19, 0, 0.6);
}

.vh-coupon__main {
  padding: var(--vh-space-6) var(--vh-space-5) var(--vh-space-5);
  display: flex; flex-direction: column;
  gap: var(--vh-space-2);
  min-width: 0;
}

.vh-coupon__eyebrow {
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  opacity: 0.85;
}

.vh-coupon__title {
  margin: 0;
  display: flex; align-items: baseline; gap: 10px;
  line-height: 1;
}
.vh-coupon__big {
  font-size: clamp(2.8rem, 7vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--vh-secondary) 60%, white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(0,0,0,0.16);
}
.vh-coupon__unit {
  font-size: var(--vh-text-lg);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-tight);
  text-transform: lowercase;
  opacity: 0.95;
}

.vh-coupon__sub {
  margin: 0;
  font-size: var(--vh-text-sm);
  opacity: 0.92;
  max-width: 36ch;
  line-height: var(--vh-leading-relaxed);
}

.vh-coupon__chips {
  list-style: none; padding: 0; margin: var(--vh-space-1) 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.vh-coupon__chips li {
  padding: 4px 10px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: 0.01em;
}

.vh-coupon__cta {
  align-self: flex-start;
  margin-top: var(--vh-space-2);
  background: rgba(255,255,255,0.95);
  color: var(--vh-primary);
}
.vh-coupon__cta:hover { background: #fff; }

/* Perforated stub at the right with notched cuts */
.vh-coupon__stub {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: var(--vh-space-3) var(--vh-space-2);
  border-left: 2px dashed rgba(255,255,255,0.45);
  text-align: center;
}
.vh-coupon__stub::before,
.vh-coupon__stub::after {
  content: "";
  position: absolute;
  left: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--vh-bg);
  z-index: 3;
}
.vh-coupon__stub::before { top: -10px; }
.vh-coupon__stub::after  { bottom: -10px; }

.vh-coupon__code {
  font-size: var(--vh-text-2xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(255,255,255,0.20);
  border: 1px dashed rgba(255,255,255,0.55);
  border-radius: 8px;
  white-space: nowrap;
}
.vh-coupon__valid {
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  opacity: 0.85;
}

/* Brand variant — deep green gradient */
.vh-coupon--brand {
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in srgb, var(--vh-primary) 92%, white) 0%, transparent 60%),
    linear-gradient(135deg, var(--vh-primary) 0%, var(--vh-green-700, #143d24) 100%);
  color: var(--vh-text-on-brand);
}
.vh-coupon--brand .vh-coupon__cta { color: var(--vh-primary); }
.vh-coupon--brand .vh-coupon__unit { color: #fff; }

/* Gold variant — warm gold */
.vh-coupon--gold {
  background:
    radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--vh-secondary) 92%, white) 0%, transparent 60%),
    linear-gradient(135deg, var(--vh-secondary) 0%, color-mix(in srgb, var(--vh-secondary) 55%, #4a3712) 100%);
  color: #1f1300;
}
.vh-coupon--gold .vh-coupon__big {
  background: linear-gradient(180deg, #1f1300 0%, color-mix(in srgb, #1f1300 55%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.vh-coupon--gold .vh-coupon__chips li {
  background: rgba(31,19,0,0.14);
  border-color: rgba(31,19,0,0.28);
}
.vh-coupon--gold .vh-coupon__stub { border-left-color: rgba(31,19,0,0.45); }
.vh-coupon--gold .vh-coupon__code {
  background: rgba(31,19,0,0.14);
  border-color: rgba(31,19,0,0.45);
}
.vh-coupon--gold .vh-coupon__cta {
  background: #1f1300;
  color: #fff8dc;
}
.vh-coupon--gold .vh-coupon__cta:hover { background: #2c1c00; }

@media (max-width: 520px) {
  .vh-coupon { grid-template-columns: 1fr 92px; min-height: 200px; }
  .vh-coupon__main { padding: var(--vh-space-5) var(--vh-space-4) var(--vh-space-4); }
  .vh-coupon__badge { right: calc(92px + var(--vh-space-2)); }
  .vh-coupon__code { font-size: 9px; padding: 4px 6px; }
}

/* ============================================================
 * Perks strip (4-up below coupons)
 * ========================================================== */

.vh-perks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--vh-space-3);
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: 18px;
  padding: var(--vh-space-4);
  box-shadow: var(--vh-shadow-2);
}
@media (max-width: 1023px) { .vh-perks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px)  { .vh-perks { grid-template-columns: 1fr; padding: var(--vh-space-3); } }
/* Hide the perks block entirely on mobile (user request) — it's a polish
   strip that crowds the small-screen flow above the trending grid. */
@media (max-width: 759px)  { .vh-perks { display: none; } }

/* Health conditions strip sits right after the hero. On mobile the generic
   .vh-stack-2xl rhythm (40px) leaves too much air below the hero photo, so
   tighten it to 10px. */
@media (max-width: 759px) {
  .vh-stack-2xl > section[aria-label="Health conditions"] { margin-top: 10px; }
}

.vh-perk {
  display: flex; align-items: center; gap: var(--vh-space-3);
  padding: var(--vh-space-2);
}
.vh-perk__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;            /* flex (not inline-flex) avoids baseline drift */
  align-items: center;
  justify-content: center;
  background: var(--vh-primary-soft);
  color: var(--vh-primary);
  line-height: 0;           /* kills inline descender space */
}
.vh-perk__icon svg {
  width: 20px; height: 20px;
  display: block;           /* removes ~4px baseline gap on inline svgs */
  flex: 0 0 auto;
}
.vh-perk__icon[data-tone="gold"]   { background: color-mix(in srgb, var(--vh-secondary) 18%, var(--vh-bg-elevated)); color: var(--vh-gold-700, #6b4f10); }
.vh-perk__icon[data-tone="doctor"] { background: color-mix(in srgb, var(--vh-product-doctor) 18%, var(--vh-bg-elevated)); color: var(--vh-product-doctor); }
.vh-perk__icon[data-tone="lab"]    { background: color-mix(in srgb, var(--vh-product-lab) 18%, var(--vh-bg-elevated)); color: var(--vh-product-lab); }
.vh-perk strong {
  display: block;
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: var(--vh-tracking-tight);
  color: var(--vh-text);
}
.vh-perk span {
  display: block;
  font-size: var(--vh-text-xs);
  color: var(--vh-text-muted);
  margin-top: 1px;
}

.vh-offer {
  position: relative;
  border-radius: 24px;
  padding: var(--vh-space-6);
  overflow: hidden;
  isolation: isolate;
  min-height: 240px;
  display: flex; flex-direction: column;
  gap: var(--vh-space-2);
  box-shadow: var(--vh-shadow-2);
  transition:
    transform var(--vh-dur-base) var(--vh-ease),
    box-shadow var(--vh-dur-base) var(--vh-ease);
}
.vh-offer:hover {
  transform: translateY(-3px);
  box-shadow: var(--vh-shadow-3);
}

/* A subtle hairline highlight along the top edge */
.vh-offer::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.18);
  z-index: 2;
}

/* Decorative blobs */
.vh-offer__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.vh-offer__decor--ring {
  right: -90px; top: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: transparent;
  border: 38px solid rgba(255,255,255,0.10);
}
.vh-offer__decor--blur {
  left: -60px; bottom: -80px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.30), transparent 70%);
  filter: blur(8px);
}

/* All visible content stacks above the decor */
.vh-offer > *:not(.vh-offer__decor) { position: relative; z-index: 1; }

/* Floating badge top-right */
.vh-offer__badge {
  position: absolute;
  top: var(--vh-space-4); right: var(--vh-space-4);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-wide);
  text-transform: uppercase;
  z-index: 3;
}
.vh-offer__badge svg { width: 12px; height: 12px; }
.vh-offer__badge--dark {
  background: rgba(31, 19, 0, 0.92);
  color: #fff8dc;
  border-color: rgba(31, 19, 0, 0.6);
}

/* Eyebrow + headline */
.vh-offer__eyebrow {
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  opacity: 0.85;
  display: inline-block;
  padding-right: 90px; /* clear space for the badge */
}
.vh-offer__title {
  margin: 0;
  font-size: var(--vh-text-2xl);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-tight);
  line-height: 1.05;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
}
.vh-offer__price {
  font-size: clamp(2.6rem, 7vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, #ffffff 55%, transparent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.vh-offer__priceLabel {
  font-weight: var(--vh-weight-semibold);
  font-size: var(--vh-text-lg);
  letter-spacing: var(--vh-tracking-tight);
}
.vh-offer__sub {
  margin: 0;
  font-size: var(--vh-text-sm);
  opacity: 0.92;
  max-width: 36ch;
}

/* Feature list with check pills */
.vh-offer__list {
  list-style: none; padding: 0; margin: var(--vh-space-2) 0 0;
  display: grid; gap: 8px;
  font-size: var(--vh-text-sm);
}
.vh-offer__list li { display: flex; align-items: center; gap: 10px; }
.vh-offer__tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  font-size: 12px; font-weight: var(--vh-weight-bold);
  flex: 0 0 auto;
}
.vh-offer__fineprint {
  font-size: var(--vh-text-2xs);
  opacity: 0.75;
  margin-top: auto;
}

/* Family avatar stack */
.vh-offer__avatars {
  list-style: none; padding: 0; margin: var(--vh-space-2) 0 0;
  display: flex; align-items: center;
}
.vh-offer__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--vh-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-bold);
  border: 2px solid currentColor;
  margin-left: -10px;
  box-shadow: var(--vh-shadow-1);
}
.vh-offer__avatar:first-child { margin-left: 0; }
.vh-offer__avatar[data-i="2"] { background: #ffe9b3; color: var(--vh-gold-700, #6b4f10); }
.vh-offer__avatar[data-i="3"] { background: #d6f0e0; color: var(--vh-primary); }
.vh-offer__avatar--more {
  background: rgba(255,255,255,0.18);
  color: inherit;
  border-color: rgba(255,255,255,0.45);
}

.vh-offer__cta { margin-top: var(--vh-space-3); align-self: flex-start; }

/* === Brand variant (deep green) === */
.vh-offer--brand {
  background:
    radial-gradient(120% 80% at 0% 0%, color-mix(in srgb, var(--vh-primary) 92%, white) 0%, transparent 60%),
    linear-gradient(135deg, var(--vh-primary) 0%, var(--vh-green-700, #143d24) 100%);
  color: var(--vh-text-on-brand);
}
.vh-offer--brand .vh-offer__price {
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, var(--vh-secondary) 60%, white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* === Gold variant === */
.vh-offer--gold {
  background:
    radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--vh-secondary) 92%, white) 0%, transparent 60%),
    linear-gradient(135deg, var(--vh-secondary) 0%, color-mix(in srgb, var(--vh-secondary) 55%, #4a3712) 100%);
  color: #1f1300;
}
.vh-offer--gold .vh-offer__decor--ring  { border-color: rgba(31,19,0,0.10); }
.vh-offer--gold .vh-offer__decor--blur  { background: radial-gradient(closest-side, rgba(255,250,235,0.55), transparent 70%); }
.vh-offer--gold .vh-offer__tick {
  background: rgba(31, 19, 0, 0.18);
  border-color: rgba(31, 19, 0, 0.30);
  color: #1f1300;
}
.vh-offer--gold .vh-offer__price {
  background: linear-gradient(180deg, #1f1300 0%, color-mix(in srgb, #1f1300 55%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vh-offer--gold .vh-btn--primary { background: #1f1300; color: #fff8dc; }
.vh-offer--gold .vh-btn--primary:hover { background: #2c1c00; }
.vh-offer--gold .vh-offer__avatar {
  background: rgba(31,19,0,0.92);
  color: #fff8dc;
  border-color: #1f1300;
}
.vh-offer--gold .vh-offer__avatar[data-i="2"] { background: #fff8dc; color: #6b4f10; }
.vh-offer--gold .vh-offer__avatar[data-i="3"] { background: #2d6a44; color: #fff; }
.vh-offer--gold .vh-offer__avatar--more {
  background: rgba(31,19,0,0.12);
  color: #1f1300;
  border-color: rgba(31,19,0,0.35);
}

/* ---- Hero block (price + illustrative SVG side-by-side) ---- */
.vh-offer__hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--vh-space-3);
  margin-top: var(--vh-space-1);
}
.vh-offer__priceWrap { min-width: 0; }
.vh-offer__priceLine {
  margin: 0;
  display: flex; align-items: baseline; gap: 8px;
  line-height: 1;
}
.vh-offer__strike {
  display: inline-block;
  font-size: var(--vh-text-md);
  font-weight: var(--vh-weight-semibold);
  opacity: 0.7;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  margin-bottom: 4px;
}
.vh-offer__priceCaption {
  display: block;
  margin-top: 6px;
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-medium);
  opacity: 0.92;
  letter-spacing: var(--vh-tracking-tight);
}
.vh-offer__off {
  font-size: var(--vh-text-md);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  background: rgba(31,19,0,0.92);
  color: #fff8dc;
  border-radius: 8px;
  margin-bottom: 10px;
  text-shadow: none;
  -webkit-text-fill-color: #fff8dc;
}
.vh-offer--brand .vh-offer__off {
  background: var(--vh-secondary);
  color: #1f1300;
  -webkit-text-fill-color: #1f1300;
}

.vh-offer__art {
  width: 120px; height: 120px;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
  animation: vh-offer-float 6s ease-in-out infinite;
}
@keyframes vh-offer-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-6px) rotate(2deg); }
}
@media (max-width: 600px) {
  .vh-offer__art { width: 88px; height: 88px; }
}

/* ---- Pulsing badge ---- */
.vh-offer__badge--pulse { animation: vh-offer-badge-pulse 2.4s ease-out infinite; }
@keyframes vh-offer-badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(255,255,255,0);  }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0);     }
}
.vh-offer__badge--pulse.vh-offer__badge--dark {
  animation-name: vh-offer-badge-pulse-dark;
}
@keyframes vh-offer-badge-pulse-dark {
  0%   { box-shadow: 0 0 0 0 rgba(31,19,0,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(31,19,0,0);  }
  100% { box-shadow: 0 0 0 0 rgba(31,19,0,0);     }
}

/* ---- Trust strip in card foot ---- */
.vh-offer__trust {
  display: flex; flex-wrap: wrap; gap: var(--vh-space-3);
  margin-top: auto;
  padding-top: var(--vh-space-3);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.vh-offer--gold .vh-offer__trust { border-top-color: rgba(31,19,0,0.18); }
.vh-offer__trustItem {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  opacity: 0.92;
}
.vh-offer__trustItem svg { width: 14px; height: 14px; }

/* ---- Decorative blob animation ---- */
.vh-offer__decor--blur { animation: vh-offer-blob 9s ease-in-out infinite alternate; }
@keyframes vh-offer-blob {
  from { transform: translate(0, 0); }
  to   { transform: translate(20px, -10px); }
}

/* ============================================================
 * 3b. Perks strip below the offers
 * ========================================================== */

.vh-offer-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--vh-space-2);
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: 18px;
  padding: var(--vh-space-3) var(--vh-space-4);
  box-shadow: var(--vh-shadow-2);
}
@media (max-width: 760px) {
  .vh-offer-strip {
    grid-template-columns: 1fr;
    gap: var(--vh-space-2);
  }
}
.vh-offer-strip__item {
  display: flex; align-items: center; gap: var(--vh-space-3);
  padding: var(--vh-space-2) var(--vh-space-2);
  border-right: 1px solid var(--vh-border);
}
.vh-offer-strip__item:last-child { border-right: 0; }
@media (max-width: 760px) {
  .vh-offer-strip__item { border-right: 0; border-bottom: 1px solid var(--vh-border); }
  .vh-offer-strip__item:last-child { border-bottom: 0; }
}
.vh-offer-strip__icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--vh-primary-soft);
  color: var(--vh-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.vh-offer-strip__icon svg { width: 20px; height: 20px; }
.vh-offer-strip__item strong {
  display: block;
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: var(--vh-tracking-tight);
  color: var(--vh-text);
}
.vh-offer-strip__item span {
  display: block;
  font-size: var(--vh-text-xs);
  color: var(--vh-text-muted);
  margin-top: 1px;
}
.vh-offer-strip__item:nth-child(2) .vh-offer-strip__icon {
  background: color-mix(in srgb, var(--vh-secondary) 18%, var(--vh-bg-elevated));
  color: var(--vh-gold-700, #6b4f10);
}
.vh-offer-strip__item:nth-child(3) .vh-offer-strip__icon {
  background: color-mix(in srgb, var(--vh-product-doctor) 18%, var(--vh-bg-elevated));
  color: var(--vh-product-doctor);
}

/* ============================================================
 * 4. Product chips + grid
 * ========================================================== */

/* Chip row — every chip visible, one after another, right-aligned.
 * Wraps to a new line when the row runs out of width; never scrolls. */
.vh-chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: var(--vh-space-2);
  padding: 2px 0;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
}
.vh-chips > * {
  flex: 0 0 auto;
  white-space: nowrap;
}

.vh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--vh-space-3);
}
@media (min-width: 1024px) {
  .vh-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--vh-space-4); }
}

/* Product card — editorial restyle inspired by a profile-card layout.
 * A soft gradient banner (or the listing photo) caps the card; the
 * product type sits on it as a frosted pill; a circular category badge
 * overlaps the banner like an avatar; name + category + a rating/price
 * footer sit below. The per-type accent (set by [data-type=...] below)
 * drives the banner wash, the badge tint, the price, and the hover glow. */
.vh-pcard {
  --_accent: var(--_cat-color, var(--vh-primary));
  --_accent-glow: var(--vh-glow-primary);
  display: flex; flex-direction: column;
  background: var(--vh-card-bg);
  border: 1px solid var(--vh-card-border);
  border-radius: var(--vh-card-radius);
  padding: var(--vh-space-3);
  text-decoration: none;
  color: var(--vh-text);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--vh-dur-cinematic) var(--vh-ease-soft),
    box-shadow var(--vh-dur-cinematic) var(--vh-ease-soft),
    border-color var(--vh-dur-cinematic) var(--vh-ease-soft);
}

/* ::before — soft sheen wash, fades in on hover */
.vh-pcard::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--vh-grad-sheen);
  opacity: 0;
  transition: opacity var(--vh-dur-cinematic) var(--vh-ease-soft);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.vh-pcard > * { position: relative; z-index: 1; }

.vh-pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--_accent-glow);
  border-color: transparent;
}
.vh-pcard:hover::before { opacity: 1; }

/* --- Banner — gradient wash, or the real listing photo full-bleed --- */
.vh-pcard__banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--vh-radius-xl);
  overflow: hidden;
  background:
    radial-gradient(56% 62% at 80% 14%,
      color-mix(in srgb, white 55%, transparent) 0%, transparent 60%),
    radial-gradient(72% 80% at 12% 96%,
      color-mix(in srgb, black 22%, transparent) 0%, transparent 60%),
    linear-gradient(145deg,
      color-mix(in srgb, var(--_accent) 94%, white) 0%,
      color-mix(in srgb, var(--_accent) 68%, black) 100%);
}
.vh-pcard__banner__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--vh-dur-cinematic) var(--vh-ease-soft);
}
.vh-pcard:hover .vh-pcard__banner__img { transform: scale(1.06); }

/* Frosted product-type pill, floating top-left on the banner */
.vh-pcard .vh-pcard__chip {
  position: absolute;
  top: var(--vh-space-2); left: var(--vh-space-2);
  padding: 4px 10px;
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-bold);
  color: var(--_accent);
  background: color-mix(in srgb, var(--vh-bg-elevated) 84%, transparent);
  -webkit-backdrop-filter: blur(8px) saturate(1.5);
  backdrop-filter: blur(8px) saturate(1.5);
  border: 1px solid color-mix(in srgb, white 55%, transparent);
  box-shadow: 0 4px 12px -6px rgba(15, 22, 18, 0.45);
}

/* --- Circular category badge — overlaps the banner like an avatar --- */
.vh-pcard__badge {
  width: 46px; height: 46px;
  margin: -23px 0 0 var(--vh-space-1);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--vh-bg-elevated);
  color: var(--_accent);
  box-shadow:
    0 0 0 4px var(--vh-card-bg),
    0 8px 18px -8px rgba(15, 22, 18, 0.34);
}
.vh-pcard__badge svg { width: 22px; height: 22px; }

/* --- Title + category ---------------------------------------------- */
.vh-pcard__name {
  margin: var(--vh-space-2) 0 0;
  font-size: var(--vh-text-base);
  font-weight: var(--vh-weight-semibold);
  line-height: var(--vh-leading-snug);
  letter-spacing: var(--vh-tracking-tight);
  color: var(--vh-text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.vh-pcard__sub {
  margin-top: 2px;
  font-size: var(--vh-text-xs);
  color: var(--vh-text-muted);
}

/* --- Biomarker preview chips (Lab Test + Test Package cards) ------- */
.vh-pcard__bios {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: var(--vh-space-2);
}
.vh-pcard__bio {
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-semibold);
  padding: 2px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--_accent, var(--vh-primary)) 12%, var(--vh-bg-elevated));
  color: var(--_accent, var(--vh-primary));
  border: 1px solid color-mix(in srgb, var(--_accent, var(--vh-primary)) 22%, transparent);
  white-space: nowrap;
}
.vh-pcard__bio--more {
  background: var(--vh-bg-muted);
  color: var(--vh-text-muted);
  border-color: var(--vh-border);
}

/* --- Footer — rating (left) + price (right) ------------------------ */
.vh-pcard__foot {
  margin-top: auto;
  padding-top: var(--vh-space-3);
  display: flex; align-items: center;
  gap: var(--vh-space-2);
}
.vh-pcard__rating {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-text);
}
.vh-pcard__rating svg { width: 13px; height: 13px; color: var(--vh-secondary); }
.vh-pcard__rating__n { color: var(--vh-text-muted); font-weight: 400; }
.vh-pcard__price {
  margin-left: auto;
  font-weight: var(--vh-weight-bold);
  font-size: var(--vh-text-lg);
  color: var(--_accent);
  letter-spacing: -0.005em;
}
.vh-pcard__price .vh-mono { font-weight: var(--vh-weight-bold); }

.vh-pcard[data-type="LAB_TEST"]       { --_accent: var(--vh-product-lab);     --_accent-glow: var(--vh-glow-teal); }
.vh-pcard[data-type="TEST_PACKAGE"]   { --_accent: var(--vh-product-package); --_accent-glow: 0 14px 32px -10px color-mix(in srgb, var(--vh-product-package) 40%, transparent); }
.vh-pcard[data-type="DOCTOR_CONSULT"] { --_accent: var(--vh-product-doctor);  --_accent-glow: 0 14px 32px -10px color-mix(in srgb, var(--vh-product-doctor) 40%, transparent); }
.vh-pcard[data-type="PHYSIO_SESSION"] { --_accent: var(--vh-product-physio);  --_accent-glow: var(--vh-glow-coral); }
.vh-pcard[data-type="OTC_MEDICINE"]   { --_accent: var(--vh-product-otc);     --_accent-glow: 0 14px 32px -10px color-mix(in srgb, var(--vh-product-otc) 40%, transparent); }

/* ============================================================
 * 5. FAQs
 * ========================================================== */

.vh-faqs { display: grid; gap: var(--vh-space-2); }
.vh-faq {
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-md);
  overflow: hidden;
  transition: border-color var(--vh-dur-fast) var(--vh-ease);
}
.vh-faq:hover { border-color: var(--vh-border-strong); }
.vh-faq__q {
  width: 100%;
  background: transparent; border: 0;
  padding: var(--vh-space-3) var(--vh-space-4);
  text-align: left;
  font-family: inherit;
  font-size: var(--vh-text-md);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--vh-space-2);
}
.vh-faq__caret {
  font-size: var(--vh-text-md);
  color: var(--vh-primary);
  transition: transform var(--vh-dur-base) var(--vh-ease);
  flex: 0 0 auto;
}
.vh-faq__caret.is-open { transform: rotate(180deg); }
.vh-faq__a {
  padding: 0 var(--vh-space-4) var(--vh-space-4);
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-relaxed);
}

/* ============================================================
 * 6. Call-out band
 * ========================================================== */

.vh-callout {
  position: relative;
  border-radius: var(--vh-radius-xl);
  padding: var(--vh-space-6);
  background: linear-gradient(135deg, var(--vh-primary), var(--vh-green-700, #143d24));
  color: var(--vh-text-on-brand);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--vh-space-4);
  flex-wrap: wrap;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--vh-shadow-2);
}
.vh-callout::after {
  content: ""; position: absolute;
  right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(196, 156, 58, 0.18);
  z-index: -1;
}
.vh-callout__title {
  margin: var(--vh-space-1) 0 0;
  font-size: var(--vh-text-2xl);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-tight);
  line-height: var(--vh-leading-snug);
  color: #fff;
}
.vh-callout__sub {
  margin: var(--vh-space-2) 0 0;
  font-size: var(--vh-text-sm);
  opacity: 0.92;
  max-width: 60ch;
}

/* ============================================================
 * 7. How it works
 * ========================================================== */

.vh-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-3);
}
@media (min-width: 760px) {
  .vh-steps { grid-template-columns: repeat(3, 1fr); }
}
.vh-step {
  position: relative;
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-lg);
  padding: var(--vh-space-5) var(--vh-space-4) var(--vh-space-4);
  text-align: left;
  transition: border-color var(--vh-dur-base) var(--vh-ease), box-shadow var(--vh-dur-base) var(--vh-ease);
}
.vh-step:hover { border-color: var(--vh-border-strong); box-shadow: var(--vh-shadow-1); }
.vh-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vh-primary);
  color: var(--vh-text-on-brand);
  font-weight: var(--vh-weight-bold);
  font-size: var(--vh-text-md);
  margin-bottom: var(--vh-space-3);
}
.vh-step__title {
  margin: 0 0 var(--vh-space-1);
  font-size: var(--vh-text-md);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: var(--vh-tracking-tight);
}
.vh-step__sub {
  margin: 0;
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-relaxed);
}

/* ============================================================
 * 8. SEO sitemap
 * ========================================================== */

.vh-sitemap {
  display: grid;
  gap: var(--vh-space-4);
  grid-template-columns: 1fr 1fr;
  padding: var(--vh-space-5) 0;
  border-top: 1px solid var(--vh-border);
}
@media (min-width: 760px) {
  .vh-sitemap { grid-template-columns: repeat(4, 1fr); }
}
.vh-sitemap__col h3 {
  margin: 0 0 var(--vh-space-2);
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  color: var(--vh-text);
}
.vh-sitemap__col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.vh-sitemap__col a {
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  text-decoration: none;
  transition: color var(--vh-dur-fast) var(--vh-ease);
}
.vh-sitemap__col a:hover { color: var(--vh-primary); }

/* ============================================================
 * AI page tile grid
 * ========================================================== */

.vh-aigrid {
  display: grid; gap: var(--vh-space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .vh-aigrid { grid-template-columns: repeat(3, 1fr); }
}
.vh-aitile {
  display: block;
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-lg);
  padding: var(--vh-space-5) var(--vh-space-4);
  text-decoration: none;
  color: var(--vh-text);
  transition: border-color var(--vh-dur-base) var(--vh-ease),
              box-shadow var(--vh-dur-base) var(--vh-ease),
              transform var(--vh-dur-base) var(--vh-ease);
}
.vh-aitile:hover {
  border-color: var(--vh-primary);
  box-shadow: var(--vh-shadow-2);
  transform: translateY(-2px);
}
.vh-aitile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--vh-radius-md);
  background: var(--vh-primary-soft);
  color: var(--vh-primary);
  margin-bottom: var(--vh-space-3);
}
.vh-aitile__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.vh-aitile__icon[data-tone="primary"] { background: var(--vh-primary-soft); color: var(--vh-primary); }
.vh-aitile__icon[data-tone="teal"]    { background: color-mix(in srgb, var(--vh-tertiary-teal) 14%, var(--vh-bg-elevated)); color: var(--vh-tertiary-teal); }
.vh-aitile__icon[data-tone="gold"]    { background: var(--vh-secondary-soft); color: var(--vh-gold-700, #876a27); }
.vh-aitile__icon[data-tone="coral"]   { background: color-mix(in srgb, var(--vh-tertiary-coral) 14%, var(--vh-bg-elevated)); color: var(--vh-tertiary-coral); }
.vh-aitile h3 {
  margin: 0 0 var(--vh-space-1);
  font-size: var(--vh-text-md);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: var(--vh-tracking-tight);
}
.vh-aitile p {
  margin: 0;
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-relaxed);
}
.vh-aitile__more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: var(--vh-space-3);
  font-size: var(--vh-text-xs);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-primary);
}
.vh-aitile__more svg { transition: transform var(--vh-dur-fast) var(--vh-ease); }
.vh-aitile:hover .vh-aitile__more svg { transform: translateX(2px); }

/* ============================================================
 * .vh-auth — sign-in / OTP-request page (2-col at desktop)
 * ========================================================== */
.vh-auth {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-phi-3);
  align-items: stretch;
  min-height: calc(100vh - 220px);
}
@media (min-width: 1024px) {
  .vh-auth {
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: var(--vh-space-phi-4);
    align-items: center;
  }
}
.vh-auth__form {
  padding: var(--vh-space-phi-3) var(--vh-space-phi-2);
  display: flex; flex-direction: column;
  gap: var(--vh-space-3);
}
.vh-auth__head { display: flex; flex-direction: column; gap: 4px; }
.vh-auth__title {
  margin: 0;
  font-size: var(--vh-text-2xl);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-display);
  line-height: 1.05;
}
@media (min-width: 760px) { .vh-auth__title { font-size: var(--vh-text-display); } }
.vh-auth__sub {
  margin: 0;
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-relaxed);
}

/* Phone input with country-code prefix */
.vh-auth__phone {
  display: flex; align-items: stretch;
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-md);
  overflow: hidden;
  transition: border-color var(--vh-dur-fast) var(--vh-ease),
              box-shadow   var(--vh-dur-fast) var(--vh-ease);
}
.vh-auth__phone:focus-within {
  border-color: var(--vh-primary);
  box-shadow: 0 0 0 3px var(--vh-focus);
}
.vh-auth__phone__cc {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 var(--vh-space-3);
  background: var(--vh-bg-muted);
  border-right: 1px solid var(--vh-border);
  font-weight: var(--vh-weight-bold);
  color: var(--vh-text);
  font-size: var(--vh-text-md);
  letter-spacing: -0.01em;
}
.vh-auth__phone__input {
  flex: 1; min-width: 0;
  border: 0; border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: var(--vh-space-3) var(--vh-space-3);
}
.vh-auth__phone__input:focus { box-shadow: none; }

.vh-auth__perks {
  list-style: none; padding: 0; margin: var(--vh-space-2) 0 0;
  display: grid; gap: 8px;
  font-size: var(--vh-text-sm);
}
.vh-auth__perks li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--vh-bg-muted);
  border-radius: var(--vh-radius-md);
  color: var(--vh-text);
}
.vh-auth__perks svg { color: var(--vh-success); flex: 0 0 auto; }
.vh-auth__perks span strong { font-weight: var(--vh-weight-semibold); }
.vh-auth__perks span { color: var(--vh-text-muted); font-size: var(--vh-text-xs); }
.vh-auth__perks li > span { display: flex; flex-direction: column; gap: 2px; }
.vh-auth__perks li > span > strong { color: var(--vh-text); font-size: var(--vh-text-sm); }

.vh-auth__legal {
  margin: var(--vh-space-2) 0 0;
  text-align: center;
  font-size: var(--vh-text-2xs);
  color: var(--vh-text-subtle);
}
.vh-auth__legal a { color: var(--vh-primary); }

/* Right-side hero panel — mobile-hidden, desktop-shown. */
.vh-auth__aside {
  display: none;
  position: relative;
  padding: var(--vh-space-phi-4) var(--vh-space-phi-3);
  border-radius: var(--vh-radius-3xl);
  overflow: hidden;
  isolation: isolate;
  background: var(--vh-grad-brand);
  color: var(--vh-text-on-brand);
  flex-direction: column;
  gap: var(--vh-space-3);
  min-height: 540px;
}
@media (min-width: 1024px) { .vh-auth__aside { display: flex; } }

.vh-auth__aside__halo {
  position: absolute; right: -100px; top: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--vh-secondary) 40%, transparent), transparent);
  z-index: -1; pointer-events: none;
  animation: vh-aurora 22s ease-in-out infinite alternate;
}
.vh-auth__aside__title {
  margin: 0;
  font-size: var(--vh-text-display);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-display);
  line-height: 1.04;
}
.vh-auth__aside__accent {
  background: linear-gradient(135deg, var(--vh-secondary) 0%, #fff8dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vh-auth__aside__bullets {
  list-style: none; padding: 0; margin: var(--vh-space-3) 0 0;
  display: grid; gap: var(--vh-space-3);
}
.vh-auth__aside__bullets li {
  display: grid; grid-template-columns: 36px 1fr; gap: var(--vh-space-3);
  align-items: center;
}
.vh-auth__aside__icon {
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
}
.vh-auth__aside__bullets strong { display: block; font-size: var(--vh-text-md); font-weight: var(--vh-weight-bold); }
.vh-auth__aside__bullets span  { display: block; font-size: var(--vh-text-xs); color: rgba(255,255,255,0.78); margin-top: 2px; }
.vh-auth__aside__art {
  position: absolute; right: -40px; bottom: -40px;
  width: 280px; opacity: 0.55;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.30));
  animation: vh-pdp-art-drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.vh-auth__aside__art img { width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
  .vh-auth__aside__halo,
  .vh-auth__aside__art { animation: none; }
}

/* ============================================================
 * Empty state
 * ========================================================== */

.vh-empty {
  text-align: center;
  padding: var(--vh-space-6) var(--vh-space-4);
  color: var(--vh-text-muted);
  background: var(--vh-bg-elevated);
  border: 1px dashed var(--vh-border-strong);
  border-radius: var(--vh-radius-lg);
}
.vh-empty__icon {
  width: 48px; height: 48px;
  margin: 0 auto var(--vh-space-3);
  border-radius: 50%;
  background: var(--vh-primary-soft);
  color: var(--vh-primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.vh-empty__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.vh-empty__title { font-size: var(--vh-text-base); font-weight: var(--vh-weight-semibold); color: var(--vh-text); margin: 0 0 var(--vh-space-1); }
.vh-empty__sub { font-size: var(--vh-text-sm); color: var(--vh-text-muted); margin: 0; }

/* ============================================================
 * Sponsor card (preserved from previous design)
 * ========================================================== */

.vh-sponsor {
  display: block;
  border-radius: var(--vh-radius-lg);
  padding: var(--vh-space-5) var(--vh-space-6);
  text-decoration: none;
  box-shadow: var(--vh-shadow-1);
}
.vh-sponsor__brand {
  display: block;
  font-size: var(--vh-text-2xs);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  font-weight: var(--vh-weight-bold);
  opacity: 0.85;
  margin-bottom: 4px;
}
.vh-sponsor__head {
  display: block;
  font-size: var(--vh-text-lg);
  letter-spacing: var(--vh-tracking-tight);
  line-height: var(--vh-leading-snug);
}
.vh-sponsor__sub {
  display: block;
  font-size: var(--vh-text-sm);
  margin-top: 4px;
  opacity: 0.92;
}

/* ============================================================
 * Why Vividh — explainer
 * ========================================================== */

.vh-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-3);
}
@media (min-width: 760px) {
  .vh-why__grid { grid-template-columns: repeat(3, 1fr); }
}
.vh-why__card {
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-lg);
  padding: var(--vh-space-5) var(--vh-space-4) var(--vh-space-4);
  transition: border-color var(--vh-dur-base) var(--vh-ease),
              box-shadow var(--vh-dur-base) var(--vh-ease),
              transform var(--vh-dur-base) var(--vh-ease);
}
.vh-why__card:hover {
  border-color: var(--vh-border-strong);
  box-shadow: var(--vh-shadow-2);
  transform: translateY(-2px);
}
.vh-why__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--vh-radius-md);
  background: color-mix(in srgb, var(--vh-primary) 14%, var(--vh-bg-elevated));
  color: var(--vh-primary);
  margin-bottom: var(--vh-space-3);
}
.vh-why__icon svg { width: 24px; height: 24px; }
.vh-why__icon[data-tone="gold"] {
  background: color-mix(in srgb, var(--vh-secondary) 16%, var(--vh-bg-elevated));
  color: var(--vh-secondary);
}
.vh-why__icon[data-tone="teal"] {
  background: color-mix(in srgb, var(--vh-tertiary-teal) 16%, var(--vh-bg-elevated));
  color: var(--vh-tertiary-teal);
}
.vh-why__title {
  margin: 0 0 var(--vh-space-1);
  font-size: var(--vh-text-md);
  font-weight: var(--vh-weight-semibold);
  letter-spacing: var(--vh-tracking-tight);
  color: var(--vh-text);
}
.vh-why__sub {
  margin: 0;
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-base);
}

/* ============================================================
 * Testimonials
 * ========================================================== */

.vh-tlist {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-3);
}
@media (min-width: 760px) {
  .vh-tlist { grid-template-columns: repeat(3, 1fr); }
}
.vh-tcard {
  display: flex; flex-direction: column;
  gap: var(--vh-space-3);
  background: var(--vh-bg-elevated);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius-lg);
  padding: var(--vh-space-4);
  transition: border-color var(--vh-dur-base) var(--vh-ease),
              box-shadow var(--vh-dur-base) var(--vh-ease);
}
.vh-tcard:hover {
  border-color: var(--vh-border-strong);
  box-shadow: var(--vh-shadow-1);
}
.vh-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--vh-secondary);
}
.vh-star { width: 15px; height: 15px; }
.vh-star path { fill: currentColor; }
.vh-tcard__quote {
  margin: 0;
  font-size: var(--vh-text-sm);
  line-height: var(--vh-leading-base);
  color: var(--vh-text);
}
.vh-tcard__foot {
  display: flex; align-items: center;
  gap: var(--vh-space-2);
  margin-top: auto;
  padding-top: var(--vh-space-3);
  border-top: 1px solid var(--vh-border);
}
.vh-tcard__avatar {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vh-primary-soft);
  color: var(--vh-primary);
  font-weight: var(--vh-weight-bold);
  font-size: var(--vh-text-sm);
}
.vh-tcard__who {
  display: flex; flex-direction: column;
  min-width: 0;
}
.vh-tcard__name {
  font-size: var(--vh-text-sm);
  font-weight: var(--vh-weight-semibold);
  color: var(--vh-text);
}
.vh-tcard__meta {
  font-size: var(--vh-text-2xs);
  color: var(--vh-text-subtle);
}

/* ============================================================
 * Benefit split blocks — alternating text / image
 * ========================================================== */

.vh-splits {
  display: grid;
  gap: var(--vh-space-8);
}
.vh-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vh-space-4);
  align-items: center;
}
@media (min-width: 760px) {
  .vh-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--vh-space-8);
  }
  .vh-split--reverse .vh-split__media { order: -1; }
}
.vh-split__eyebrow {
  display: block;
  margin-bottom: var(--vh-space-2);
}
.vh-split__title {
  margin: 0;
  font-size: var(--vh-text-xl);
  font-weight: var(--vh-weight-bold);
  letter-spacing: var(--vh-tracking-tight);
  line-height: var(--vh-leading-snug);
  color: var(--vh-text);
}
.vh-split__body {
  margin: var(--vh-space-3) 0 0;
  font-size: var(--vh-text-sm);
  color: var(--vh-text-muted);
  line-height: var(--vh-leading-base);
}
.vh-split__points {
  list-style: none;
  margin: var(--vh-space-4) 0 0;
  padding: 0;
  display: grid;
  gap: var(--vh-space-2);
}
.vh-split__points li {
  display: flex;
  align-items: center;
  gap: var(--vh-space-2);
  font-size: var(--vh-text-sm);
  color: var(--vh-text);
}
.vh-split__points li svg {
  flex: none;
  color: var(--vh-primary);
}
.vh-split__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--vh-space-2);
  aspect-ratio: 4 / 3;
  border-radius: var(--vh-radius-xl);
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--vh-primary) 12%, var(--vh-bg-elevated)),
    color-mix(in srgb, var(--vh-secondary) 12%, var(--vh-bg-elevated)));
  border: 1px solid var(--vh-border);
  overflow: hidden;
}
/* Real photo filling the media frame — edge to edge, clipped to the radius. */
.vh-split__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vh-split__media-icon {
  display: inline-flex;
  color: var(--vh-primary);
  opacity: 0.5;
}
.vh-split__media-label {
  font-size: var(--vh-text-2xs);
  font-weight: var(--vh-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--vh-tracking-wide);
  color: var(--vh-text-subtle);
}

/* ============================================================
 * Narrow-section utility — 75% max-width, centered horizontally.
 * Used on How-it-works, The Vividh experience, A closer look, FAQ.
 * ========================================================== */
.vh-section--narrow {
  max-width: 75%;
  margin-inline: auto;
}
