/* ============================================================
   Little Threads — baby art webshop
   Warm cream / blush · terracotta accent · editorial serif
   Fonts are loaded via <link rel="preconnect"> + stylesheet in each
   page <head> (faster than @import) — see the HEAD of every .html.
   ============================================================ */

:root{
  /* paper / grounds */
  --paper:        #f4ece1;   /* main warm cream */
  --paper-2:      #faf5ec;   /* lighter card paper */
  --blush:        #f1e6df;   /* header / hero band */
  --blush-2:      #ece0d8;
  /* ink */
  --ink:          #2b2620;   /* warm near-black */
  --ink-soft:     #574d42;
  --muted:        #8a7d6d;   /* secondary text */
  --faint:        #b3a692;
  /* accents (shared chroma, varied hue) */
  --terra:        oklch(0.585 0.098 45);    /* terracotta — primary accent */
  --terra-deep:   oklch(0.470 0.092 42);
  --terra-soft:   oklch(0.760 0.055 48);
  --sage:         oklch(0.620 0.040 130);   /* whisper of olive */
  /* lines */
  --line:         #ddd0bf;
  --line-soft:    #e7dccb;
  --shadow:       0 1px 2px rgba(60,48,32,.05), 0 18px 40px -24px rgba(60,48,32,.35);
  --shadow-sm:    0 1px 2px rgba(60,48,32,.06), 0 8px 22px -16px rgba(60,48,32,.30);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Hanken Grotesk', system-ui, sans-serif;
  --script:  'Pinyon Script', cursive;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:var(--body); font-size:17px; line-height:1.6;
  font-weight:400; letter-spacing:.005em;
  -webkit-font-smoothing:antialiased;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--terra-soft); color:var(--ink); }

.wrap{ max-width:var(--maxw); margin:0 auto; padding-inline:var(--pad); }

/* ---- type ---- */
.display{ font-family:var(--display); font-weight:500; line-height:1.02; letter-spacing:-.01em; }
.eyebrow{
  font-family:var(--body); font-size:12.5px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase; color:var(--terra);
}
.eyebrow.muted{ color:var(--muted); }
.lead{ font-size:clamp(18px,2vw,21px); color:var(--ink-soft); line-height:1.55; }
.script{ font-family:var(--script); font-weight:400; }

h1,h2,h3{ margin:0; }
p{ margin:0 0 1em; text-wrap:pretty; }
p:last-child{ margin-bottom:0; }

/* ============================================================
   Top navigation
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:40;
  background:rgba(244,236,225,.86); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line-soft);
}
.nav__row{
  display:flex; align-items:center; justify-content:space-between;
  height:78px; gap:20px;
}
.brand{ display:flex; align-items:baseline; gap:.5ch; flex:none; }
.brand__mark{
  font-family:var(--script); font-size:33px; line-height:1; color:var(--ink);
  padding-bottom:4px; white-space:nowrap;
}
.nav__links{ display:flex; align-items:center; gap:26px; }
.nav__links a{
  font-size:14px; font-weight:500; letter-spacing:.02em; color:var(--ink-soft);
  position:relative; padding:4px 0; white-space:nowrap;
}
.nav__links a::after{
  content:''; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px;
  background:var(--terra); transition:right .28s ease;
}
.nav__links a:hover{ color:var(--ink); }
.nav__links a:hover::after{ right:0; }
.nav__right{ display:flex; align-items:center; gap:14px; }

/* language toggle */
.lang-toggle{
  display:flex; align-items:center; gap:2px; padding:3px;
  background:var(--paper-2); border:1px solid var(--line); border-radius:999px;
}
.lang-opt{
  font-family:var(--body); font-size:12px; font-weight:700; letter-spacing:.06em;
  color:var(--muted); background:transparent; border:none; border-radius:999px;
  padding:6px 11px; line-height:1; transition:background .2s, color .2s;
}
.lang-opt:hover{ color:var(--ink); }
.lang-opt.active{ background:var(--terra); color:#fdf7ef; }
.icon-btn{
  display:grid; place-items:center; width:42px; height:42px; border-radius:999px;
  background:transparent; border:1px solid transparent; color:var(--ink);
  position:relative; transition:background .2s, border-color .2s;
}
.icon-btn:hover{ background:var(--paper-2); border-color:var(--line); }
.cart-count{
  position:absolute; top:2px; right:2px; min-width:18px; height:18px; padding:0 4px;
  border-radius:999px; background:var(--terra); color:#fff;
  font-size:11px; font-weight:700; display:grid; place-items:center; line-height:1;
}
.menu-toggle{ display:none; }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--body); font-size:14.5px; font-weight:600; letter-spacing:.01em;
  padding:14px 26px; border-radius:999px; border:1px solid transparent;
  transition:transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--terra); color:#fdf7ef; box-shadow:var(--shadow-sm); }
.btn--primary:hover{ background:var(--terra-deep); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--paper); }
.btn--light{ background:var(--paper-2); color:var(--ink); border-color:var(--line); }
.btn--light:hover{ border-color:var(--ink); }
.btn--block{ width:100%; }
.btn--lg{ padding:17px 34px; font-size:15.5px; }

/* ============================================================
   Hero
   ============================================================ */
.hero{ position:relative; background:var(--blush); overflow:hidden; }
.hero__wave{ position:absolute; inset:0 0 auto 0; width:100%; height:140px; pointer-events:none; opacity:.8; }
.hero__grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px);
  align-items:center; padding-block:clamp(56px,8vw,104px);
}
.hero__title{ font-size:clamp(46px,6.4vw,92px); }
.hero__title em{ font-style:italic; color:var(--terra); }
.hero__sub{ max-width:30ch; margin-top:24px; }
.hero__cta{ display:flex; gap:14px; margin-top:38px; flex-wrap:wrap; }
.hero__meta{
  display:flex; gap:28px; margin-top:44px; padding-top:26px;
  border-top:1px solid var(--line);
}
.hero__meta div{ display:flex; flex-direction:column; gap:2px; }
.hero__meta b{ font-family:var(--display); font-size:30px; font-weight:600; line-height:1; }
.hero__meta span{ font-size:12.5px; color:var(--muted); letter-spacing:.04em; }

.hero__art{ position:relative; }
.hero__art image-slot{
  width:100%; aspect-ratio:4/5; box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
}
.hero__tag{
  position:absolute; bottom:-22px; left:-22px;
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:14px; padding:14px 18px; box-shadow:var(--shadow-sm);
  display:flex; align-items:center; gap:12px; max-width:240px;
}
.hero__tag .swatch-row{ display:flex; }
.hero__tag .swatch-row i{ width:20px; height:20px; border-radius:50%; border:2px solid var(--paper-2); margin-left:-7px; }
.hero__tag small{ font-size:12px; color:var(--ink-soft); line-height:1.3; }
.hero__tag small b{ display:block; font-size:13px; color:var(--ink); }

/* ============================================================
   Section scaffolding
   ============================================================ */
section{ position:relative; }
.section{ padding-block:clamp(64px,9vw,116px); }
.section--paper{ background:var(--paper); }
.section--ink{ background:var(--ink); color:var(--paper); }
.section__head{ max-width:62ch; }
.section__head.center{ margin:0 auto; text-align:center; }
.section__title{ font-size:clamp(34px,4.6vw,60px); margin-top:14px; }
.section__intro{ margin-top:18px; color:var(--ink-soft); font-size:clamp(17px,1.6vw,19px); }
.squiggle{ display:block; width:84px; height:12px; margin-top:18px; color:var(--terra); }
.center .squiggle{ margin-inline:auto; }

/* ============================================================
   How it works  (the process)
   ============================================================ */
.steps{
  margin-top:54px; display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border:1px solid var(--line); border-radius:20px; overflow:hidden; background:var(--paper-2);
}
.step{
  padding:34px 30px 38px; position:relative;
  border-right:1px solid var(--line-soft);
}
.step:last-child{ border-right:none; }
.step__no{
  font-family:var(--display); font-size:15px; font-weight:600; color:var(--terra);
  letter-spacing:.16em; display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.step__no::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--terra); }
.step__ico{ width:40px; height:40px; color:var(--ink); margin-bottom:18px; }
.step__ico svg{ width:100%; height:100%; }
.step h3{ font-family:var(--display); font-size:26px; font-weight:600; margin-bottom:10px; line-height:1.1; }
.step p{ font-size:15px; color:var(--ink-soft); line-height:1.55; }
.step .tag{
  display:inline-block; margin-top:14px; font-size:12px; font-weight:600;
  color:var(--terra-deep); background:rgba(181,101,74,.10);
  padding:5px 11px; border-radius:999px; letter-spacing:.02em;
}

/* ============================================================
   Products / tiers
   ============================================================ */
.products{ margin-top:54px; display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

/* journal theme filter (homepage) */
.jt-filter{ display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-top:30px; }
.jt-filter__lab{ font-size:11.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); margin-right:4px; }
.jt-pill{
  font-family:var(--body); font-size:13.5px; font-weight:600; letter-spacing:.01em;
  color:var(--ink-soft); background:var(--paper-2); border:1px solid var(--line);
  padding:9px 16px; border-radius:999px; transition:transform .15s ease, border-color .2s, color .2s;
}
.jt-pill:hover{ border-color:var(--terra); color:var(--terra); transform:translateY(-1px); }
.jt-pill:first-of-type{ background:var(--terra); border-color:var(--terra); color:#fdf7ef; }
.jt-pill:first-of-type:hover{ color:#fff; }
.card{
  background:var(--paper-2); border:1px solid var(--line);
  border-radius:18px; overflow:hidden; display:flex; flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--faint); }
.card__art{ position:relative; }
.card__art image-slot{ width:100%; aspect-ratio:1/1; border-radius:0; }
.card__badge{
  position:absolute; top:12px; left:12px; background:var(--paper-2);
  border:1px solid var(--line); border-radius:999px; padding:5px 12px;
  font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft);
}
.card__body{ padding:22px 22px 24px; display:flex; flex-direction:column; flex:1; }
.card h3{ font-family:var(--display); font-size:27px; font-weight:600; line-height:1.05; }
.card__desc{ font-size:14px; color:var(--muted); margin-top:8px; flex:1; }
.card__foot{ display:flex; align-items:center; justify-content:space-between; margin-top:20px; }
.price{ font-family:var(--display); font-size:26px; font-weight:600; }
.price small{ font-size:13px; color:var(--muted); font-family:var(--body); margin-left:3px; }
.card .btn{ padding:11px 18px; font-size:13.5px; }

/* ============================================================
   Textile USP band
   ============================================================ */
.usp__grid{
  display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(36px,6vw,84px); align-items:center;
}
.usp__art{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.usp__art image-slot{ width:100%; }
.usp__art image-slot:nth-child(1){ aspect-ratio:3/4; }
.usp__art image-slot:nth-child(2){ aspect-ratio:3/4; margin-top:42px; }
.section--ink .eyebrow{ color:var(--terra-soft); }
.section--ink .section__title{ color:var(--paper); }
.section--ink .lead{ color:#d8cab8; }
.usp__list{ margin-top:30px; display:flex; flex-direction:column; gap:2px; }
.usp__list .row{
  display:flex; gap:18px; padding:18px 0; border-top:1px solid rgba(255,255,255,.13);
}
.usp__list .row:last-child{ border-bottom:1px solid rgba(255,255,255,.13); }
.usp__list .row .k{ font-family:var(--display); font-size:22px; color:var(--terra-soft); min-width:44px; }
.usp__list .row b{ display:block; font-size:16px; color:var(--paper); margin-bottom:3px; }
.usp__list .row span{ font-size:14.5px; color:#c8bba9; }

/* ============================================================
   Gallery strip
   ============================================================ */
.gallery{ margin-top:48px; display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
.gallery image-slot{ width:100%; aspect-ratio:1/1; }
.gallery image-slot:nth-child(3n){ aspect-ratio:1/1.3; }

/* ============================================================
   CTA footer band
   ============================================================ */
.cta{ background:var(--blush); border-top:1px solid var(--line-soft); text-align:center; }
.cta .display{ font-size:clamp(36px,5vw,68px); }
.cta p{ max-width:46ch; margin:18px auto 32px; color:var(--ink-soft); font-size:19px; }

footer{ background:var(--ink); color:#cdbfac; padding-block:64px 40px; }
.foot__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
.foot__brand .script{ font-size:40px; color:var(--paper); line-height:1; }
.foot__brand p{ margin-top:14px; max-width:34ch; font-size:14.5px; color:#a99a86; }
.foot h4{ font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:var(--terra-soft); margin-bottom:16px; font-weight:600; }
.foot ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; }
.foot a{ font-size:14.5px; color:#cdbfac; }
.foot a:hover{ color:var(--paper); }
.foot__bottom{
  margin-top:48px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-size:13px; color:#8d7e6b;
}

/* ============================================================
   Order flow overlay
   ============================================================ */
.overlay{
  position:fixed; inset:0; z-index:80; display:none;
  background:rgba(43,38,32,.46); backdrop-filter:blur(4px);
}
.overlay.open{ display:block; }
.flow{
  position:absolute; inset:0; background:var(--paper);
  display:grid; grid-template-rows:auto 1fr auto;
  animation:flowIn .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes flowIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
.flow__top{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:20px var(--pad); border-bottom:1px solid var(--line-soft);
  background:rgba(244,236,225,.9); backdrop-filter:blur(8px);
}
.flow__top .brand__mark{ font-size:30px; }
.progress{ display:flex; align-items:center; gap:8px; flex:1; justify-content:center; max-width:560px; margin:0 auto; }
.progress .dot{ display:flex; align-items:center; gap:8px; }
.progress .dot i{
  width:26px; height:26px; border-radius:50%; display:grid; place-items:center;
  border:1.5px solid var(--line); color:var(--muted); font-size:12px; font-weight:700;
  background:var(--paper-2); transition:.25s;
}
.progress .dot.done i{ background:var(--terra); border-color:var(--terra); color:#fff; }
.progress .dot.active i{ border-color:var(--terra); color:var(--terra); background:var(--paper-2); }
.progress .bar{ width:30px; height:1.5px; background:var(--line); }
.progress .dot.done + .bar{ background:var(--terra); }
.flow__close{ width:42px; height:42px; }

.flow__body{ overflow:auto; }
.flow__inner{
  max-width:1080px; margin:0 auto; padding:clamp(28px,5vw,56px) var(--pad);
  display:grid; grid-template-columns:1fr 320px; gap:clamp(32px,5vw,60px); align-items:start;
}
.flow__main{ min-height:50vh; }
.step-head{ margin-bottom:30px; }
.step-head .eyebrow{ color:var(--muted); }
.step-head h2{ font-family:var(--display); font-size:clamp(30px,4vw,46px); font-weight:600; margin-top:8px; line-height:1.05; }
.step-head p{ margin-top:12px; color:var(--ink-soft); max-width:52ch; }

.flow-screen{ display:none; }
.flow-screen.active{ display:block; animation:fade .35s ease; }
@keyframes fade{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }

/* choice cards */
.choices{ display:grid; gap:16px; }
.choices.cols-2{ grid-template-columns:repeat(2,1fr); }
.choice{
  display:flex; gap:18px; align-items:center; text-align:left;
  background:var(--paper-2); border:1.5px solid var(--line); border-radius:16px;
  padding:20px 22px; transition:.18s; width:100%;
}
.choice:hover{ border-color:var(--faint); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.choice.sel{ border-color:var(--terra); background:#fbf4ea; box-shadow:0 0 0 3px rgba(181,101,74,.12); }
.choice__ico{ width:46px; height:46px; flex:none; color:var(--terra-deep); }
.choice__ico svg{ width:100%; height:100%; }
.choice__txt{ flex:1; }
.choice__txt b{ font-family:var(--display); font-size:23px; font-weight:600; display:block; line-height:1.1; }
.choice__txt span{ font-size:14px; color:var(--muted); }
.choice__price{ font-family:var(--display); font-size:24px; font-weight:600; }
.choice__check{
  width:24px; height:24px; border-radius:50%; border:1.5px solid var(--line); flex:none;
  display:grid; place-items:center; color:#fff; transition:.18s;
}
.choice.sel .choice__check{ background:var(--terra); border-color:var(--terra); }
.choice.sel .choice__check svg{ opacity:1; }
.choice__check svg{ width:14px; height:14px; opacity:0; }

/* colour swatches */
.swatches{ display:flex; flex-wrap:wrap; gap:16px; }
.swatch{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  background:transparent; border:none; padding:0;
}
.swatch i{
  width:70px; height:70px; border-radius:18px; border:1.5px solid rgba(0,0,0,.08);
  position:relative; transition:.18s; box-shadow:inset 0 0 0 0 var(--paper);
}
.swatch:hover i{ transform:translateY(-3px); }
.swatch.sel i{ box-shadow:0 0 0 2px var(--paper), 0 0 0 4px var(--terra); }
.swatch.sel i::after{
  content:'✓'; position:absolute; inset:0; display:grid; place-items:center;
  color:#fff; font-size:22px; text-shadow:0 1px 2px rgba(0,0,0,.35);
}
.swatch span{ font-size:13px; color:var(--ink-soft); font-weight:500; }
.swatch--other i{ background:repeating-linear-gradient(45deg,#e9ddcb,#e9ddcb 6px,#f4ece1 6px,#f4ece1 12px); display:grid; place-items:center; }
.swatch--other i::before{ content:'+'; font-size:26px; color:var(--muted); }

/* generic field */
.field{ margin-top:22px; }
.field label{ display:block; font-size:13px; font-weight:600; letter-spacing:.03em; color:var(--ink-soft); margin-bottom:8px; }
.input, .textarea, select.input{
  width:100%; font-family:var(--body); font-size:15px; color:var(--ink);
  background:var(--paper-2); border:1.5px solid var(--line); border-radius:12px;
  padding:13px 15px; transition:.18s; resize:vertical;
}
.input:focus, .textarea:focus{ outline:none; border-color:var(--terra); box-shadow:0 0 0 3px rgba(181,101,74,.12); }
.input::placeholder, .textarea::placeholder{ color:var(--faint); }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* materials */
.mats{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.mat{
  text-align:left; background:var(--paper-2); border:1.5px solid var(--line);
  border-radius:14px; padding:18px 20px; transition:.18s;
}
.mat:hover{ border-color:var(--faint); transform:translateY(-2px); }
.mat.sel{ border-color:var(--terra); background:#fbf4ea; box-shadow:0 0 0 3px rgba(181,101,74,.12); }
.mat b{ font-family:var(--display); font-size:21px; font-weight:600; display:block; }
.mat span{ font-size:13.5px; color:var(--muted); }

/* summary rail */
.rail{
  background:var(--paper-2); border:1px solid var(--line); border-radius:18px;
  padding:26px 24px; position:sticky; top:24px; box-shadow:var(--shadow-sm);
}
.rail h4{ font-family:var(--display); font-size:22px; font-weight:600; margin-bottom:4px; }
.rail__sub{ font-size:13px; color:var(--muted); margin-bottom:20px; }
.rail__art{ width:100%; aspect-ratio:4/3; margin-bottom:18px; border-radius:12px; }
.rail__line{ display:flex; justify-content:space-between; gap:12px; padding:11px 0; border-top:1px solid var(--line-soft); font-size:14px; }
.rail__line .l{ color:var(--muted); }
.rail__line .v{ color:var(--ink); font-weight:600; text-align:right; max-width:60%; }
.rail__line .v.empty{ color:var(--faint); font-weight:400; font-style:italic; }
.rail__total{ display:flex; justify-content:space-between; align-items:baseline; margin-top:16px; padding-top:18px; border-top:1.5px solid var(--ink); }
.rail__total .l{ font-size:14px; font-weight:600; }
.rail__total .v{ font-family:var(--display); font-size:34px; font-weight:600; }

/* flow footer nav */
.flow__nav{
  border-top:1px solid var(--line-soft); background:rgba(244,236,225,.9); backdrop-filter:blur(8px);
  padding:16px var(--pad); display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.flow__nav .hint{ font-size:13px; color:var(--muted); }
.flow__nav .btns{ display:flex; gap:12px; }

/* ============================================================
   Shipping label (confirmation)
   ============================================================ */
.confirm{ max-width:860px; margin:0 auto; text-align:center; padding:clamp(28px,5vw,48px) var(--pad) 60px; }
.confirm__seal{
  width:74px; height:74px; border-radius:50%; background:var(--terra); color:#fff;
  display:grid; place-items:center; margin:0 auto 24px; box-shadow:var(--shadow-sm);
}
.confirm__seal svg{ width:34px; height:34px; }
.confirm h2{ font-family:var(--display); font-size:clamp(32px,4.5vw,52px); font-weight:600; line-height:1.05; }
.confirm p.lead{ margin:16px auto 0; max-width:48ch; }

.label{
  margin:38px auto 0; max-width:560px; text-align:left;
  background:#fffdf9; border:1.5px solid var(--ink); border-radius:8px;
  box-shadow:var(--shadow); overflow:hidden;
  font-family:var(--body);
}
.label__top{ display:flex; justify-content:space-between; align-items:center; padding:16px 22px; background:var(--ink); color:var(--paper); }
.label__top .script{ font-size:26px; color:var(--paper); line-height:1; }
.label__top .svc{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; text-align:right; line-height:1.5; }
.label__top .svc b{ display:block; font-size:13px; letter-spacing:.1em; }
.label__grid{ display:grid; grid-template-columns:1fr 1fr; }
.label__cell{ padding:16px 22px; border-bottom:1px dashed var(--line); }
.label__cell:nth-child(odd){ border-right:1px dashed var(--line); }
.label__cell .lab{ font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.label__cell .val{ font-size:14px; color:var(--ink); line-height:1.45; }
.label__cell .val b{ font-weight:700; }
.label__bar{ padding:20px 22px 14px; text-align:center; }
.barcode{ height:64px; width:100%; display:flex; gap:2px; align-items:stretch; justify-content:center; }
.barcode i{ display:block; background:var(--ink); }
.label__code{ margin-top:10px; font-family:ui-monospace,'SF Mono',Menlo,monospace; font-size:15px; letter-spacing:.22em; color:var(--ink); }
.label__track{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 22px; background:#f3ece0; border-top:1px dashed var(--line);
}
.label__track .tt{ font-size:12px; color:var(--ink-soft); }
.label__track .tt b{ display:block; font-family:ui-monospace,monospace; font-size:15px; letter-spacing:.08em; color:var(--ink); }
.confirm__actions{ display:flex; gap:14px; justify-content:center; margin-top:34px; flex-wrap:wrap; }
.confirm__note{ margin-top:26px; font-size:13.5px; color:var(--muted); }

/* tiny track timeline */
.tracker{ max-width:560px; margin:30px auto 0; text-align:left; }
.tracker__row{ display:flex; gap:16px; align-items:flex-start; }
.tracker__rail{ display:flex; flex-direction:column; align-items:center; }
.tracker__rail i{ width:13px; height:13px; border-radius:50%; border:2px solid var(--line); background:var(--paper); }
.tracker__rail i.on{ background:var(--terra); border-color:var(--terra); }
.tracker__rail span{ width:2px; flex:1; min-height:26px; background:var(--line); }
.tracker__row:last-child .tracker__rail span{ display:none; }
.tracker__txt{ padding-bottom:6px; }
.tracker__txt b{ font-size:14px; }
.tracker__txt b.dim{ color:var(--muted); font-weight:500; }
.tracker__txt span{ display:block; font-size:12.5px; color:var(--muted); }

/* ============================================================
   Toast
   ============================================================ */
.toast{
  position:fixed; left:50%; bottom:30px; transform:translateX(-50%) translateY(120%);
  background:var(--ink); color:var(--paper); padding:14px 22px; border-radius:999px;
  font-size:14px; font-weight:500; box-shadow:var(--shadow); z-index:120;
  display:flex; align-items:center; gap:12px; transition:transform .4s cubic-bezier(.2,.7,.2,1);
}
.toast.show{ transform:translateX(-50%) translateY(0); }
.toast b{ color:var(--terra-soft); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:980px){
  .nav__links{ display:none; }
  .menu-toggle{ display:grid; }
}
@media (max-width:1080px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__art{ order:-1; max-width:440px; }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .step:nth-child(2){ border-right:none; }
  .step:nth-child(1),.step:nth-child(2){ border-bottom:1px solid var(--line-soft); }
  .products{ grid-template-columns:repeat(2,1fr); }
  .usp__grid{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:repeat(3,1fr); }
  .foot__grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .flow__inner{ grid-template-columns:1fr; }
  .rail{ position:static; order:-1; }
}
@media (max-width:680px){
  body{ font-size:16px; }
  .nav__links{ display:none; }
  .menu-toggle{ display:grid; }
  .steps{ grid-template-columns:1fr; }
  .step{ border-right:none; border-bottom:1px solid var(--line-soft); }
  .step:last-child{ border-bottom:none; }
  .products{ grid-template-columns:1fr; }
  .choices.cols-2{ grid-template-columns:1fr; }
  .mats{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:repeat(2,1fr); }
  .foot__grid{ grid-template-columns:1fr; }
  .progress .dot span{ display:none; }
  .hero__meta{ flex-wrap:wrap; gap:18px; }
}
