:root{
    --ink:#151b24;
    --body:#3c4043;
    --accent:#1e3a5f;
    --accent-dark:#152a46;
    --tint-pale:#eaeff5;
    --tint-mid:#d8e2ed;
    --tint-grey:#f2f4f6;
    --tint-warm:#fce9e4;
    --line:#dadce0;
    --r:28px;
    --maxw:1760px;
    --blockpad:72px;
    --font:"DM Sans","Google Sans",Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html{scroll-behavior:smooth}
  /* the header is sticky and 70px tall — without this, jumping to a section
     parks its heading underneath the menu */
  :target,[id]{scroll-margin-top:86px}
  body{font-family:var(--font);color:var(--body);background:#fff;font-size:16px;line-height:1.5;-webkit-font-smoothing:antialiased}
  img{max-width:100%;height:auto;display:block}
  a{color:inherit;text-decoration:none}

  .wrap{width:100%}
  /* text stays readable even though the colour runs edge to edge */
  .inner{max-width:var(--maxw);margin:0 auto}

  h1,h2,h3,h4{color:var(--ink);font-weight:500}
  h1{font-size:clamp(40px,6.2vw,76px);line-height:1.06;letter-spacing:-1px}
  .h2{font-size:clamp(32px,4.8vw,60px);line-height:1.1;letter-spacing:-1px;font-weight:500;color:var(--ink)}
  .h3{font-size:clamp(26px,3.2vw,40px);line-height:1.15;letter-spacing:-.5px;font-weight:500;color:var(--ink)}
  .sub{font-size:clamp(17px,1.5vw,20px);line-height:1.5;color:var(--body)}

  /* NAV */
  /* scoped to the header only — a bare `nav` selector also hits the footer nav */
  #nav{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(16px);border-bottom:1px solid transparent;transition:border-color .3s}
  #nav.scrolled{border-color:var(--line)}
  .nav-in{margin:0 auto;padding:14px var(--blockpad);display:flex;align-items:center;justify-content:space-between;gap:20px}
  /* on desktop, three columns so the centre menu is truly centred regardless of
     what sits left or right. Mobile keeps simple left/right (menu is hidden). */
  @media(min-width:821px){
    .nav-in{display:grid;grid-template-columns:1fr auto 1fr}
    /* keep the side items at the edges — without this a bare button in the
       right column stretches across the whole third of the bar */
    .nav-in > :first-child{justify-self:start}
    .nav-in > :last-child{justify-self:end}
  }
  .brand{font-weight:700;font-size:20px;letter-spacing:-.5px;color:var(--ink);display:inline-flex;align-items:center}
  .brand img{height:26px;width:auto;display:block}
  @media(max-width:520px){.brand img{height:22px}}
  .nav-links{display:flex;gap:6px;justify-content:center}
  .nav-links a{font-size:14px;font-weight:500;color:var(--ink);padding:9px 14px;border-radius:100px;transition:background .2s}
  .nav-links a:hover{background-color:var(--tint-grey)}
  .nav-right{display:flex;align-items:center;gap:10px;justify-content:flex-end}
  .nav-account{font-size:14px;font-weight:500;color:var(--ink);padding:9px 12px;border-radius:100px;white-space:nowrap}
  .nav-account:hover{background-color:var(--tint-grey)}
  @media(max-width:820px){.nav-account{display:none}}

  /* MOBILE MENU — without this the nav links simply vanish on a phone
     and Specs / Postage / Reviews become unreachable */
  .nav-toggle{display:none;width:44px;height:44px;border:0;background:transparent;
              cursor:pointer;flex-direction:column;justify-content:center;align-items:center;gap:5px;
              border-radius:100px}
  .nav-toggle:hover{background-color:var(--tint-grey)}
  .nav-toggle span{display:block;width:20px;height:2px;background:var(--ink);border-radius:2px;
                   transition:transform .2s,opacity .2s}
  .nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
  .nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .nav-menu{display:none;border-top:1px solid var(--line);padding:8px 16px 16px}
  .nav-menu a{display:block;font-size:17px;font-weight:500;color:var(--ink);
              padding:14px 8px;border-radius:12px;min-height:48px}
  .nav-menu a:active{background-color:var(--tint-grey)}

  @media(max-width:820px){
    .nav-links{display:none}
    .nav-toggle{display:flex}
    .nav-menu[data-open="true"]{display:block}
  }

  .btn{display:inline-flex;align-items:center;justify-content:center;font-family:inherit;font-size:14px;font-weight:500;padding:11px 24px;border-radius:100px;border:1px solid transparent;cursor:pointer;transition:background .2s,border-color .2s}
  .btn-primary{background-color:var(--accent);color:#fff}
  .btn-primary:hover{background-color:var(--accent-dark)}
  .btn-outline{background:transparent;color:var(--accent);border-color:var(--line)}
  .btn-outline:hover{background-color:var(--tint-pale)}
  .btn-lg{font-size:16px;padding:14px 32px}
  .btn-onblack{background:#fff;color:var(--ink)}
  .btn-onblack:hover{background:#e8eaed}

  /* BLOCKS */
  .block{overflow:hidden;padding:var(--blockpad)}
  .t-pale{background-color:var(--tint-pale)}
  .t-mid{background-color:var(--tint-mid)}
  .t-grey{background-color:var(--tint-grey)}
  .t-warm{background-color:var(--tint-warm)}
  .t-dark{background-color:var(--ink);color:#c9ccce}
  .t-dark .h2,.t-dark h3{color:#fff}
  @media(max-width:1100px){:root{--blockpad:48px}}
  @media(max-width:820px){:root{--blockpad:28px}}

  /* photos that run to the edge of their block */
  .bleed{margin:44px calc(var(--blockpad) * -1) 0;width:auto}
  .bleed img{width:100%}

  /* HERO — sized so the whole thing lands inside one screen */
  .hero{text-align:center;padding-top:72px;padding-bottom:0}
  .eyebrow{font-size:14px;font-weight:500;color:var(--accent);margin-bottom:20px}
  .hero .sub{font-size:clamp(18px,1.7vw,22px);max-width:46ch;margin:26px auto 0}
  .cta-row{margin-top:38px;display:flex;gap:12px;justify-content:center;align-items:center;flex-wrap:wrap}
  .price-note{font-size:14px;color:var(--body)}
  /* photo runs to both screen edges and fills whatever height is left,
     so the hero is exactly one screen and the next section never peeks in */
  .hero-img{margin:36px calc(var(--blockpad) * -1) 0;overflow:hidden;background:#fff}
  .hero-img img{width:100%;height:clamp(240px,44vh,560px);object-fit:cover;object-position:center}
  /* One screen only where there is room for it. Tall desktop screens get the
     hero locked to the viewport, with the photo taking whatever is left. */
  @media(min-width:821px) and (min-height:860px){
    .hero{min-height:calc(100vh - 70px);display:flex;flex-direction:column}
    /* basis 0 so the box takes the leftover space rather than sizing to the photo */
    .hero-img{flex:1 1 0;min-height:300px}
    .hero-img img{height:100%}
  }
  /* Short, wide screens — Chromebooks and most laptops. The text stack alone
     nearly fills the screen, so forcing the hero into one screen squashed the
     photo into a letterbox and clipped its bottom. Tighten the text, then let
     the photo keep a sensible shape and let the page scroll instead. */
  @media(min-width:821px) and (max-height:859px){
    .hero{padding-top:48px}
    .hero .sub{margin-top:20px}
    .cta-row{margin-top:26px}
    .trust{margin-top:22px}
    .hero{min-height:calc(100vh - 70px);display:flex;flex-direction:column}
    .hero-img{margin-top:28px;flex:1 1 0;min-height:230px}
    /* contain, not cover: the photo shrinks to fit the space that's left
       instead of being crop-zoomed into the middle of the printer. Its own
       background is white and so is the box, so nothing shows a seam. */
    .hero-img img{height:100%;object-fit:contain;object-position:center bottom}
  }
  @media(min-width:821px) and (max-height:700px){
    .hero{padding-top:34px}
    .hero .sub{margin-top:14px}
    .cta-row{margin-top:20px}
    .trust{margin-top:16px}
    .hero-img{margin-top:20px}
  }
  @media(max-width:820px){.hero-img img{height:clamp(220px,34vh,360px)}.br-lg{display:none}}

  /* SHOWCASE — full-width feature, breaks the side-by-side rhythm.
     Generous vertical space: it sits between two big photos and reads as a
     thin strip if it only gets the standard block padding. */
  /* padding-bottom 0 so the photo meets the next section cleanly instead of
     leaving a stranded strip of colour underneath it */
  .showcase{text-align:center;padding-top:270px;padding-bottom:0}
  .showcase .h2{max-width:18ch;margin:0 auto}
  .showcase p{margin:22px auto 0;font-size:21px;line-height:1.5;max-width:44ch}
  .showcase .showcase-img{margin-top:210px}
  @media(max-width:820px){
    .showcase{padding-top:165px}
    .showcase .showcase-img{margin-top:132px}
  }
  .showcase-img img{aspect-ratio:3.4/1;object-fit:cover;object-position:center 62%}
  /* shorter, wider band — a different shape to the big showcase image */
  .showcase-img.band img{aspect-ratio:32/9;object-position:center 58%}
  @media(max-width:820px){.showcase-img img,.showcase-img.band img{aspect-ratio:3/2}}

  /* PRODUCT ON COLOUR — cut-out floating, no split, breaks the 50/50 rhythm */
  .hero-product{text-align:center;padding-bottom:0}
  .hero-product .h2{max-width:18ch;margin:0 auto}
  .hero-product p{margin:16px auto 0;font-size:20px;line-height:1.45;max-width:40ch}
  .hero-product img{width:min(860px,78%);margin:8px auto 0}
  @media(max-width:820px){.hero-product img{width:92%}}

  .trust{margin-top:32px;display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
  /* all badges look identical — the accent is reserved for the one real CTA */
  .trust span{font-size:13px;font-weight:500;color:var(--ink);background:rgba(255,255,255,.7);padding:7px 14px;border-radius:100px}

  /* SPLIT — half colour, half photo, both running to the screen edge */
  .block.duo{padding:0}
  .split{display:grid;grid-template-columns:1fr 1fr;align-items:stretch;min-height:560px}
  .split.rev .copy{order:2}
  .split .copy{align-self:center;padding:var(--blockpad) clamp(32px,5vw,110px)}
  .split .copy > *{max-width:46ch}
  .split .copy p{margin-top:16px;font-size:20px;line-height:1.45}
  .kicker{font-size:13px;font-weight:500;color:var(--accent);text-transform:uppercase;letter-spacing:.6px;margin-bottom:14px}
  .split .pic{position:relative;min-height:460px}
  .split .pic img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
  /* cut-out product shots float on the colour instead of filling it */
  .split .pic.float img{object-fit:contain;padding:clamp(28px,4vw,72px)}

  /* swipeable photo gallery — swipe on a phone, arrows or dots on a desktop */
  .split .pic.gal{overflow:hidden;touch-action:pan-y}
  .gal-track{position:absolute;inset:0;display:flex;transition:transform .35s cubic-bezier(.4,0,.2,1);will-change:transform}
  .split .pic.gal .gal-track img{position:relative;inset:auto;flex:0 0 100%;width:100%;height:100%;
             object-fit:cover;user-select:none;-webkit-user-drag:none}
  .gal-dots{position:absolute;left:0;right:0;bottom:16px;z-index:2;display:flex;gap:7px;justify-content:center}
  .gal-dots button{width:7px;height:7px;padding:0;border:0;border-radius:50%;cursor:pointer;
             background:rgba(255,255,255,.55);transition:background .15s,width .15s}
  .gal-dots button.on{background:#fff;width:20px;border-radius:100px}
  /* the words change with the photo — stacked so the section never jumps */
  .split .copy:has(.gal-copy){display:grid}
  .gal-copy{grid-area:1/1;opacity:0;visibility:hidden;transform:translateY(8px);
            transition:opacity .3s ease,transform .3s ease,visibility .3s}
  .gal-copy.on{opacity:1;visibility:visible;transform:none}
  .split.tall{min-height:660px}
  @media(max-width:820px){
    .split{grid-template-columns:1fr;min-height:0}
    .split.rev .copy{order:0}
    .split .pic{min-height:0;height:320px}
  }

  /* ASIDE — left-aligned editorial beat, so it doesn't read as another
     centred block stacked on the one below it */
  .aside{padding-top:104px;padding-bottom:104px}
  .aside .h2{max-width:14ch}
  .aside p{margin-top:14px;font-size:20px;line-height:1.45;max-width:40ch;color:var(--body)}
  @media(max-width:820px){.aside{padding-top:64px;padding-bottom:64px}}

  /* STATEMENT */
  .statement{text-align:center;padding:96px var(--blockpad)}
  .statement .h2{max-width:16ch;margin:0 auto}
  .statement .sub{max-width:46ch;margin:20px auto 0}

  /* SPECS */
  .specs{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
  .spec{background:#fff;border-radius:20px;padding:28px 24px}
  .spec .n{font-size:26px;font-weight:500;color:var(--ink);letter-spacing:-.5px}
  .spec .l{font-size:14px;color:var(--body);margin-top:6px}
  @media(max-width:820px){
    .specs{grid-template-columns:1fr 1fr}
    /* the wordier tiles wrap to three lines at full size and break the row */
    .spec{padding:22px 18px}
    .spec .n{font-size:21px;letter-spacing:-.2px}
    .spec .l{font-size:13.5px}
  }

  /* POSTAGE */
  .center-head{text-align:center;max-width:640px;margin:0 auto 44px}
  .center-head .sub{margin-top:16px}
  .ship-card{max-width:720px;margin:0 auto;background:#fff;border-radius:28px;padding:36px 40px;box-shadow:0 24px 60px -28px rgba(10,15,22,.28)}
  .ship-card h4{font-size:16px;color:var(--body);font-weight:500;margin-bottom:20px}
  @media(max-width:600px){.ship-card{padding:24px 22px;border-radius:22px}}
  .field{display:flex;gap:10px;margin-bottom:10px}
  .inp{flex:1;background-color:var(--tint-grey);border-radius:14px;padding:12px 14px}
  .inp .lbl{font-size:11px;color:var(--body);text-transform:uppercase;letter-spacing:.5px}
  .inp .val{font-size:15px;font-weight:500;color:var(--ink);margin-top:3px}
  .rate{display:flex;align-items:center;justify-content:space-between;border:1px solid var(--line);border-radius:14px;padding:13px 15px;margin-top:8px}
  .rate.sel{border-color:var(--accent);background-color:var(--tint-pale)}
  .rate .car{font-weight:500;font-size:15px;color:var(--ink)}
  .rate .s{font-size:12.5px;color:var(--body)}
  .rate .amt{font-weight:500;font-size:16px;color:var(--ink)}
  .ship-card .btn{width:100%;margin-top:16px}
  /* live homepage quote — editable zip/weight inputs inside the demo card */
  .ship-card label.inp{display:block;cursor:text}
  .qi{width:100%;border:0;background:transparent;font-family:inherit;font-size:16px;font-weight:500;color:var(--ink);padding:2px 0 0;margin-top:1px}
  .qi:focus{outline:none}
  .ship-card label.inp:focus-within{border-color:var(--accent);box-shadow:0 0 0 3px rgba(30,58,95,.12)}
  #quoteRates{margin-top:14px}
  .qnote{font-size:12.5px;color:#80868b;margin-top:12px;text-align:center}
  .qnote.bad{color:#a50e0e}
  .qfine{font-size:11.5px;line-height:1.5;color:#9aa1a9;margin-top:14px;padding-top:14px;border-top:1px solid var(--line);text-align:center}
  /* dangerous-goods question on the homepage quote */
  .qdg{margin-bottom:14px}
  .qdg-head{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-bottom:10px}
  .qdg-lbl{font-size:15px;font-weight:500;color:var(--ink)}
  .qdg-what{font-size:13px;font-weight:500;color:var(--accent);text-decoration:none;white-space:nowrap}
  .qdg-what:hover{text-decoration:underline}
  .qdg-seg{display:grid;grid-template-columns:1fr 1fr;gap:6px;background:var(--tint-grey);border-radius:16px;padding:6px}
  .qdg-opt{position:relative;display:flex;align-items:center;justify-content:center;gap:9px;border-radius:12px;padding:16px;cursor:pointer;
           font-size:16px;font-weight:600;color:var(--body);transition:background .18s,color .18s,box-shadow .18s,transform .1s}
  .qdg-opt:active{transform:scale(.98)}
  .qdg-opt input{display:none}
  .qdg-opt svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;opacity:.5;transition:opacity .18s,stroke .18s}
  .qdg-opt svg circle{fill:currentColor;stroke:none}
  .qdg-opt:hover{color:var(--ink)}
  .qdg-opt.sel{background:#fff;color:var(--ink);box-shadow:0 2px 8px rgba(10,15,22,.14)}
  .qdg-opt.sel svg{opacity:1}
  .qdg-opt.sel[data-v="no"] svg{stroke:#0a7d33}
  .qdg-opt.sel[data-v="yes"]{color:#a50e0e}
  .qdg-opt.sel[data-v="yes"] svg{stroke:#a50e0e}
  .qdg-seg.unanswered{box-shadow:0 0 0 2px rgba(165,14,14,.4)}
  .qdg-note{background:var(--tint-warm);color:var(--ink);border-radius:14px;padding:13px 15px;font-size:13px;line-height:1.55;margin-top:12px;transition:background .18s,color .18s}
  .qdg-note a{color:var(--accent);font-weight:600;white-space:nowrap}
  .qdg-note.danger{background:#fce8e6;color:#a50e0e}
  .qdg-note.danger a{color:#a50e0e}
  /* single-box address rows on the homepage quote */
  .qrow{margin-bottom:14px;position:relative}
  /* name beside its address — narrower name, address takes the room it needs */
  .qpair{display:grid;grid-template-columns:minmax(0,0.72fr) minmax(0,1fr);gap:10px;margin-bottom:14px}
  @media(max-width:560px){.qpair{grid-template-columns:1fr}}
  .qdims{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:10px;margin-bottom:8px}
  @media(max-width:560px){.qdims{grid-template-columns:1fr 1fr}}
  .qhint{font-size:12px;color:#9aa1a9;line-height:1.5;margin:0 0 14px}
  .acq{width:100%;border:1px solid var(--line);border-radius:14px;background:#fff;
       font-family:inherit;font-size:16px;font-weight:400;color:var(--ink);padding:17px 18px}
  .acq::placeholder{color:#9aa1a9;font-weight:400}
  .acq:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(30,58,95,.12)}
  /* on-brand autocomplete dropdown (shared) */
  .ac{position:relative}
  .ac-list{position:absolute;left:0;right:0;top:calc(100% + 4px);z-index:60;background:#fff;
    border:1px solid var(--line);border-radius:14px;box-shadow:0 12px 34px -14px rgba(10,15,22,.35);
    overflow:hidden;display:none;text-align:left}
  .ac-list.show{display:block}
  .ac-item{padding:12px 15px;font-size:14.5px;color:var(--ink);cursor:pointer;line-height:1.35}
  .ac-item:hover,.ac-item.active{background:var(--tint-pale)}
  .ac-item .sub{font-size:12.5px;color:var(--body);margin-top:1px}

  /* GRIDS */
  .grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:44px}
  .grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:44px}
  .tile{background:#fff;border-radius:20px;padding:28px}
  .tile h4{font-size:18px;margin-bottom:8px}
  .tile p{font-size:15px;line-height:1.5}
  .tile .ic{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;background-color:var(--tint-pale)}
  @media(max-width:900px){.grid4{grid-template-columns:1fr 1fr}}
  @media(max-width:820px){.grid3{grid-template-columns:1fr}}
  @media(max-width:520px){.grid4{grid-template-columns:1fr}}

  /* cards without the card — plain columns, so this section reads differently */
  .grid3.plain .tile{background:transparent;padding:0}
  .grid3.plain{gap:48px}

  /* one big quote instead of three small ones */
  .big-quote{max-width:22ch;margin:0 auto;font-size:clamp(26px,3.4vw,42px);line-height:1.2;
             letter-spacing:-.5px;font-weight:500;color:var(--ink);text-align:center}
  .big-quote cite{display:block;margin-top:24px;font-size:15px;font-weight:500;
                  font-style:normal;color:var(--body);letter-spacing:0}

  .quote p{font-size:16px;line-height:1.55;color:var(--ink)}
  .quote .who{margin-top:14px;font-size:13.5px;font-weight:500;color:var(--body)}
  .note{font-size:13.5px;color:#80868b;margin-top:24px;text-align:center}
  /* the bonus uses, folded in as one line rather than their own section */
  .also{margin:32px auto 0;text-align:center;font-size:18px;color:var(--body);max-width:52ch}

  /* FOOTER */
  .details{padding:40px 16px;color:var(--body);font-size:13.5px}
  .details .row{display:flex;flex-wrap:wrap;gap:8px 22px;justify-content:center;max-width:var(--maxw);margin:0 auto}
  /* FOOTER */
  footer{padding:56px var(--blockpad) 110px;color:var(--body);font-size:14px}
  .foot-in{max-width:var(--maxw);margin:0 auto;display:flex;justify-content:space-between;
           gap:56px;flex-wrap:wrap;padding-bottom:40px}
  .foot-h{font-size:14px;font-weight:500;color:var(--ink);margin-bottom:12px}
  .foot-app p{max-width:34ch;margin-bottom:18px}
  .store-row{display:flex;gap:12px;flex-wrap:wrap}
  /* on narrow phones they stack — match their widths so it reads as a
     deliberate pair rather than two ragged buttons */
  @media(max-width:430px){.store{flex:1 1 100%;justify-content:flex-start}}
  .store{display:inline-flex;align-items:center;gap:10px;border:1px solid var(--line);
         border-radius:14px;padding:9px 16px 9px 14px;transition:background .2s,border-color .2s}
  .store:hover{background-color:var(--tint-grey);border-color:#c4c7c9}
  .store svg{width:22px;height:22px;fill:var(--ink);flex:none}
  .store span{display:flex;flex-direction:column;line-height:1.15;font-size:15px;
              font-weight:500;color:var(--ink)}
  .store small{font-size:10.5px;font-weight:400;color:var(--body);letter-spacing:.02em}
  .foot-links{display:flex;gap:72px;flex-wrap:wrap}
  .foot-links a{display:flex;align-items:center;min-height:44px;padding:2px 0;color:var(--body)}
  .foot-links a:hover{color:var(--ink);text-decoration:underline}
  .foot-base{max-width:var(--maxw);margin:0 auto;padding-top:28px;border-top:1px solid var(--line);
             font-size:13px;color:#80868b}
  @media(max-width:700px){
    .foot-in{flex-direction:column;gap:40px}
    .foot-links{gap:48px}
  }

  /* WHATSAPP — sits above the buy bar so the two never overlap */
  .wa{position:fixed;right:20px;bottom:86px;z-index:70;display:inline-flex;align-items:center;gap:9px;
      background:#25d366;color:#fff;border-radius:100px;padding:12px 18px 12px 14px;
      font-size:14px;font-weight:500;min-height:48px;
      box-shadow:0 6px 20px -6px rgba(0,0,0,.35);transition:transform .18s,box-shadow .18s}
  .wa:hover{transform:translateY(-2px);box-shadow:0 10px 26px -8px rgba(0,0,0,.4)}
  .wa svg{width:22px;height:22px;fill:#fff;flex:none}
  @media(max-width:560px){
    /* shrink to a circle on small screens so it never covers the page */
    .wa{padding:0;width:52px;height:52px;justify-content:center;right:16px;bottom:80px}
    .wa span{display:none}
  }

  /* BUY BAR */
  .buybar{position:fixed;left:0;right:0;bottom:0;z-index:60;background:rgba(255,255,255,.94);backdrop-filter:saturate(180%) blur(16px);border-top:1px solid var(--line);transform:translateY(120%);transition:transform .35s ease}
  .buybar-in{max-width:var(--maxw);margin:0 auto;padding:10px 16px;display:flex;align-items:center;justify-content:space-between}
  .buybar.show{transform:translateY(0)}
  .bb-name{font-weight:500;font-size:15px;color:var(--ink)}
  .bb-name span{color:var(--body);font-weight:400}
