/* ============================================================================
   SnoopTool Store
   Direction: "warm editorial print-shop" — cream paper, deep indigo ink, a
   burnt-orange retail accent, Sora headings with an Instrument Serif italic
   price signature, product cards framed like prints, thumb-reach buy bar.
   Mobile-first. Every token below is contrast-checked against its own ground.
   ========================================================================== */

/* --- guard: a component rule must never outrank the hidden attribute ------ */
[hidden] { display: none !important; }

:root {
  /* surfaces */
  --paper:      #f2f0ec;
  --paper-deep: #e8e4dc;
  --card:       #fffdf9;
  --card-2:     #faf7f1;
  --ink:        #12152e;   /* 15.9:1 on paper */
  --ink-soft:   #1b1f3d;

  /* text */
  --body:       #2a2d47;   /* 11.2:1 on paper */
  --muted:      #5c6079;   /* 5.6:1  on paper */
  --on-ink:     #f4f2ee;
  --on-ink-dim: #b2b6cc;   /* 7.4:1  on --ink */

  /* lines — tinted warm, never neutral grey */
  --line:       #e2ded6;
  --line-2:     #d2ccc0;

  /* brand */
  --indigo:      #3a4796;  /* 8.0:1 white-on-indigo */
  --indigo-deep: #2a3572;
  --indigo-tint: #ecedf7;
  --warm:        #c2703a;  /* 3.43:1 — LARGE TEXT / kickers only */
  --warm-btn:    #a95c2c;  /* 4.94:1 — buttons, small text, links */
  --warm-tint:   #fbeee1;
  --gold:        #edaa48;  /* on --ink only: 8.1:1 */
  --sale:        #9e2018;  /* 6.4:1 on --sale-tint */
  --sale-tint:   #fbe7e4;
  --ok:          #1a6244;  /* 5.9:1 on paper */
  --ok-tint:     #e2f0e8;

  /* radius — a point of view, not one value everywhere */
  --r-xs: 4px;    /* chips, inputs, tags */
  --r-sm: 8px;
  --r-md: 14px;   /* product cards */
  --r-lg: 22px;   /* panels, sheets */
  --r-pill: 999px;/* status pills only */

  /* elevation: ambient + key, both tinted with the ink hue */
  --e1: 0 1px 2px rgba(18,21,46,.05);
  --e2: 0 1px 2px rgba(18,21,46,.05), 0 3px 8px rgba(18,21,46,.06);
  --e3: 0 2px 4px rgba(18,21,46,.06), 0 8px 20px rgba(18,21,46,.09);
  --e4: 0 4px 8px rgba(18,21,46,.07), 0 18px 40px rgba(18,21,46,.13);
  --e5: 0 8px 16px rgba(18,21,46,.10), 0 32px 64px rgba(18,21,46,.20);

  /* space */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  /* type */
  --f-display: 'Sora', 'Segoe UI', sans-serif;
  --f-serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter', 'Segoe UI', sans-serif;

  /* motion */
  --dur-1: 120ms; --dur-2: 200ms; --dur-3: 340ms; --dur-4: 620ms;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);

  --shell: 1180px;
  --bar-h: 68px;   /* sticky mobile buy bar — pages reserve this */
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background-color: var(--paper);
  /* atmosphere, not a flat void: two soft tints + a paper grain */
  background-image:
    radial-gradient(58rem 34rem at 88% -8%, rgba(58,71,150,.09), transparent 62%),
    radial-gradient(46rem 30rem at -6% 4%, rgba(194,112,58,.10), transparent 58%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.14; letter-spacing: -.022em; margin: 0; }
p { margin: 0 0 var(--s4); }
a { color: var(--warm-btn); text-underline-offset: 3px; }
a:hover { color: var(--indigo-deep); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--s4); }
@media (min-width: 900px) { .shell { padding: 0 var(--s5); } }

.tnum { font-variant-numeric: tabular-nums; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.kicker {
  font-family: var(--f-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--warm-btn);
  margin: 0 0 var(--s3);
}

/* ============================================================== header ==== */

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,241,.88);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur-2) var(--ease);
}
.hdr.stuck { box-shadow: var(--e2); }
.hdr-in { display: flex; align-items: center; gap: var(--s3); height: 60px; }

.brand { display: inline-flex; align-items: baseline; gap: 7px; text-decoration: none; flex: 0 0 auto; }
.brand b {
  font-family: var(--f-display); font-weight: 800; font-size: 19px;
  letter-spacing: -.03em; color: var(--ink);
}
.brand span {
  font-family: var(--f-display); font-weight: 700; font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--warm-btn);
  border: 1px solid currentColor; border-radius: var(--r-xs); padding: 2px 5px;
}

.hdr-search { flex: 1 1 auto; min-width: 0; position: relative; }
.hdr-search input {
  width: 100%; height: 40px;
  padding: 0 var(--s4) 0 38px;
  font: 400 16px/1 var(--f-body);   /* 16px stops iOS zoom-on-focus */
  color: var(--body);
  background: var(--card);
  border: 1px solid var(--line-2); border-radius: var(--r-xs);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.hdr-search input::placeholder { color: var(--muted); }
.hdr-search input:hover { border-color: var(--warm); }
.hdr-search input:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint); outline: none; }
.hdr-search svg { position: absolute; left: 12px; top: 11px; width: 18px; height: 18px; color: var(--muted); pointer-events: none; }

.hdr-help {
  flex: 0 0 auto; display: none; align-items: center; gap: 6px;
  font: 600 14px/1 var(--f-body); color: var(--body); text-decoration: none;
  padding: 9px 12px; border-radius: var(--r-xs);
  transition: background var(--dur-1) var(--ease);
}
.hdr-help:hover { background: var(--warm-tint); color: var(--ink); }
@media (min-width: 720px) { .hdr-help { display: inline-flex; } }

/* =============================================================== buttons == */

.btn {
  --btn-bg: var(--indigo); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 var(--s5);
  font: 700 16px/1 var(--f-display); letter-spacing: -.01em;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd); border-radius: var(--r-sm);
  text-decoration: none; cursor: pointer;
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease), background var(--dur-1) var(--ease);
  box-shadow: var(--e2);
}
.btn:hover  { --btn-bg: var(--indigo-deep); color: #fff; box-shadow: var(--e3); transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.985); box-shadow: var(--e1); }
.btn[disabled], .btn[aria-disabled="true"] {
  --btn-bg: var(--paper-deep); --btn-fg: var(--muted);
  cursor: not-allowed; box-shadow: none; transform: none;
}
.btn-buy   { --btn-bg: var(--warm-btn); }
.btn-buy:hover { --btn-bg: #8f4c22; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); box-shadow: none; }
.btn-ghost:hover { --btn-bg: var(--card); --btn-bd: var(--warm); color: var(--ink); box-shadow: var(--e1); }
.btn-lg    { min-height: 56px; font-size: 17px; padding: 0 var(--s6); width: 100%; }
.btn-sm    { min-height: 38px; font-size: 14px; padding: 0 var(--s4); }
@media (min-width: 640px) { .btn-lg { width: auto; } }

.btn .spin { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================== hero == */

.hero { padding: var(--s6) 0 var(--s5); }
.hero-grid { display: grid; gap: var(--s5); }
@media (min-width: 940px) {
  .hero { padding: var(--s8) 0 var(--s6); }
  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; gap: var(--s8); }
}

.hero h1 { font-size: clamp(32px, 8.5vw, 60px); font-weight: 800; }
.hero h1 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  color: var(--warm-btn); letter-spacing: -.01em;
}
.hero-sub { font-size: clamp(16px, 4.2vw, 19px); color: var(--muted); margin: var(--s4) 0 var(--s5); max-width: 46ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s3); }

.trust { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s5); margin-top: var(--s5); padding: 0; list-style: none; }
.trust li { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--body); }
.trust svg { width: 17px; height: 17px; color: var(--ok); flex: 0 0 auto; }

/* offer panel — the one dark surface on the page, so it reads as "the deal" */
.offer {
  position: relative; overflow: hidden;
  background: var(--ink);
  background-image: radial-gradient(30rem 20rem at 110% -20%, rgba(237,170,72,.28), transparent 60%);
  color: var(--on-ink);
  border-radius: var(--r-lg); padding: var(--s6) var(--s5);
  box-shadow: var(--e4);
}
.offer::after {
  content: ""; position: absolute; inset: 6px; border: 1px solid rgba(237,170,72,.28);
  border-radius: calc(var(--r-lg) - 6px); pointer-events: none;
}
.offer .kicker { color: var(--gold); }
.offer h2 { color: var(--on-ink); font-size: clamp(21px, 5.6vw, 27px); }
.offer p { color: var(--on-ink-dim); margin: var(--s3) 0 var(--s5); font-size: 15px; }
.offer-price { display: flex; align-items: baseline; gap: var(--s3); margin-bottom: var(--s5); }
.offer-price b {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: clamp(44px, 12vw, 62px); line-height: .9; color: var(--gold);
}
.offer-price s { color: var(--on-ink-dim); font-size: 18px; }
.offer-price .off {
  font: 700 12px/1 var(--f-display); letter-spacing: .08em; text-transform: uppercase;
  background: var(--gold); color: #2a1c05; padding: 5px 9px; border-radius: var(--r-xs);
}
.offer .btn { width: 100%; --btn-bg: var(--gold); --btn-fg: #2a1c05; }
.offer .btn:hover { --btn-bg: #f6bc65; --btn-fg: #2a1c05; }
.offer-note { margin: var(--s3) 0 0; font-size: 13px; color: var(--on-ink-dim); text-align: center; }

/* ============================================================== sections == */

.sec { padding: var(--s6) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s5); }
.sec-head h2 { font-size: clamp(23px, 5.5vw, 32px); font-weight: 700; }
.sec-head p  { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.sec-head a  { font: 600 14px/1 var(--f-body); white-space: nowrap; flex: 0 0 auto; }

/* category rail — horizontal scroll on mobile, wraps on desktop */
.chips { display: flex; gap: var(--s2); overflow-x: auto; padding: 2px 0 var(--s4); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chips::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .chips { flex-wrap: wrap; overflow: visible; } }
.chip {
  flex: 0 0 auto;
  font: 600 14px/1 var(--f-body); color: var(--body); text-decoration: none;
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-xs);
  padding: 10px 15px; white-space: nowrap;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.chip:hover { border-color: var(--warm); background: var(--warm-tint); color: var(--ink); }
.chip[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }

/* ============================================================ product grid */

.grid { display: grid; gap: var(--s3); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 620px)  { .grid { gap: var(--s4); grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid { gap: var(--s5); grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--e1);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.card:hover, .card:focus-within { transform: translateY(-3px); box-shadow: var(--e3); border-color: var(--line-2); }

.card-art {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--card-2) linear-gradient(160deg, rgba(58,71,150,.07), rgba(194,112,58,.09));
  border-bottom: 1px solid var(--line);
}
.card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-4) var(--ease-out); }
.card:hover .card-art img { transform: scale(1.045); }
.card-art .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.card-art .ph span {
  font-family: var(--f-serif); font-style: italic; font-size: 30px; color: var(--indigo); opacity: .32;
}

.badge {
  position: absolute; top: 9px; left: 9px; z-index: 2;
  font: 700 10px/1 var(--f-display); letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: var(--gold);
  padding: 6px 8px; border-radius: var(--r-xs);
}
.badge-off { left: auto; right: 9px; background: var(--sale-tint); color: var(--sale); }

.card-body { display: flex; flex-direction: column; flex: 1 1 auto; padding: var(--s3); gap: 5px; }
@media (min-width: 620px) { .card-body { padding: var(--s4); } }
.card-cat { font: 600 11px/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: var(--warm-btn); }
.card-title { font-size: 15px; font-weight: 700; line-height: 1.28; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-title a::after { content: ""; position: absolute; inset: 0; }  /* whole card is the link target */
.card-title a:hover { color: var(--indigo-deep); }
.card-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.card-meta .star { color: var(--warm-btn); font-weight: 700; }

.card-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); margin-top: auto; padding-top: var(--s3); }
.price { display: flex; align-items: baseline; gap: 6px; }
.price b { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--ink); }
.price s { font-size: 13px; color: var(--muted); }
.card .btn-sm { position: relative; z-index: 3; }

/* skeleton + empty + error states */
.sk { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.sk-art { aspect-ratio: 4/5; background: linear-gradient(100deg, var(--card-2) 30%, var(--paper-deep) 50%, var(--card-2) 70%); background-size: 300% 100%; animation: shim 1.4s ease-in-out infinite; }
.sk-line { height: 11px; margin: 12px 14px; border-radius: var(--r-xs); background: var(--paper-deep); }
.sk-line.s { width: 45%; }
@keyframes shim { to { background-position: -300% 0; } }

.empty {
  grid-column: 1 / -1; text-align: center;
  background: var(--card); border: 1px dashed var(--line-2); border-radius: var(--r-lg);
  padding: var(--s7) var(--s5);
}
.empty h3 { font-size: 20px; margin-bottom: var(--s2); }
.empty p { color: var(--muted); max-width: 42ch; margin: 0 auto var(--s5); }

/* ============================================================ product page */

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); padding: var(--s4) 0 0; margin: 0; list-style: none; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--warm-btn); text-decoration: underline; }
.crumbs li[aria-current] { color: var(--body); font-weight: 600; }

.pd { display: grid; gap: var(--s5); padding: var(--s4) 0 var(--s6); }
@media (min-width: 940px) { .pd { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: var(--s8); align-items: start; } }

.gal { position: relative; }
.gal-main {
  aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--card-2) linear-gradient(160deg, rgba(58,71,150,.08), rgba(194,112,58,.10));
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--e3);
}
@media (min-width: 620px) { .gal-main { aspect-ratio: 1 / 1; } }
.gal-main img { width: 100%; height: 100%; object-fit: contain; }
.gal-main .ph { height: 100%; display: grid; place-items: center; font-family: var(--f-serif); font-style: italic; font-size: 44px; color: var(--indigo); opacity: .3; }
.gal-thumbs { display: flex; gap: var(--s2); margin-top: var(--s3); overflow-x: auto; scrollbar-width: none; }
.gal-thumbs::-webkit-scrollbar { display: none; }
.gal-thumbs button {
  flex: 0 0 66px; width: 66px; height: 66px; padding: 0; cursor: pointer;
  background: var(--card); border: 1.5px solid var(--line-2); border-radius: var(--r-sm); overflow: hidden;
  transition: border-color var(--dur-1) var(--ease);
}
.gal-thumbs button:hover { border-color: var(--warm); }
.gal-thumbs button[aria-current="true"] { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint); }
.gal-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd h1 { font-size: clamp(25px, 6.4vw, 38px); font-weight: 800; margin-bottom: var(--s3); }
.pd-sub { color: var(--muted); font-size: 16px; margin-bottom: var(--s4); }

.pd-rate { display: flex; align-items: center; gap: var(--s2); font-size: 14px; color: var(--body); margin-bottom: var(--s5); }
.pd-rate b { color: var(--ink); }
.pd-rate .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }

.buybox {
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: var(--s5); box-shadow: var(--e2);
}
.buybox .price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s2); }
.buybox .price-row b { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 46px; line-height: .95; color: var(--ink); }
.buybox .price-row s { font-size: 18px; color: var(--muted); }
.buybox .price-row .off { font: 700 12px/1 var(--f-display); letter-spacing: .06em; text-transform: uppercase; background: var(--sale-tint); color: var(--sale); padding: 6px 9px; border-radius: var(--r-xs); }
.buybox .tax { font-size: 13px; color: var(--muted); margin-bottom: var(--s5); }
.buybox .btn { width: 100%; }
.buybox .after { display: flex; align-items: center; justify-content: center; gap: 7px; margin: var(--s3) 0 0; font-size: 13px; color: var(--muted); }
.buybox .after svg { width: 15px; height: 15px; color: var(--ok); }

.incl { list-style: none; padding: 0; margin: var(--s5) 0 0; display: grid; gap: 11px; }
.incl li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 15px; color: var(--body); }
.incl svg { width: 18px; height: 18px; color: var(--ok); margin-top: 3px; }

.specs { width: 100%; border-collapse: collapse; margin-top: var(--s4); font-size: 14px; }
.specs th, .specs td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.specs th { width: 42%; font-weight: 600; color: var(--muted); }
.specs td { color: var(--body); font-variant-numeric: tabular-nums; }

.prose { max-width: 68ch; color: var(--body); }
.prose h3 { font-size: 19px; margin: var(--s5) 0 var(--s3); }
.prose ul { padding-left: 1.15em; }
.prose li { margin-bottom: 7px; }

/* accordion */
.faq { display: grid; gap: var(--s2); max-width: 72ch; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.faq details[open] { border-color: var(--line-2); box-shadow: var(--e2); }
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s4);
  font: 600 15px/1.45 var(--f-body); color: var(--ink);
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 auto; font: 400 22px/1 var(--f-display); color: var(--warm-btn);
  transition: transform var(--dur-2) var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { color: var(--indigo-deep); }
.faq .ans { padding: 0 var(--s4) var(--s4); color: var(--body); font-size: 15px; }
.faq .ans p:last-child { margin-bottom: 0; }

/* ------------------------------------------- sticky mobile buy bar -------- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; gap: var(--s4);
  padding: 11px var(--s4) calc(11px + env(safe-area-inset-bottom));
  background: rgba(255,253,249,.96);
  backdrop-filter: saturate(1.4) blur(14px);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -6px 24px rgba(18,21,46,.10);
  transform: translateY(110%);
  transition: transform var(--dur-3) var(--ease-out);
}
.buybar.on { transform: translateY(0); }
.buybar .bb-price { flex: 0 0 auto; }
.buybar .bb-price b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 19px; color: var(--ink); line-height: 1.1; }
.buybar .bb-price span { font-size: 11px; color: var(--muted); }
.buybar .btn { flex: 1 1 auto; }
@media (min-width: 940px) { .buybar { display: none; } }
body.has-buybar { padding-bottom: var(--bar-h); }
@media (min-width: 940px) { body.has-buybar { padding-bottom: 0; } }

/* ================================================================ sheets == */

.ov {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(18,21,46,.58);
  backdrop-filter: blur(3px);
  padding: 0;
  animation: fade var(--dur-2) var(--ease) both;
}
@media (min-width: 640px) { .ov { align-items: center; padding: var(--s5); } }
@keyframes fade { from { opacity: 0; } }

.sheet {
  width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: var(--s5) var(--s5) calc(var(--s5) + env(safe-area-inset-bottom));
  box-shadow: var(--e5);
  animation: rise var(--dur-3) var(--ease-out) both;
}
@media (min-width: 640px) { .sheet { border-radius: var(--r-lg); padding-bottom: var(--s5); } }
@keyframes rise { from { transform: translateY(26px); opacity: 0; } }

.sheet-grab { width: 40px; height: 4px; border-radius: var(--r-pill); background: var(--line-2); margin: -6px auto var(--s4); }
@media (min-width: 640px) { .sheet-grab { display: none; } }
.sheet h2 { font-size: 21px; margin-bottom: var(--s2); }
.sheet .lead { color: var(--muted); font-size: 15px; margin-bottom: var(--s5); }

.line-item {
  display: flex; align-items: center; gap: var(--s3);
  background: var(--card-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: var(--s3); margin-bottom: var(--s5);
}
.line-item .li-art { flex: 0 0 46px; width: 46px; height: 56px; border-radius: var(--r-xs); overflow: hidden; background: var(--paper-deep); }
.line-item .li-art img { width: 100%; height: 100%; object-fit: cover; }
.line-item .li-t { flex: 1 1 auto; min-width: 0; }
.line-item .li-t b { display: block; font: 700 14px/1.3 var(--f-body); color: var(--ink); }
.line-item .li-t span { font-size: 12px; color: var(--muted); }
.line-item .li-p { flex: 0 0 auto; font-family: var(--f-display); font-weight: 800; font-size: 17px; color: var(--ink); }

/* ================================================================= forms == */

.field { margin-bottom: var(--s4); }
.field label { display: block; font: 600 14px/1.4 var(--f-body); color: var(--ink); margin-bottom: 6px; }
.field .hint { font-size: 13px; color: var(--muted); margin: 5px 0 0; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font: 400 16px/1.4 var(--f-body); color: var(--body);
  background: var(--card-2); border: 1.5px solid var(--line-2); border-radius: var(--r-xs);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--warm); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; background: var(--card); border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint); }
.field input[aria-invalid="true"] { border-color: var(--sale); background: var(--sale-tint); }
.field input:disabled, .field textarea:disabled { background: var(--paper-deep); color: var(--muted); cursor: not-allowed; }

.check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 14px; color: var(--body); margin-bottom: var(--s5); }
.check input { width: 20px; height: 20px; min-height: 0; margin: 2px 0 0; accent-color: var(--indigo); cursor: pointer; }
.check label { cursor: pointer; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.msg { border-radius: var(--r-sm); padding: 12px 14px; font-size: 14px; margin-bottom: var(--s4); border: 1px solid; }
.msg-err { background: var(--sale-tint); border-color: #f0c6c1; color: var(--sale); }
.msg-ok  { background: var(--ok-tint);  border-color: #bcdccb; color: var(--ok); }
.msg-note{ background: var(--warm-tint); border-color: #ecd3ba; color: #7d4319; }

/* ================================================================ order === */

.orderwrap { max-width: 640px; margin: 0 auto; padding: var(--s6) 0 var(--s8); }

/* the one orchestrated motion moment: the paid seal draws itself */
.seal { width: 74px; height: 74px; margin: 0 auto var(--s4); display: block; }
.seal circle { fill: none; stroke: var(--ok); stroke-width: 5; stroke-dasharray: 220; stroke-dashoffset: 220; animation: draw var(--dur-4) var(--ease-out) forwards; }
.seal path { fill: none; stroke: var(--ok); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 46; stroke-dashoffset: 46; animation: draw var(--dur-3) var(--ease-out) 380ms forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .seal circle, .seal path { animation: none; stroke-dashoffset: 0; }
  .sheet, .ov { animation: none; }
  .buybar { transition: none; }
  .card, .card-art img, .btn { transition: none; }
}

.panel { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: var(--s5); box-shadow: var(--e2); }
.panel + .panel { margin-top: var(--s4); }
.panel h2 { font-size: 20px; margin-bottom: var(--s3); }

.ref {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 15px/1 var(--f-display); letter-spacing: .05em;
  background: var(--indigo-tint); color: var(--indigo-deep);
  border: 1px dashed #b9c0e2; border-radius: var(--r-xs); padding: 9px 13px;
  font-variant-numeric: tabular-nums;
}

.pill { display: inline-flex; align-items: center; gap: 6px; font: 700 11px/1 var(--f-display); letter-spacing: .08em; text-transform: uppercase; padding: 6px 10px; border-radius: var(--r-pill); }
.pill-paid { background: var(--ok-tint); color: var(--ok); }
.pill-pend { background: var(--warm-tint); color: #7d4319; }
.pill-fail { background: var(--sale-tint); color: var(--sale); }

.dl-card { display: flex; align-items: center; gap: var(--s3); background: var(--card-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: var(--s4); margin-bottom: var(--s3); }
.dl-card svg { width: 26px; height: 26px; color: var(--indigo); flex: 0 0 auto; }
.dl-card .t { flex: 1 1 auto; min-width: 0; }
.dl-card .t b { display: block; font-size: 15px; color: var(--ink); }
.dl-card .t span { font-size: 13px; color: var(--muted); }

/* ================================================================ footer == */

.ftr { background: var(--ink); color: var(--on-ink-dim); margin-top: var(--s8); padding: var(--s7) 0 var(--s6); }
.ftr-grid { display: grid; gap: var(--s5); }
@media (min-width: 720px) { .ftr-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s6); } }
.ftr h3 { color: var(--on-ink); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--s3); }
.ftr p { font-size: 14px; color: var(--on-ink-dim); }
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.ftr a { color: var(--on-ink-dim); text-decoration: none; font-size: 14px; }
.ftr a:hover { color: var(--gold); text-decoration: underline; }
.ftr-base { margin-top: var(--s6); padding-top: var(--s4); border-top: 1px solid rgba(244,242,238,.14); font-size: 13px; display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); justify-content: space-between; }

/* ================================================================= toast == */

.toast {
  position: fixed; left: 50%; bottom: calc(var(--bar-h) + 16px); z-index: 300;
  transform: translate(-50%, 12px); opacity: 0; pointer-events: none;
  max-width: min(92vw, 420px);
  background: var(--ink); color: var(--on-ink);
  border-radius: var(--r-sm); padding: 13px 17px; font-size: 14px;
  box-shadow: var(--e4);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease-out);
}
.toast.on { opacity: 1; transform: translate(-50%, 0); }

/* scroll reveal — the signature entrance, one stagger per section */
.rv { opacity: 0; transform: translateY(14px); }
.rv.in { opacity: 1; transform: none; transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out); }
@media (prefers-reduced-motion: reduce) { .rv, .rv.in { opacity: 1; transform: none; transition: none; } }

/* ============================================ a11y corrections (verified) ===
   Found by hit-testing the live pages at 412 and 1280, not by eye. */

/* The skip link was permanently clipped, so a keyboard user could never see or
   use it. It stays out of the way until focused, then lands over the header. */
.sr:focus, .sr:focus-visible {
  position: fixed; top: 10px; left: 10px; z-index: 999;
  width: auto; height: auto; margin: 0; overflow: visible; clip: auto;
  padding: 12px 18px;
  background: var(--ink); color: var(--on-ink);
  font: 700 15px/1 var(--f-display); text-decoration: none;
  border-radius: var(--r-sm); box-shadow: var(--e4);
}

/* WCAG 2.2 SC 2.5.8 — these are list and navigation links, not links inside a
   sentence, so the inline exception does not apply and they must clear 24px. */
.ftr ul a { display: inline-block; padding: 4px 0; min-height: 24px; }
.ftr ul { gap: 4px; }
.crumbs a, .crumbs li[aria-current] { display: inline-flex; align-items: center; min-height: 24px; padding: 2px 0; }
.sec-head a { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 0; }
.ftr-base a { display: inline-block; min-height: 24px; padding: 3px 0; }

/* ====================================== catalogue: icons, plans, badges =====
   The imported catalogue is software subscriptions, so a card leads with the
   product's own logo on a tinted field rather than cover artwork. */

.card-art--icon {
  /* Squarer tile and a much larger mark: the logos ship with transparent
     padding of their own, so a small icon in a tall tile reads as dead space. */
  aspect-ratio: 1 / 1;
  display: grid; place-items: stretch;
  padding: 0;
  overflow: hidden;
  /* Only ever seen through an icon's own transparent padding. */
  background: linear-gradient(158deg, rgba(58,71,150,.10), rgba(194,112,58,.12));
}
.card-art--icon img {
  width: 100%; height: 100%;
  max-width: none; max-height: none;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease-out);
}
.card:hover .card-art--icon img { transform: scale(1.06) translateY(-2px); }

.card-blurb {
  margin: 0; font-size: 12.5px; line-height: 1.45; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.price .from { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.card-meta .pill { font-size: 9.5px; padding: 4px 7px; }

/* Badge colours are named by the catalogue (amber/emerald/rose/violet/sky).
   Each pairs a tint with a text tone that clears 4.5:1 on it. */
.badge--amber   { background: #fdf0d6; color: #7a4c05; }
.badge--emerald { background: #dff1e6; color: #14603c; }
.badge--rose    { background: var(--sale-tint); color: var(--sale); }
.badge--violet  { background: #ebe8f9; color: #4a3391; }
.badge--sky     { background: #e0eefa; color: #12557f; }
.badge--inline  { position: static; display: inline-flex; align-items: center; }

/* ------------------------------------------------- product page: hero/plans */

.pd-hero { display: grid; gap: var(--s4); align-content: start; }
.pd-icon {
  display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(158deg, rgba(58,71,150,.10), rgba(194,112,58,.13));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--e3);
}
.pd-icon img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }
@media (min-width: 940px) { .pd-icon { max-width: 340px; } }
.pd-icon .ph { font-family: var(--f-serif); font-style: italic; font-size: 56px; color: var(--indigo); opacity: .34; }

.pd-features { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s5); }
.pd-features h2 { font-size: 17px; margin-bottom: var(--s3); }
.pd-features .incl { margin: 0; }

.pd-head { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s2); }

.vh { font-size: 15px; font-weight: 700; margin-bottom: var(--s3); color: var(--ink); }
.vlist { display: grid; gap: var(--s2); margin-bottom: var(--s5); }

.vrow {
  display: flex; align-items: center; gap: var(--s3);
  padding: 13px var(--s4);
  background: var(--card-2);
  border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.vrow:hover { border-color: var(--warm); background: var(--card); }
.vrow:has(input:focus-visible) { outline: 3px solid var(--indigo); outline-offset: 2px; }
.vrow--on { border-color: var(--indigo); background: var(--card); box-shadow: 0 0 0 3px var(--indigo-tint); }
.vrow input { width: 20px; height: 20px; flex: 0 0 auto; margin: 0; accent-color: var(--indigo); cursor: pointer; }
.vrow--out { opacity: .55; cursor: not-allowed; }
.vrow--out:hover { border-color: var(--line-2); background: var(--card-2); }

.vmain { flex: 1 1 auto; min-width: 0; display: grid; gap: 3px; }
.vlabel { font: 600 14.5px/1.3 var(--f-body); color: var(--ink); }
.vterm  { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); }
.vterm .pill { font-size: 9.5px; padding: 3px 7px; }

.vprice { flex: 0 0 auto; text-align: right; display: grid; gap: 2px; }
.vprice b { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--ink); }
.vprice s { font-size: 12px; color: var(--muted); }
.vprice .voff { font-size: 11px; font-weight: 700; color: var(--sale); }

.acct {
  margin-top: var(--s4);
  background: var(--indigo-tint); border: 1px solid #c6cbe8; border-radius: var(--r-sm);
  padding: var(--s4);
}
.acct h2 { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 6px; }
.acct p  { margin: 0; font-size: 14.5px; color: var(--body); }

/* --------------------------------------------------------- category header */

.cat-head { padding: var(--s5) 0 var(--s2); max-width: 62ch; }
.cat-head h1 { font-size: clamp(28px, 7vw, 44px); font-weight: 800; }
.cat-intro { margin: var(--s3) 0 0; font-size: clamp(15px, 4vw, 18px); color: var(--muted); }
.cat-count { margin: var(--s3) 0 0; font-size: 13px; font-weight: 600; color: var(--warm-btn); }

@media (min-width: 940px) {
  .pd { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
}

/* On a phone the single column would run icon → features → title, burying the
   product name below a feature list. Flatten the hero wrapper so the three
   blocks become grid items and can be ordered name-first. */
@media (max-width: 939px) {
  .pd-hero     { display: contents; }
  .pd-icon     { order: 1; }
  .pd-info     { order: 2; }
  .pd-features { order: 3; }
}

/* A two-up grid leaves ~165-190px per card, and "from ₹1,399 ₹7,788" plus a
   View button never fits on one line there — the button was being clipped by
   the card's own overflow:hidden. Stacking at every width is both safe and more
   legible than chasing breakpoints: price reads as a line, button as a target. */
.card-foot {
  flex-direction: column; align-items: stretch;
  gap: var(--s2); padding-top: var(--s3);
}
.card-foot .price { justify-content: flex-start; }
.card-foot .btn-sm { width: 100%; }

/* Standalone links below the FAQ are not inline-in-a-sentence, so SC 2.5.8's
   inline exception does not cover them. */
.faq + p a, .sec > .shell > p > a { display: inline-block; min-height: 24px; padding: 3px 0; }

/* ================================================= basket + combos ========= */

.hdr-cart {
  position: relative; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--r-xs);
  color: var(--ink); text-decoration: none;
  transition: background var(--dur-1) var(--ease);
}
.hdr-cart:hover { background: var(--warm-tint); color: var(--ink); }
.hdr-cart svg { width: 21px; height: 21px; }
.hdr-cart-n {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: grid; place-items: center;
  font: 700 11px/1 var(--f-display);
  background: var(--warm-btn); color: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 0 0 2px var(--paper);
}

.card-acts { display: flex; gap: 6px; width: 100%; }
.card-acts .btn-sm { flex: 1 1 auto; padding: 0 var(--s2); font-size: 13px; }
.card-add { white-space: nowrap; }
.btn-added { --btn-bg: var(--ok) !important; --btn-fg: #fff !important; --btn-bd: var(--ok) !important; }

/* --------------------------------------------------------------- cart page */

.cart-lines { display: grid; gap: var(--s3); margin-bottom: var(--s5); }

.cline {
  display: flex; align-items: flex-start; gap: var(--s3);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: var(--s4);
}
.cline-ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: var(--r-xs); object-fit: contain; }
.cline-main { flex: 1 1 auto; min-width: 0; display: grid; gap: 5px; }
.cline-main b { font: 700 15px/1.3 var(--f-body); color: var(--ink); }
.cline-main b a { color: inherit; text-decoration: none; }
.cline-main b a:hover { color: var(--indigo-deep); text-decoration: underline; }
.cline-sub { font-size: 13px; color: var(--muted); }
.cline-right { flex: 0 0 auto; display: grid; gap: 4px; justify-items: end; text-align: right; }
.cline-price { font: 800 16px/1 var(--f-display); color: var(--ink); }
.cline-right s { font-size: 12px; color: var(--muted); }
.cline-x {
  background: none; border: 0; padding: 4px 0; min-height: 24px;
  font: 600 12px/1 var(--f-body); color: var(--muted); cursor: pointer; text-decoration: underline;
}
.cline-x:hover { color: var(--sale); }

.qty { display: inline-flex; align-items: center; gap: 2px; margin-top: 2px; }
.qty button {
  width: 28px; height: 28px; padding: 0; cursor: pointer;
  font: 700 16px/1 var(--f-display); color: var(--ink);
  background: var(--card-2); border: 1px solid var(--line-2); border-radius: var(--r-xs);
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.qty button:hover { border-color: var(--warm); background: var(--warm-tint); }
.qty span { min-width: 30px; text-align: center; font-weight: 700; font-size: 14px; color: var(--ink); }

.cline--bundle { background: var(--indigo-tint); border-color: #c6cbe8; }
.cline-kids { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 5px; }
.cline-kids li { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--body); }
.cline-kids img { border-radius: 4px; object-fit: contain; flex: 0 0 22px; }
.cline-kids span { color: var(--muted); font-size: 12px; }

.cart-sum { background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: var(--s5); box-shadow: var(--e2); }
.cart-sum-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s4); padding: 7px 0; font-size: 15px; color: var(--body); }
.cart-sum-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: var(--s3); font-size: 17px; }
.cart-sum-total span:last-child { font: 800 26px/1 var(--f-display); color: var(--ink); }

/* ------------------------------------------------------------ combo builder */

.combo-hero { padding: var(--s6) 0 var(--s4); }
.combo-hero h1 { font-size: clamp(28px, 7.5vw, 46px); font-weight: 800; }
.combo-lead { margin: var(--s3) 0 0; font-size: clamp(15px, 4vw, 18px); color: var(--body); max-width: 54ch; }
.combo-lead strong { color: var(--ink); }
.combo-blurb { margin: var(--s2) 0 0; color: var(--muted); max-width: 54ch; }
.combo-note { margin: var(--s3) 0 0; font-size: 13px; color: var(--muted); }
.combo-price { display: flex; align-items: baseline; gap: var(--s3); margin-top: var(--s4); }
.combo-price b { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: clamp(40px, 11vw, 58px); line-height: .95; color: var(--warm-btn); }
.combo-price span { font: 600 15px/1 var(--f-body); color: var(--muted); }

.chips button.chip { cursor: pointer; font-family: var(--f-body); }

.combo-card { position: relative; cursor: pointer; padding: 0; }
.combo-card .combo-pick { position: absolute; opacity: 0; width: 1px; height: 1px; }
.combo-tick {
  position: absolute; top: 9px; right: 9px; z-index: 3;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,253,249,.92); border: 2px solid var(--line-2);
  transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-2) var(--ease);
}
.combo-tick::after {
  content: ""; position: absolute; inset: 0;
  background: no-repeat center/13px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E");
  opacity: 0; transition: opacity var(--dur-1) var(--ease);
}
.combo-card:hover .combo-tick { border-color: var(--warm); }
.combo-card--on { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint), var(--e3); }
.combo-card--on .combo-tick { background: var(--indigo); border-color: var(--indigo); transform: scale(1.06); }
.combo-card--on .combo-tick::after { opacity: 1; }
.combo-card--locked { opacity: .45; cursor: not-allowed; }
.combo-card:has(.combo-pick:focus-visible) { outline: 3px solid var(--indigo); outline-offset: 2px; }
.combo-card .card-body { display: flex; flex-direction: column; gap: 4px; }
.combo-card .card-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.combo-card .card-meta { font-size: 12px; color: var(--muted); }
.combo-worth { font-size: 12px; font-weight: 700; color: var(--warm-btn); margin-top: auto; padding-top: 6px; }

.combobar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,253,249,.97);
  backdrop-filter: saturate(1.4) blur(14px);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -6px 24px rgba(18,21,46,.12);
  transform: translateY(110%);
  transition: transform var(--dur-3) var(--ease-out);
}
.combobar.on { transform: translateY(0); }
.cb-in {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: 11px var(--s4) calc(11px + env(safe-area-inset-bottom));
}
.cb-state { display: grid; gap: 2px; min-width: 0; }
.cb-state b { font: 800 15px/1.2 var(--f-display); color: var(--ink); }
.cb-state span { font-size: 12px; color: var(--muted); }
.cb-actions { display: flex; align-items: center; gap: var(--s3); flex: 0 0 auto; }
.cb-price { font: 800 19px/1 var(--f-display); color: var(--ink); }
body:has(.combobar) { padding-bottom: 78px; }

/* combo teaser on the storefront */
.combo-strip { display: grid; gap: var(--s3); margin-bottom: var(--s7); }
@media (min-width: 720px) { .combo-strip { grid-template-columns: 1fr 1fr; gap: var(--s4); } }
.combo-tile {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  background: var(--ink);
  background-image: radial-gradient(24rem 16rem at 108% -30%, rgba(237,170,72,.30), transparent 62%);
  color: var(--on-ink);
  border-radius: var(--r-lg); padding: var(--s5);
  text-decoration: none; box-shadow: var(--e3);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.combo-tile:hover { transform: translateY(-2px); box-shadow: var(--e4); color: var(--on-ink); }
.combo-tile .ct-t { display: grid; gap: 5px; min-width: 0; }
.combo-tile .ct-k { font: 700 11px/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.combo-tile .ct-n { font: 800 19px/1.2 var(--f-display); color: var(--on-ink); }
.combo-tile .ct-s { font-size: 13px; color: var(--on-ink-dim); }
.combo-tile .ct-p { flex: 0 0 auto; text-align: right; }
.combo-tile .ct-p b { display: block; font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 34px; line-height: 1; color: var(--gold); }
.combo-tile .ct-p span { font-size: 11px; color: var(--on-ink-dim); }

.ord-items { margin-top: var(--s4); display: grid; gap: var(--s2); }
.ord-line {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s4);
  background: var(--card-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: var(--s3) var(--s4);
}
.ord-line b { display: block; font: 700 14.5px/1.35 var(--f-body); color: var(--ink); }
.ord-line .cline-sub { display: block; }
.ord-line > span { font: 800 15px/1 var(--f-display); color: var(--ink); flex: 0 0 auto; }
.ord-line--bundle { background: var(--indigo-tint); border-color: #c6cbe8; }
/* ============================================================ canva claim ===
   A genuine free-gift panel — confident and plain, not a clickbait ad. Reuses
   the store's existing dark-ink treatment (.offer, .combo-tile) rather than
   inventing a new palette, and its own price bump (.offer-price already does
   struck-through MRP + big figure) so "FREE" reads exactly like every other
   price on the site, just with the number replaced. No motion tricks, no
   countdown — the only animation is the shared .rv scroll-reveal already used
   everywhere else on the page. */

.canva-claim {
  margin: var(--s6) 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  background-image:
    radial-gradient(34rem 22rem at -8% -25%, rgba(237,170,72,.22), transparent 60%),
    radial-gradient(28rem 20rem at 108% 120%, rgba(58,71,150,.30), transparent 62%);
  box-shadow: var(--e4);
}
.canva-claim::after {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(237,170,72,.24);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}

.canva-claim-in {
  position: relative;
  display: grid; gap: var(--s6);
  padding: var(--s6) var(--s5);
}
@media (min-width: 780px) {
  .canva-claim-in {
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    padding: var(--s7) var(--s6);
  }
}

.canva-claim-copy h2 {
  color: var(--on-ink);
  font-size: clamp(24px, 5.5vw, 34px);
  font-weight: 800;
  line-height: 1.14;
  margin: 0 0 var(--s3);
}
.canva-claim-kicker { color: var(--gold); margin-bottom: var(--s3); }
.canva-claim-sub {
  color: var(--on-ink-dim);
  font-size: clamp(14.5px, 3.6vw, 16px);
  max-width: 52ch;
  margin: 0;
}
.canva-claim-trust { margin-top: var(--s5); margin-bottom: 0; }
.canva-claim-trust li { color: var(--on-ink-dim); }
.canva-claim-trust svg { color: var(--gold); }

.canva-claim-cta {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
@media (min-width: 780px) {
  .canva-claim-cta { align-items: flex-end; text-align: right; }
}
.canva-claim-price.offer-price {
  margin-bottom: 2px;
  gap: var(--s2);
}
.canva-claim-price b {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(38px, 9vw, 50px);
  letter-spacing: -.01em;
  color: var(--gold);
  line-height: 1;
}
.canva-claim-price s { color: var(--on-ink-dim); font-size: 17px; }
.canva-claim-worth {
  color: var(--on-ink-dim);
  font-size: 13px;
  margin: 0 0 var(--s4);
}
.canva-claim-cta .btn {
  width: 100%;
  --btn-bg: var(--gold); --btn-fg: #2a1c05;
}
.canva-claim-cta .btn:hover  { --btn-bg: #f6bc65; --btn-fg: #2a1c05; }
.canva-claim-cta .btn:focus-visible { outline-color: var(--gold); outline-offset: 3px; }
@media (min-width: 780px) { .canva-claim-cta .btn { width: auto; padding-inline: var(--s7); } }

/* --------------------------------------------------- claim modal (own IIFE) */
/* Reuses .ov / .sheet / .field / .check / .hp / .msg from shop.css exactly —
   only the two id-scoped bits below are new. */

#canvaClaimSheet .sheet { max-width: 420px; }
#canvaClaimSheet h2 { display: flex; align-items: center; gap: 10px; }
#canvaClaimSheet .lead { margin-bottom: var(--s4); }

/* ------------------------------------------------------------ coupon row === */

.coupon-row { display: flex; gap: var(--s2); margin-bottom: var(--s4); }
.coupon-row input {
  flex: 1 1 auto; min-width: 0; min-height: 44px; padding: 0 var(--s3);
  font: 600 14px/1 var(--f-body); letter-spacing: .03em; text-transform: uppercase;
  color: var(--body); background: var(--card-2);
  border: 1.5px solid var(--line-2); border-radius: var(--r-xs);
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.coupon-row input::placeholder { text-transform: none; letter-spacing: normal; color: var(--muted); font-weight: 400; }
.coupon-row input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint); background: var(--card); }
.coupon-row .btn-ghost { flex: 0 0 auto; min-height: 44px; }
.coupon-chip {
  display: inline-block; font: 700 11px/1 var(--f-display); letter-spacing: .04em;
  background: var(--ok-tint); color: var(--ok); border-radius: var(--r-xs);
  padding: 3px 7px; margin-left: 4px;
}
