/* ============================================================
   HALDEN — Nordic Editorial / Quiet Luxury design system
   Showcase Build #5 — SimpliTechPro (fictional demo brand)
   style.css?v=1
   ============================================================ */

:root{
  /* Canvas + surfaces */
  --bone:      #F4F0E9;   /* warm bone canvas */
  --bone-2:    #ECE5D8;   /* deeper bone (alt plates) */
  --card:      #FBF9F4;   /* raised card */
  --line:      #DFD7C8;   /* hairlines */
  --line-soft: #E9E2D5;

  /* Ink */
  --ink:       #26251F;   /* charcoal ink */
  --ink-2:     #565247;   /* secondary text */
  --ink-3:     #6C6659;   /* tertiary / meta (AA on bone) */

  /* Sage accent family */
  --sage:      #8A9A82;   /* brand sage — fills, borders, large elements */
  --sage-deep: #58684F;   /* sage for text/icons on bone (AA) */
  --sage-soft: #DFE4D8;   /* sage tint plate */

  /* System */
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(.22,.8,.28,1);
  --shadow-soft: 0 18px 50px -22px rgba(38,37,31,.22);
  --shadow-chip: 0 10px 32px -12px rgba(38,37,31,.28);

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-sans);
  background:var(--bone);
  color:var(--ink);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
.num{ font-feature-settings:"tnum" 1; font-variant-numeric:tabular-nums; }
[hidden]{ display:none !important; }

::selection{ background:var(--sage); color:#fff; }
:focus-visible{ outline:2px solid var(--sage-deep); outline-offset:3px; border-radius:4px; }

/* ---------- Demo ribbon ---------- */
.demo-ribbon{
  background:var(--ink);
  color:#EDE9DF;
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  text-align:center;
  padding:7px 16px;
}
.ribbon-link{
  color:#C8D4C0;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:3px;
  margin-left:12px;
  white-space:nowrap;
}
.ribbon-link:hover{ color:#fff; }
.footer-staff{ font-size:12.5px; color:var(--ink-3); }
.footer-staff a{
  color:var(--sage-deep); font-weight:500;
  text-decoration:underline; text-underline-offset:3px;
}
.footer-staff a:hover{ color:var(--ink); }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled{ border-bottom-color:var(--line-soft); }
.nav{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:center; gap:34px;
  padding:18px 28px;
}
.brand{
  font-family:var(--font-serif);
  font-weight:500;
  font-size:24px;
  letter-spacing:.34em;
  text-indent:.34em; /* optically recenter tracked caps */
}
.nav-links{ display:flex; gap:30px; margin-left:auto; }
.nav-links a{
  font-size:13.5px; font-weight:500;
  letter-spacing:.04em;
  color:var(--ink-2);
  padding:6px 2px;
  border-bottom:1px solid transparent;
  transition:color .25s var(--ease), border-color .25s var(--ease);
}
.nav-links a:hover{ color:var(--ink); border-bottom-color:var(--sage); }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.cart-btn{
  position:relative;
  background:none; border:1px solid var(--line);
  border-radius:999px;
  width:42px; height:42px;
  display:grid; place-items:center;
  color:var(--ink);
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.cart-btn:hover{ border-color:var(--sage-deep); background:var(--card); }
.cart-btn svg{ width:19px; height:19px; }
.cart-count{
  position:absolute; top:-4px; right:-4px;
  background:var(--sage-deep); color:#fff;
  font-size:10.5px; font-weight:600;
  min-width:18px; height:18px; border-radius:999px;
  display:grid; place-items:center;
  padding:0 4px;
  font-feature-settings:"tnum" 1;
}
.nav-burger{ display:none; background:none; border:0; width:38px; height:38px; flex-direction:column; justify-content:center; gap:5px; align-items:flex-start; }
.nav-burger span{ display:block; width:20px; height:1.6px; background:var(--ink); transition:transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:15px 32px;
  border-radius:999px;
  font-size:14.5px; font-weight:500;
  letter-spacing:.03em;
  border:1px solid transparent;
  transition:background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:active{ transform:scale(.98); }
.btn-ink{ background:var(--ink); color:#F6F2EA; }
.btn-ink:hover{ background:#3A3830; }
.btn-ghost{ border-color:var(--line); color:var(--ink); background:transparent; }
.btn-ghost:hover{ border-color:var(--ink); background:var(--card); }

/* ---------- Hero ---------- */
.hero{ overflow:hidden; }
.hero-inner{
  max-width:1200px; margin:0 auto;
  padding:64px 28px 88px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:64px;
  align-items:center;
}
.eyebrow{
  font-size:12px; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--sage-deep);
  margin-bottom:22px;
}
.hero-h1{
  font-family:"Italianno", var(--font-serif);
  font-weight:400;
  font-size:clamp(76px, 9.2vw, 124px);
  line-height:.94;
  letter-spacing:.01em;
  margin-bottom:26px;
}
.hero-h1 em{
  font-style:normal;
  color:var(--sage-deep);
}
.hero-sub{
  font-size:17.5px;
  color:var(--ink-2);
  max-width:46ch;
  margin-bottom:36px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:30px; }
.hero-trust{
  font-size:13px; color:var(--ink-3);
  letter-spacing:.02em;
}
.hero-trust .stars{ color:var(--sage-deep); letter-spacing:.12em; }

.hero-visual{ position:relative; justify-self:end; width:min(100%, 480px); }
.hero-arch{
  border-radius:240px 240px var(--radius-lg) var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  background:var(--bone-2);
}
.hero-arch img{
  width:100%; height:auto;
  aspect-ratio: 2/3;
  object-fit:cover;
}
.hero-chip{
  position:absolute;
  left:-34px; bottom:44px;
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:14px;
  box-shadow:var(--shadow-chip);
  padding:13px 18px;
  display:flex; flex-direction:column; gap:2px;
}
.hero-chip-name{
  font-family:var(--font-serif);
  font-size:15px; font-weight:500;
}
.hero-chip-meta{ font-size:12.5px; color:var(--ink-2); }

/* ---------- Values strip ---------- */
.values{
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
  background:var(--bone-2);
}
.values-row{
  max-width:1200px; margin:0 auto;
  padding:26px 28px;
  display:flex; flex-wrap:wrap;
  justify-content:space-between;
  gap:18px 28px;
}
.values-row li{
  display:flex; align-items:center; gap:10px;
  font-size:13.5px; font-weight:500;
  letter-spacing:.03em;
  color:var(--ink-2);
}
.values-row svg{ width:19px; height:19px; color:var(--sage-deep); flex:none; }

/* ---------- Footer (minimal M1) ---------- */
.site-footer{
  border-top:1px solid var(--line-soft);
  background:var(--bone);
}
.footer-inner{
  max-width:1200px; margin:0 auto;
  padding:44px 28px;
  display:flex; flex-direction:column; gap:12px;
}
.footer-brand{
  font-family:var(--font-serif);
  letter-spacing:.34em;
  font-size:17px;
}
.footer-honesty{
  font-size:13px; color:var(--ink-3);
  max-width:72ch;
}

/* ---------- Homepage sections ---------- */
.home-sec{ padding:84px 0; }
.home-sec-alt{ background:var(--bone-2); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.home-inner{ max-width:1200px; margin:0 auto; padding:0 28px; }
.sec-head{
  display:flex; justify-content:space-between; align-items:baseline; gap:20px;
  margin-bottom:34px; flex-wrap:wrap;
}
.sec-head .section-title{ margin-bottom:0; }
.sec-link{
  font-size:14px; font-weight:500;
  color:var(--sage-deep);
  border-bottom:1px solid transparent;
  transition:border-color .2s var(--ease);
}
.sec-link:hover{ border-bottom-color:var(--sage-deep); }
.sec-link-mute{ color:var(--ink-3); font-size:13.5px; font-style:italic; font-family:var(--font-serif); }
.script-accent{
  font-family:"Italianno", var(--font-serif);
  font-style:normal;
  font-size:1.65em;
  line-height:.6;
  color:var(--sage-deep);
  margin-right:2px;
}
.script-accent-light{ color:var(--sage); }

.ethos-grid, .ing-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:64px;
  align-items:center;
}
.ethos-media img, .ing-media img{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  width:100%; height:auto;
  object-fit:cover;
}
.ethos-media img{ aspect-ratio:3/2; }
.ing-media img{ aspect-ratio:4/5; }
.ethos-copy p, .ing-copy p{ color:var(--ink-2); font-size:15.5px; margin-bottom:16px; max-width:54ch; }
.ethos-points{ margin-top:8px; }
.ethos-points li{
  padding:9px 0 9px 26px;
  position:relative;
  font-size:14.5px; font-weight:500;
  border-bottom:1px solid var(--line-soft);
}
.ethos-points li:last-child{ border-bottom:0; }
.ethos-points li::before{
  content:'✓';
  position:absolute; left:2px;
  color:var(--sage-deep);
}
.ing-stats{ display:flex; gap:38px; margin:26px 0 30px; flex-wrap:wrap; }
.ing-stats > div{ display:flex; flex-direction:column; }
.ing-num{
  font-family:var(--font-serif);
  font-size:34px; font-weight:500;
  line-height:1.1;
}
.ing-lab{ font-size:12px; color:var(--ink-3); letter-spacing:.05em; text-transform:uppercase; margin-top:4px; }

.home-sec-ink{
  background:var(--ink);
  color:#EFEAE0;
}
.home-sec-ink .section-title{ color:#F4F0E9; }
.eyebrow-light{ color:var(--sage); }
.sub-inner{ text-align:center; max-width:760px; }
.sub-lede{ color:#C9C3B4; font-size:16.5px; margin-bottom:40px; }
.sub-steps{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-bottom:40px;
  text-align:left;
}
.sub-steps > div{
  background:rgba(244,240,233,.06);
  border:1px solid rgba(244,240,233,.14);
  border-radius:var(--radius);
  padding:20px;
}
.sub-steps .num{
  display:inline-grid; place-items:center;
  width:30px; height:30px;
  border-radius:999px;
  background:var(--sage);
  color:#1E241B;
  font-weight:600; font-size:14px;
  margin-bottom:12px;
}
.sub-steps p{ font-size:14px; color:#D9D4C7; }
.btn-bone{ background:#F4F0E9; color:var(--ink); }
.btn-bone:hover{ background:#fff; }

.shop-grid.home-best{ grid-template-columns:repeat(4, 1fr); }
.journal-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.jcard{ display:block; }
.jcard img{
  width:100%; height:auto;
  aspect-ratio:10/7;
  object-fit:cover;
  border-radius:var(--radius);
  margin-bottom:14px;
  transition:transform .5s var(--ease);
}
.jcard:hover img{ transform:scale(1.02); }
.jcard-tag{
  font-size:11px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--sage-deep);
  margin-bottom:6px;
}
.jcard-title{
  font-family:var(--font-serif);
  font-weight:500;
  font-size:19px;
  line-height:1.3;
}

.closing{ padding:100px 0; }
.closing-inner{ text-align:center; max-width:720px; }
.closing-script{
  font-family:"Italianno", var(--font-serif);
  font-size:clamp(44px, 5vw, 64px);
  line-height:1;
  color:var(--sage-deep);
  margin-bottom:8px;
}
.closing-ctas{ justify-content:center; margin-top:30px; }
.closing-note{ font-size:13px; color:var(--ink-3); margin-top:18px; }

/* ---------- Full footer ---------- */
.footer-full{ padding:56px 28px 36px; }
.footer-cols{
  display:grid;
  grid-template-columns: 1.3fr .7fr .8fr 1.2fr;
  gap:40px;
  margin-bottom:38px;
}
.footer-col{ display:flex; flex-direction:column; gap:9px; }
.footer-tag{ font-size:13.5px; color:var(--ink-2); max-width:30ch; margin-top:10px; }
.footer-h{
  font-size:11.5px; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-3);
  margin-bottom:4px;
}
.footer-col a{
  font-size:13.5px; color:var(--ink-2);
  transition:color .2s var(--ease);
}
.footer-col a:hover{ color:var(--ink); }
.footer-news-sub{ font-size:12.5px; color:var(--ink-3); margin-bottom:4px; }
.footer-news{ display:flex; gap:8px; }
.footer-news input{
  flex:1; min-width:0;
  padding:11px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--card);
  font-family:inherit; font-size:13.5px;
}
.footer-news input:focus{ outline:none; border-color:var(--sage-deep); }
.footer-news .btn{ padding:11px 22px; font-size:13px; }
.footer-socials{ display:flex; gap:8px; margin-top:12px; }
.footer-socials a{
  width:34px; height:34px;
  border:1px solid var(--line);
  border-radius:999px;
  display:grid; place-items:center;
  font-size:11px; font-weight:600;
  color:var(--ink-2);
  transition:all .2s var(--ease);
}
.footer-socials a:hover{ border-color:var(--ink); color:var(--ink); }
.footer-base{
  border-top:1px solid var(--line-soft);
  padding-top:22px;
  display:flex; flex-direction:column; gap:8px;
}

/* ---------- Reveal animation ---------- */
.rv{ opacity:0; transform:translateY(14px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .rv{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* ---------- Shop ---------- */
.shop-head{ border-bottom:1px solid var(--line-soft); }
.shop-head-inner{ max-width:1200px; margin:0 auto; padding:52px 28px 34px; }
.shop-h1{
  font-family:var(--font-serif);
  font-weight:400;
  font-size:clamp(34px, 4vw, 48px);
  letter-spacing:-.01em;
  margin-bottom:8px;
}
.shop-sub{ color:var(--ink-2); font-size:15px; }
.shop-sub .num{ color:var(--ink-3); font-size:13.5px; }

.shop-inner{
  max-width:1200px; margin:0 auto;
  padding:36px 28px 90px;
  display:grid;
  grid-template-columns: 230px 1fr;
  gap:48px;
  align-items:start;
}
.shop-filter-toggle{ display:none; }

.shop-rail{ position:sticky; top:96px; display:flex; flex-direction:column; gap:26px; }
.rail-title{
  font-family:var(--font-sans);
  font-size:12px; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink-3);
  margin-bottom:12px;
}
.rail-opts{ display:flex; flex-wrap:wrap; gap:8px; }
.rail-chip{
  border:1px solid var(--line);
  background:transparent;
  border-radius:999px;
  padding:7px 15px;
  font-size:13px; font-weight:500;
  color:var(--ink-2);
  text-transform:capitalize;
  transition:all .2s var(--ease);
}
.rail-chip:hover{ border-color:var(--sage-deep); color:var(--ink); }
.rail-chip.on{ background:var(--sage-deep); border-color:var(--sage-deep); color:#fff; }
.rail-select{
  width:100%;
  padding:11px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
  font-family:inherit; font-size:13.5px;
  color:var(--ink);
}
.rail-clear{
  align-self:flex-start;
  background:none; border:0;
  font-size:13px; color:var(--ink-3);
  text-decoration:underline; text-underline-offset:3px;
}
.rail-clear:hover{ color:var(--ink); }

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:34px 26px;
}
.pcard{ display:flex; flex-direction:column; }
.pcard-media{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--bone-2);
  margin-bottom:16px;
}
.pcard-media img{
  width:100%; height:auto;
  aspect-ratio: 4/5;
  object-fit:cover;
  transition:transform .6s var(--ease);
}
.pcard-media:hover img{ transform:scale(1.035); }
.pcard-flag{
  position:absolute; top:12px; left:12px;
  background:var(--card);
  border:1px solid var(--line-soft);
  color:var(--sage-deep);
  font-size:11px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  border-radius:999px;
  padding:5px 12px;
}
.pcard-flag-out{ color:var(--ink-2); }
.pcard-body{ display:flex; flex-direction:column; gap:8px; flex:1; }
.pcard-top{ display:flex; justify-content:space-between; align-items:baseline; gap:12px; }
.pcard-name{
  font-family:var(--font-serif);
  font-size:18px; font-weight:500;
  line-height:1.25;
}
.pcard-price{ font-size:14.5px; font-weight:500; color:var(--ink-2); white-space:nowrap; }
.pcard-desc{ font-size:13.5px; color:var(--ink-2); flex:1; }
.pcard-foot{
  display:flex; justify-content:space-between; align-items:center;
  margin-top:6px;
}
.pcard-rating{ font-size:13px; color:var(--sage-deep); font-weight:500; }
.pcard-rc{ color:var(--ink-3); font-weight:400; }
.pcard-add{
  border:1px solid var(--line);
  background:transparent;
  border-radius:999px;
  padding:9px 18px;
  font-size:13px; font-weight:500;
  color:var(--ink);
  transition:all .22s var(--ease);
}
.pcard-add:hover:not(:disabled){ background:var(--ink); border-color:var(--ink); color:#F6F2EA; }
.pcard-add:disabled{ color:var(--ink-3); cursor:default; }

.shop-empty{ padding:70px 0; text-align:center; }
.shop-empty-title{ font-family:var(--font-serif); font-size:22px; margin-bottom:8px; }
.shop-empty-sub{ color:var(--ink-2); font-size:14.5px; margin-bottom:22px; }

/* ---------- Product detail ---------- */
.pdp-wrap{ max-width:1200px; margin:0 auto; padding:30px 28px 90px; }
.crumbs{ font-size:13px; color:var(--ink-3); margin-bottom:34px; display:flex; gap:8px; flex-wrap:wrap; }
.crumbs a:hover{ color:var(--ink); text-decoration:underline; text-underline-offset:3px; }
.pdp-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:64px;
  align-items:start;
  margin-bottom:80px;
}
.pdp-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--bone-2);
  position:sticky; top:110px;
}
.pdp-media img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.pdp-name{
  font-family:var(--font-serif);
  font-weight:400;
  font-size:clamp(30px, 3.4vw, 42px);
  line-height:1.1;
  margin:6px 0 10px;
}
.pdp-rating{ font-size:14px; color:var(--sage-deep); font-weight:500; margin-bottom:18px; }
.pdp-rc{ color:var(--ink-3); font-weight:400; text-decoration:underline; text-underline-offset:3px; }
.pdp-price{ font-size:24px; font-weight:500; margin-bottom:14px; }
.pdp-price s{ color:var(--ink-3); font-weight:400; font-size:18px; margin-left:6px; }
.pdp-price-sub{ font-size:13px; color:var(--sage-deep); font-weight:500; margin-left:4px; }
.pdp-desc{ font-size:15.5px; color:var(--ink-2); margin-bottom:28px; max-width:52ch; }
.opt-label{
  font-size:12px; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink-3);
  margin-bottom:10px;
}
.pdp-vars{ margin-bottom:24px; display:flex; flex-wrap:wrap; gap:10px; }
.pdp-vars .opt-label{ width:100%; }
.var-pill{
  border:1px solid var(--line);
  background:transparent;
  border-radius:12px;
  padding:11px 18px;
  font-size:14px; color:var(--ink);
  transition:all .2s var(--ease);
}
.var-pill:hover:not(:disabled){ border-color:var(--sage-deep); }
.var-pill.on{ border-color:var(--ink); background:var(--card); box-shadow:inset 0 0 0 1px var(--ink); }
.var-pill:disabled{ color:var(--ink-3); text-decoration:line-through; cursor:default; }
.var-low{ color:var(--sage-deep); font-size:12px; font-weight:500; }
.pdp-purchase{ margin-bottom:26px; display:flex; flex-direction:column; gap:10px; }
.buy-opt{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:2px 14px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:14px;
  padding:15px 18px;
  cursor:pointer;
  transition:all .2s var(--ease);
}
.buy-opt input{ position:absolute; opacity:0; pointer-events:none; }
.buy-opt.on{ border-color:var(--ink); background:var(--card); box-shadow:inset 0 0 0 1px var(--ink); }
.buy-opt-title{ font-size:14.5px; font-weight:500; }
.buy-opt-badge{
  display:inline-block;
  font-size:11px; font-weight:600;
  color:var(--sage-deep);
  background:var(--sage-soft);
  border-radius:999px;
  padding:3px 10px;
  margin-left:8px;
}
.buy-opt-price{ font-size:15px; font-weight:500; }
.buy-opt-cad{ grid-column:1 / -1; font-size:13px; color:var(--ink-2); margin-top:6px; }
.buy-opt-cad select{
  margin-left:6px;
  padding:5px 10px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--bone);
  font-family:inherit; font-size:13px;
}
.pdp-buy{ display:flex; gap:14px; align-items:stretch; margin-bottom:24px; flex-wrap:wrap; }
.pdp-add{ flex:1; min-width:220px; }
.pdp-soldout{
  border:1px dashed var(--line);
  border-radius:14px;
  padding:16px 20px;
  color:var(--ink-2);
  font-size:14.5px;
  margin-bottom:24px;
}
.qty-step{
  display:inline-flex; align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
}
.qty-step button{
  background:none; border:0;
  width:36px; height:38px;
  font-size:17px; color:var(--ink-2);
  transition:background .2s var(--ease);
}
.qty-step button:hover{ background:var(--bone-2); color:var(--ink); }
.qty-step span{ min-width:28px; text-align:center; font-size:14.5px; font-weight:500; }
.qty-step-lg button{ width:44px; height:50px; }
.qty-step-lg span{ min-width:34px; }
.pdp-values{
  display:flex; gap:20px; flex-wrap:wrap;
  border-top:1px solid var(--line-soft);
  padding-top:20px;
  margin-bottom:26px;
}
.pdp-values li{
  font-size:12.5px; font-weight:500;
  color:var(--sage-deep);
  letter-spacing:.04em;
}
.pdp-values li::before{ content:'✓ '; }
.accordions{ border-top:1px solid var(--line-soft); }
.acc{ border-bottom:1px solid var(--line-soft); }
.acc summary{
  cursor:pointer;
  list-style:none;
  padding:17px 2px;
  font-size:15px; font-weight:500;
  display:flex; justify-content:space-between; align-items:center;
}
.acc summary::-webkit-details-marker{ display:none; }
.acc summary::after{ content:'+'; font-size:19px; color:var(--ink-3); transition:transform .25s var(--ease); }
.acc[open] summary::after{ transform:rotate(45deg); }
.acc p, .acc-list{ padding:0 2px 18px; font-size:14.5px; color:var(--ink-2); }
.acc-list li{ padding:3px 0; }
.acc-list li::before{ content:'· '; color:var(--sage-deep); }

.section-title{
  font-family:var(--font-serif);
  font-weight:400;
  font-size:clamp(26px, 3vw, 34px);
  margin-bottom:10px;
}
.pdp-reviews{ margin-bottom:80px; }
.reviews-note{ font-size:13px; color:var(--ink-3); margin-bottom:26px; }
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.review-card{
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:26px 26px 22px;
}
.review-stars{ color:var(--sage-deep); letter-spacing:.14em; font-size:13px; margin-bottom:12px; }
.review-card blockquote{
  font-family:var(--font-serif);
  font-size:16.5px;
  line-height:1.5;
  margin-bottom:14px;
}
.review-card figcaption{ font-size:13px; color:var(--ink-3); }
.pdp-similar-grid{ margin-top:26px; }

/* ---------- Cart drawer ---------- */
.drawer-overlay{
  position:fixed; inset:0;
  background:rgba(38,37,31,.4);
  opacity:0;
  transition:opacity .35s var(--ease);
  z-index:95;
}
.drawer-overlay.show{ opacity:1; }
.cart-drawer{
  position:fixed; top:0; right:0; bottom:0;
  width:min(420px, 100vw);
  background:var(--bone);
  z-index:96;
  transform:translateX(102%);
  transition:transform .4s var(--ease);
  display:flex; flex-direction:column;
  box-shadow:-20px 0 60px -20px rgba(38,37,31,.3);
}
.cart-drawer.open{ transform:none; }
.drawer-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 26px 16px;
  border-bottom:1px solid var(--line-soft);
}
.drawer-title{ font-family:var(--font-serif); font-weight:500; font-size:21px; }
.drawer-close{
  background:none; border:0;
  font-size:26px; line-height:1;
  color:var(--ink-2);
  width:36px; height:36px;
}
.drawer-close:hover{ color:var(--ink); }
.drawer-ship{ padding:16px 26px 0; }
.ship-label{ font-size:12.5px; color:var(--ink-2); margin-bottom:8px; }
.ship-label-done{ color:var(--sage-deep); font-weight:500; }
.ship-bar{
  height:4px; border-radius:999px;
  background:var(--line-soft);
  overflow:hidden;
}
.ship-bar span{
  display:block; height:100%;
  background:var(--sage-deep);
  border-radius:999px;
  transition:width .5s var(--ease);
}
.drawer-lines{ flex:1; overflow-y:auto; padding:18px 26px; display:flex; flex-direction:column; gap:20px; }
.drawer-line{
  display:grid;
  grid-template-columns: 72px 1fr auto;
  gap:16px;
  align-items:start;
}
.drawer-line img{
  width:72px; height:90px;
  object-fit:cover;
  border-radius:10px;
  background:var(--bone-2);
}
.line-name{ font-family:var(--font-serif); font-size:15.5px; font-weight:500; margin-bottom:2px; }
.line-meta{ font-size:12.5px; color:var(--ink-3); margin-bottom:10px; }
.line-sub{ color:var(--sage-deep); font-weight:500; }
.line-controls{ display:flex; align-items:center; gap:14px; }
.line-controls .qty-step button{ width:28px; height:30px; font-size:15px; }
.line-controls .qty-step span{ min-width:22px; font-size:13px; }
.line-remove{
  background:none; border:0;
  font-size:12px; color:var(--ink-3);
  text-decoration:underline; text-underline-offset:3px;
}
.line-remove:hover{ color:var(--ink); }
.line-price{ font-size:14.5px; font-weight:500; }
.drawer-empty{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px; color:var(--ink-2); }
.drawer-foot{
  border-top:1px solid var(--line-soft);
  padding:18px 26px 24px;
  background:var(--card);
}
.drawer-row{
  display:flex; justify-content:space-between;
  font-size:15.5px; font-weight:500;
  margin-bottom:8px;
}
.drawer-note{ font-size:11.5px; color:var(--ink-3); margin-bottom:14px; }
.drawer-checkout{ width:100%; }

/* ---------- Checkout ---------- */
.demo-ribbon-strong{ background:#4A2E20; color:#F3E6D8; }
.co{ min-height:60vh; }
.co-inner{ max-width:1100px; margin:0 auto; padding:44px 28px 90px; }
.co-empty{ text-align:center; padding:80px 0; display:flex; flex-direction:column; align-items:center; gap:10px; }
.co-empty .btn{ margin-top:14px; }
.co-grid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:56px;
  align-items:start;
}
.co-steps{
  display:flex; gap:26px;
  margin-bottom:34px;
  padding:0;
}
.co-steps li{
  display:flex; align-items:center; gap:9px;
  font-size:13.5px; font-weight:500;
  color:var(--ink-3);
}
.co-steps li .num{
  width:26px; height:26px;
  border:1px solid var(--line);
  border-radius:999px;
  display:grid; place-items:center;
  font-size:12px;
}
.co-steps li.on{ color:var(--ink); }
.co-steps li.on .num{ background:var(--ink); border-color:var(--ink); color:#F6F2EA; }
.co-steps li.done{ color:var(--sage-deep); }
.co-steps li.done .num{ background:var(--sage-soft); border-color:var(--sage-soft); color:var(--sage-deep); }
.co-title{
  font-family:var(--font-serif);
  font-weight:400;
  font-size:clamp(26px, 3vw, 34px);
  margin-bottom:24px;
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.co-test-chip{
  font-family:var(--font-sans);
  font-size:11px; font-weight:600;
  letter-spacing:.12em;
  color:#8A5A2B;
  background:#F3E6D2;
  border:1px solid #E4CBA6;
  border-radius:999px;
  padding:5px 12px;
}
.field{ margin-bottom:18px; }
.field label{
  display:block;
  font-size:12.5px; font-weight:600;
  letter-spacing:.06em;
  color:var(--ink-2);
  margin-bottom:7px;
}
.field input, .field select{
  width:100%;
  padding:13px 15px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--card);
  font-family:inherit; font-size:15px;
  color:var(--ink);
  transition:border-color .2s var(--ease);
}
.field input:focus, .field select:focus{ outline:none; border-color:var(--sage-deep); }
.field-row{ display:grid; grid-template-columns:repeat(auto-fit, minmax(120px, 1fr)); gap:14px; }
.field-hint{ font-size:12.5px; color:var(--ink-3); margin-top:7px; }
.field-err{
  color:#8C3B2E;
  font-size:13.5px;
  background:#F5E3DE;
  border-radius:10px;
  padding:11px 15px;
  margin-bottom:16px;
}
.co-nav{ display:flex; gap:14px; margin-top:10px; }
.co-next{ min-width:220px; }
.co-next.processing{ opacity:.75; cursor:wait; }
.co-filler{
  background:var(--sage-soft);
  border:1px solid var(--sage);
  color:var(--sage-deep);
  font-size:13px; font-weight:600;
  border-radius:999px;
  padding:9px 18px;
  margin-bottom:22px;
  transition:all .2s var(--ease);
}
.co-filler:hover{ background:var(--sage); color:#fff; }

.co-aside{
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:var(--radius-lg);
  padding:26px;
  position:sticky; top:110px;
}
.co-aside-title{ font-family:var(--font-serif); font-weight:500; font-size:19px; margin-bottom:18px; }
.co-aside-lines{ display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.co-line{
  display:grid; grid-template-columns:54px 1fr auto;
  gap:12px; align-items:center;
}
.co-line img{ width:54px; height:66px; object-fit:cover; border-radius:8px; background:var(--bone-2); }
.co-line-name{ font-family:var(--font-serif); font-size:14.5px; font-weight:500; }
.co-line-meta{ font-size:12px; color:var(--ink-3); }
.co-line-price{ font-size:13.5px; font-weight:500; }
.co-aside-rows{ border-top:1px solid var(--line-soft); padding-top:16px; }
.co-row{ font-size:14px; font-weight:400; color:var(--ink-2); margin-bottom:8px; }
.co-row-total{ font-size:16.5px; font-weight:600; color:var(--ink); margin-top:4px; }

.co-confirm-script{
  font-family:"Italianno", var(--font-serif);
  font-size:64px;
  line-height:1;
  color:var(--sage-deep);
  margin-bottom:6px;
}
.co-paid{
  font-family:var(--font-sans);
  font-size:11px; font-weight:700;
  letter-spacing:.12em;
  color:#3E6B45;
  background:#DFEBDD;
  border:1px solid #B9D2B6;
  border-radius:999px;
  padding:5px 12px;
}
.co-confirm-sub{ color:var(--ink-2); font-size:15px; margin-bottom:24px; }
.co-confirm-box{
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:20px 24px;
  margin-bottom:26px;
}
.co-conf-row{
  display:flex; justify-content:space-between; gap:18px;
  font-size:14px; color:var(--ink-2);
  padding:7px 0;
}
.co-conf-total{
  border-top:1px solid var(--line-soft);
  margin-top:8px; padding-top:14px;
  font-weight:600; font-size:15.5px; color:var(--ink);
}
.co-confirm-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:12px; }

/* ---------- Admin console ---------- */
.admin-body{ background:var(--bone-2); }
.gate{
  min-height:calc(100vh - 30px);
  display:grid; place-items:center;
  padding:40px 20px;
}
.gate-card{
  width:min(400px, 100%);
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  padding:38px 36px 30px;
}
.gate-brand{
  font-family:var(--font-serif);
  letter-spacing:.3em; font-size:17px;
  margin-bottom:4px;
}
.gate-brand span{ color:var(--sage-deep); font-size:11px; letter-spacing:.34em; }
.gate-title{
  font-family:var(--font-serif); font-weight:400;
  font-size:27px; margin:10px 0 22px;
}
.gate-btn{ width:100%; margin-top:6px; }
.gate-fill{
  display:block; width:100%;
  background:none; border:0;
  margin-top:14px;
  font-size:13px; color:var(--sage-deep);
  text-decoration:underline; text-underline-offset:3px;
}
.gate-fill:hover{ color:var(--ink); }
.gate-note{ margin-top:18px; font-size:12px; color:var(--ink-3); text-align:center; }

.console{
  display:grid;
  grid-template-columns: 230px 1fr;
  min-height:calc(100vh - 30px);
}
.con-side{
  background:var(--ink);
  color:#D9D4C7;
  padding:26px 18px;
  display:flex; flex-direction:column;
}
.con-brand{
  font-family:var(--font-serif);
  color:#F4F0E9;
  letter-spacing:.28em; font-size:15px;
  padding:0 10px 22px;
}
.con-brand span{ color:var(--sage); font-size:10px; letter-spacing:.32em; }
.con-nav{ display:flex; flex-direction:column; gap:4px; }
.con-nav button{
  display:flex; align-items:center; gap:11px;
  background:none; border:0;
  color:#B9B4A5;
  font-size:13.5px; font-weight:500;
  padding:11px 12px;
  border-radius:10px;
  text-align:left;
  transition:all .2s var(--ease);
}
.con-nav button svg{ width:17px; height:17px; flex:none; }
.con-nav button:hover{ background:rgba(244,240,233,.07); color:#F4F0E9; }
.con-nav button.on{ background:rgba(138,154,130,.18); color:#F4F0E9; }
.con-badge{
  margin-left:auto;
  background:var(--sage);
  color:#1E241B;
  font-size:10.5px; font-weight:700;
  min-width:18px; height:18px;
  border-radius:999px;
  display:grid; place-items:center;
  padding:0 5px;
}
.con-badge-soft{ background:rgba(138,154,130,.25); color:var(--sage); letter-spacing:.06em; padding:0 7px; }
.con-side-foot{
  margin-top:auto;
  display:flex; flex-direction:column; gap:4px;
  border-top:1px solid rgba(244,240,233,.12);
  padding-top:16px;
}
.con-side-foot a, .con-side-foot button{
  background:none; border:0;
  color:#B9B4A5; font-size:12.5px;
  padding:8px 12px; text-align:left;
  border-radius:8px;
  transition:all .2s var(--ease);
}
.con-side-foot a:hover, .con-side-foot button:hover{ background:rgba(244,240,233,.07); color:#F4F0E9; }

.con-main{ padding:30px 34px 60px; min-width:0; }
.con-top{
  display:flex; align-items:center; gap:16px;
  margin-bottom:24px; flex-wrap:wrap;
}
.con-title{ font-family:var(--font-serif); font-weight:400; font-size:30px; }
.con-chip{
  font-size:11.5px; font-weight:600;
  letter-spacing:.06em;
  color:var(--sage-deep);
  background:var(--sage-soft);
  border-radius:999px;
  padding:6px 13px;
}
.con-card{
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:22px 24px;
  margin-bottom:22px;
  overflow-x:auto;
}
.con-card h2, .con-card-h{
  font-family:var(--font-sans);
  font-size:13px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-2);
  margin-bottom:14px;
}
.con-card-head{
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  margin-bottom:8px; flex-wrap:wrap;
}
.con-card-head h2{ margin-bottom:0; }
.con-card-note{ color:var(--ink-3); font-weight:400; text-transform:none; letter-spacing:0; }
.con-cols{
  display:grid;
  grid-template-columns: 1.4fr 1fr;
  gap:22px;
}
.con-cols .con-card{ margin-bottom:0; }
.con-cols{ margin-bottom:22px; }

.kpis{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-bottom:22px;
}
.kpi{
  background:var(--card);
  border:1px solid var(--line-soft);
  border-radius:var(--radius);
  padding:18px 20px;
}
.kpi-label{
  font-size:11.5px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-3);
  margin-bottom:8px;
}
.kpi-value{ font-size:26px; font-weight:600; line-height:1.1; margin-bottom:6px; overflow-wrap:anywhere; }
.kpi-note{ font-size:12px; color:var(--sage-deep); }

.spark{ width:100%; height:auto; display:block; }
.spark-base{ stroke:var(--line-soft); stroke-width:1; }
.spark-read{ font-size:13px; color:var(--ink-2); font-weight:500; }

.feed{ display:flex; flex-direction:column; gap:14px; }
.feed-item{ display:flex; gap:12px; align-items:flex-start; }
.feed-pulse{
  width:9px; height:9px; border-radius:999px;
  background:#3C8A47;
  margin-top:6px; flex:none;
  box-shadow:0 0 0 0 rgba(60,138,71,.5);
  animation:pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(60,138,71,.45); }
  70%{ box-shadow:0 0 0 9px rgba(60,138,71,0); }
  100%{ box-shadow:0 0 0 0 rgba(60,138,71,0); }
}
.feed-line{ font-size:14px; }
.feed-meta{ font-size:12px; color:var(--ink-3); }
.feed-empty{ font-size:13.5px; color:var(--ink-2); margin-bottom:14px; }
.feed-cta{ padding:10px 20px; font-size:13px; }

.low-row{
  display:flex; align-items:center; gap:12px;
  padding:9px 0;
  border-bottom:1px solid var(--line-soft);
  font-size:13.5px;
}
.low-row:last-child{ border-bottom:0; }
.low-dot{ width:8px; height:8px; border-radius:999px; background:#C98A2B; flex:none; }
.low-dot-out{ background:#8C3B2E; }
.low-n{ color:#8C5A1D; font-weight:600; margin-left:auto; }
.con-mini{
  border:1px solid var(--line);
  background:var(--bone);
  border-radius:999px;
  padding:6px 13px;
  font-size:12px; font-weight:500;
  color:var(--ink);
  transition:all .2s var(--ease);
  white-space:nowrap;
}
.con-mini:hover{ border-color:var(--ink); background:var(--ink); color:#F6F2EA; }

.con-table{
  width:100%;
  border-collapse:collapse;
  font-size:13.5px;
  min-width:640px;
}
.con-table th{
  text-align:left;
  font-size:11px; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-3);
  padding:10px 12px;
  border-bottom:1px solid var(--line);
}
.con-table td{
  padding:13px 12px;
  border-bottom:1px solid var(--line-soft);
  vertical-align:middle;
}
.con-table tr:last-child td{ border-bottom:0; }
.ta-r{ text-align:right; }
.td-meta{ font-size:12px; color:var(--ink-3); }
.td-items{ max-width:280px; color:var(--ink-2); }
.row-out td{ opacity:.55; }
.status-pill{
  display:inline-block;
  font-size:11px; font-weight:600;
  letter-spacing:.05em;
  border-radius:999px;
  padding:4px 11px;
}
.status-new{ background:#E7EDF7; color:#2E5077; }
.status-fulfilled, .status-ok{ background:#DFEBDD; color:#3E6B45; }
.status-out{ background:#F0E4E0; color:#8C3B2E; }
.chip-live{
  display:inline-block;
  background:#3C8A47; color:#fff;
  font-size:9.5px; font-weight:700;
  letter-spacing:.08em;
  border-radius:999px;
  padding:2.5px 8px;
  vertical-align:middle;
}
.chip-test{
  display:inline-block;
  background:#F3E6D2; color:#8A5A2B;
  font-size:9.5px; font-weight:700;
  letter-spacing:.08em;
  border-radius:999px;
  padding:2.5px 8px;
  vertical-align:middle;
}
.inv-name{ display:flex; gap:12px; align-items:center; }
.inv-name img{ border-radius:8px; object-fit:cover; width:40px; height:50px; }
.stock-ctl{
  display:inline-flex; align-items:center; gap:8px;
  justify-content:flex-end;
}
.stock-ctl .con-mini{ width:26px; height:26px; padding:0; display:grid; place-items:center; }
.add-form{
  border:1px dashed var(--line);
  border-radius:14px;
  padding:18px;
  margin-bottom:18px;
}
.con-add-btn{ padding:10px 20px; font-size:13px; }

/* ---------- Social Studio ---------- */
.ss-banner{
  background:#F3E6D2;
  color:#8A5A2B;
  border:1px solid #E4CBA6;
  border-radius:10px;
  font-size:11.5px; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  text-align:center;
  padding:9px 14px;
  margin-bottom:20px;
}
.ss-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:28px;
  margin-bottom:26px;
}
.ss-text{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--bone);
  font-family:inherit; font-size:14px;
  color:var(--ink);
  padding:13px 15px;
  resize:vertical;
  margin-bottom:18px;
}
.ss-text:focus{ outline:none; border-color:var(--sage-deep); }
.ss-imgs{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.ss-img{
  border:2px solid transparent;
  border-radius:10px;
  padding:0;
  background:none;
  overflow:hidden;
  transition:border-color .2s var(--ease);
}
.ss-img img{ width:52px; height:52px; object-fit:cover; display:block; border-radius:8px; }
.ss-img.on{ border-color:var(--sage-deep); }
.ss-plats, .ss-when{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.ss-plat{
  border:1px solid var(--line);
  background:var(--bone);
  border-radius:999px;
  padding:8px 15px;
  font-size:12.5px; font-weight:500;
  color:var(--ink-2);
  transition:all .2s var(--ease);
}
.ss-plat:hover{ border-color:var(--sage-deep); color:var(--ink); }
.ss-plat.on{ background:var(--ink); border-color:var(--ink); color:#F6F2EA; }
.ss-go{ margin-top:4px; }

.ss-prev-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:14px;
  align-items:start;
}
.sp{
  background:#fff;
  border:1px solid var(--line-soft);
  border-radius:12px;
  overflow:hidden;
  font-size:12px;
  color:#222;
}
.sp-head{ display:flex; align-items:center; gap:8px; padding:9px 11px; }
.sp-av{
  width:26px; height:26px; border-radius:999px; flex:none;
  background:var(--sage); color:#fff;
  display:grid; place-items:center;
  font-family:var(--font-serif); font-size:13px;
}
.sp-av-sq{ border-radius:6px; }
.sp-dots{ margin-left:auto; color:#888; }
.sp-meta{ color:#7a7a7a; font-size:10.5px; }
.sp-img{ width:100%; display:block; object-fit:cover; }
.sp-sq{ aspect-ratio:1; }
.sp-tall{ aspect-ratio:9/14; }
.sp-icons{ padding:8px 11px 2px; font-size:14px; color:#333; }
.sp-save{ float:right; }
.sp-cap{ padding:7px 11px 11px; line-height:1.45; overflow-wrap:anywhere; }
.sp-fbbar{
  display:flex; justify-content:space-around;
  border-top:1px solid #eee;
  padding:8px; color:#65676b; font-size:11.5px;
}
.sp-tt, .sp-yt{ position:relative; background:#111; color:#fff; }
.sp-tt-side{
  position:absolute; right:8px; bottom:52px;
  display:flex; flex-direction:column; gap:10px;
  font-size:15px;
}
.sp-tt-cap, .sp-yt-cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:10px 12px;
  background:linear-gradient(transparent, rgba(0,0,0,.75));
  font-size:11px; line-height:1.4;
  overflow-wrap:anywhere;
}
.sp-yt-badge{
  display:inline-block;
  background:#f00; color:#fff;
  font-size:9px; font-weight:700;
  border-radius:4px;
  padding:2px 6px;
  margin-bottom:4px;
}
.ss-queue{ border-top:1px solid var(--line-soft); padding-top:18px; }
.ss-qrow{
  display:flex; align-items:center; gap:14px;
  padding:11px 0;
  border-bottom:1px solid var(--line-soft);
}
.ss-qrow:last-child{ border-bottom:0; }
.ss-qrow img{ width:44px; height:44px; object-fit:cover; border-radius:8px; flex:none; }
.ss-qinfo{ flex:1; min-width:0; }
.ss-qtext{
  font-size:13.5px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  max-width:52ch;
}

/* ---------- Toast ---------- */
.toast{
  position:fixed;
  left:50%; bottom:28px;
  transform:translate(-50%, 12px);
  background:var(--ink); color:#F6F2EA;
  font-size:14px;
  padding:13px 24px;
  border-radius:999px;
  box-shadow:var(--shadow-chip);
  opacity:0;
  transition:opacity .3s var(--ease), transform .3s var(--ease);
  z-index:90;
  max-width:calc(100vw - 40px);
  text-align:center;
}
.toast.show{ opacity:1; transform:translate(-50%, 0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .hero-inner{
    grid-template-columns:1fr;
    gap:44px;
    padding:44px 24px 64px;
  }
  .hero-visual{ justify-self:center; width:min(100%, 420px); }
  .hero-chip{ left:-8px; }
}
@media (max-width: 960px){
  .shop-inner{ grid-template-columns:1fr; gap:0; }
  .shop-filter-toggle{ display:inline-flex; margin-bottom:22px; padding:11px 22px; font-size:13.5px; }
  .shop-rail{
    display:none;
    position:static;
    padding:22px;
    border:1px solid var(--line-soft);
    border-radius:var(--radius);
    background:var(--card);
    margin-bottom:28px;
  }
  .shop-rail.open{ display:flex; }
  .shop-grid{ grid-template-columns:repeat(2, 1fr); gap:26px 16px; }
  .pdp-grid{ grid-template-columns:1fr; gap:36px; }
  .pdp-media{ position:static; }
  .reviews-grid{ grid-template-columns:1fr; }
  .home-sec{ padding:56px 0; }
  .ethos-grid, .ing-grid{ grid-template-columns:1fr; gap:34px; }
  .ing-grid .ing-media{ order:-1; }
  .sub-steps{ grid-template-columns:1fr; }
  .journal-grid{ grid-template-columns:1fr; gap:30px; }
  .footer-cols{ grid-template-columns:1fr 1fr; gap:28px; }
  .footer-col-brand, .footer-col-news{ grid-column:1 / -1; }
  .shop-grid.home-best{ grid-template-columns:repeat(2, 1fr); }
  .co-grid{ grid-template-columns:1fr; gap:34px; }
  .co-aside{ position:static; order:-1; }
  .co-steps{ gap:16px; flex-wrap:wrap; }
  .console{ grid-template-columns:1fr; }
  .con-side{ flex-direction:column; padding:18px; }
  .con-nav{ flex-direction:row; flex-wrap:wrap; }
  .con-nav button{ padding:9px 12px; font-size:12.5px; }
  .con-side-foot{ flex-direction:row; flex-wrap:wrap; margin-top:12px; padding-top:12px; }
  .con-main{ padding:22px 18px 50px; }
  .kpis{ grid-template-columns:repeat(2, 1fr); }
  .con-cols{ grid-template-columns:1fr; }
  .ss-grid{ grid-template-columns:1fr; }
}
@media (max-width: 720px){
  .nav{ padding:14px 18px; gap:16px; }
  .nav-burger{ display:flex; }
  .nav-links{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--bone);
    border-bottom:1px solid var(--line-soft);
    flex-direction:column; gap:0;
    padding:10px 18px 18px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:13px 4px; font-size:15px; border-bottom:1px solid var(--line-soft); }
  .brand{ font-size:20px; margin:0 auto; }
  .hero-h1{ font-size:clamp(60px, 17vw, 76px); }
  .hero-sub{ font-size:16px; }
  .values-row{ justify-content:flex-start; }
  .shop-grid{ grid-template-columns:1fr 1fr; }
  .pcard-name{ font-size:16px; }
  .pcard-desc{ display:none; }
  .pcard-add{ padding:8px 13px; font-size:12px; }
}

/* ---------- Admin pill — persistent floating entry to the store dashboard (demo)
   Sits below the cart drawer/overlay (95/96) and the toast (90) ---------- */
.admin-pill{
  position:fixed; right:18px; bottom:18px; z-index:80;
  display:inline-flex; align-items:center; gap:7px;
  padding:12px 19px; border-radius:999px;
  background:var(--ink); color:#F6F2EA;
  font-size:13.5px; font-weight:600; letter-spacing:.02em;
  border:1px solid rgba(246,242,234,.16);
  box-shadow:var(--shadow-chip);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.admin-pill:hover{
  color:#fff; transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(38,37,31,.28);
}
@media (max-width: 720px){
  .admin-pill{ right:12px; bottom:12px; padding:10px 15px; font-size:12.5px; }
}
