  :root {
    --orange: #FF5200;
    --orange-btn: #D63D00;
    --orange-btn-hover: #B93400;
    --orange-soft: #FFE5D6;
    --navy: #08087A;
    --bg: #FFFFFF;
    --surface: #FFFFFF;
    --tint: #FFFFFF;
    --grad-page: linear-gradient(180deg, #FFFFFF 0%, #F7F8FC 55%, #FFFFFF 100%);
    --grad-hero: linear-gradient(150deg, #FFFFFF 0%, #FFF4EC 45%, #FFFFFF 100%);
    --grad-surface: linear-gradient(160deg, #FFFFFF 0%, #FBFBFE 100%);
    --grad-tint: linear-gradient(180deg, #FFFFFF 0%, #F4F5FA 100%);
    --grad-card: linear-gradient(165deg, #FFFFFF 0%, #FCFCFE 100%);
    --grad-cta: linear-gradient(135deg, #FFFFFF 0%, #F1F3FB 55%, #FFFFFF 100%);
    --ink: #17173A;
    --muted: #5B5B78;
    --line: #E7E7EC;
    --wordmark: #08087A;
    --footer: #08087A;
    --focus: #08087A;
    --night: #0E0E3A;
    --shadow: 0 1px 0 rgba(8,8,122,.04), 0 8px 24px rgba(8,8,122,.07);
    --font-display: "Montserrat", "Arial Black", "Segoe UI", sans-serif;
    --font-body: "Figtree", "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  /* Situs ini dikunci ke tema terang (putih) dan tidak lagi
     mengikuti pengaturan dark mode perangkat pengunjung. */

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 84px); scroll-behavior: smooth; }
  html.locked { overflow: hidden; }
  body {
    margin: 0;
    background: var(--grad-page);
    background-attachment: fixed;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { max-width: 100%; }
  a { color: inherit; }
  button, select, input { font: inherit; color: inherit; }
  :focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
  .hero :focus-visible, .cta :focus-visible { outline-color: var(--navy); }
  .site-footer :focus-visible, .strip :focus-visible { outline-color: #FFB48F; }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }

  /* ---------- Wordmark / logo ---------- */
  .brand { display: inline-flex; align-items: center; text-decoration: none; }
  .brand-logo { height: 30px; width: auto; flex: none; display: block; }
  .footer-logo { height: 30px; }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; padding: 0 22px;
    border: 0; border-radius: 10px;
    background: linear-gradient(160deg, var(--orange) 0%, var(--orange-btn) 100%); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .95rem;
    text-decoration: none; cursor: pointer;
    transition: background-color .15s ease, transform .1s ease, filter .15s ease;
  }
  .btn:hover { filter: brightness(0.94); }
  .btn:active { transform: translateY(1px); }
  .btn.navy { background: linear-gradient(160deg, #14146E 0%, var(--navy) 100%); }
  .btn.navy:hover { filter: brightness(1.15); }
  .btn.sm { min-height: 38px; padding: 0 14px; font-size: .85rem; border-radius: 8px; }
  .btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
  .btn.ghost:hover { background: var(--tint); }
  .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

  .site-header {
    position: sticky; top: env(safe-area-inset-top, 0px); z-index: 30;
    background: var(--grad-surface);
    border-bottom: 1px solid var(--line);
  }
  .site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; position: relative; }
  .header-right { display: flex; align-items: center; gap: 10px; }
  .nav { display: flex; gap: 28px; }
  .nav a { text-decoration: none; font-weight: 600; font-size: .95rem; padding: 6px 0; border-bottom: 3px solid transparent; }
  .nav a:hover { border-bottom-color: var(--orange); }
  .nav a[aria-current="page"] { color: var(--orange-btn); border-bottom-color: var(--orange); }
  .mobile-nav a[aria-current="page"] { color: var(--orange-btn); }
  .nav-toggle {
    display: none; width: 46px; height: 46px; border-radius: 10px; border: 2px solid var(--line);
    background: var(--surface); cursor: pointer; flex: none;
    align-items: center; justify-content: center;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .nav-toggle .icon-close { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
  .mobile-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(8,8,60,.12);
    padding: 8px 0 14px;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block; padding: 14px 4px; margin-inline: 20px;
    text-decoration: none; font-weight: 700; font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  .cart-btn {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    min-height: 46px; padding: 0 18px;
    border: 0; border-radius: 10px; background: var(--orange-btn); color: #fff;
    font-family: var(--font-display); font-weight: 700; font-size: .92rem; cursor: pointer;
    transition: background-color .15s ease;
  }
  .cart-btn:hover { background: var(--orange-btn-hover); }
  .cart-btn svg { width: 20px; height: 20px; }
  .cart-count {
    min-width: 24px; height: 24px; padding: 0 7px; border-radius: 12px;
    background: #fff; color: var(--orange-btn);
    display: inline-grid; place-items: center; font-size: .8rem;
  }
  .cart-count.bump { animation: bump .3s ease; }
  @keyframes bump { 40% { transform: scale(1.25); } }

  /* ---------- Hero ---------- */
  .hero { position: relative; overflow: hidden; background: var(--grad-hero); color: var(--ink); isolation: isolate; border-bottom: 1px solid var(--line); }
  .hero-gear {
    position: absolute; z-index: -1; right: -180px; bottom: -220px;
    width: 720px; height: 720px; color: var(--orange); opacity: .08;
    animation: spin 90s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding-block: 64px 76px; }
  .hero h1 {
    margin: 0 0 18px;
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.025em;
    max-width: 15ch;
  }
  .hero p.lead { margin: 0 0 28px; font-size: 1.12rem; max-width: 46ch; font-weight: 500; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

  .visit-card {
    background: var(--grad-surface); color: var(--ink);
    border-radius: 18px; padding: 26px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 48px rgba(8,8,122,.12);
  }
  .visit-card .when {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 12px; margin-bottom: 18px;
    font-weight: 700; font-size: .95rem;
  }
  .visit-card .when.open { background: #E8FBEF; color: #146C2E; }
  .visit-card .when.closed { background: var(--orange-soft); color: var(--orange-btn); }
  .visit-card .when svg { width: 20px; height: 20px; flex: none; }
  .visit-card h2 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; }
  .hours-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 6px; font-size: .92rem; }
  .hours-list li { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; border-bottom: 1px dashed var(--line); }
  .hours-list li.today { font-weight: 700; color: var(--orange-btn); }
  .visit-card address { font-style: normal; color: var(--muted); font-size: .92rem; margin: 0 0 18px; }
  .visit-actions { display: grid; gap: 10px; }

  /* ---------- Trust strip ---------- */
  .strip { background: var(--grad-tint); color: var(--ink); border-block: 1px solid var(--line); }
  .strip ul { list-style: none; margin: 0; padding: 16px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; }
  .strip li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; }
  .strip svg { width: 22px; height: 22px; color: var(--orange); flex: none; }

  /* ---------- Distributor / mitra resmi ---------- */
  .distributors { background: var(--grad-page); border-block: 1px solid var(--line); padding-block: 40px; }
  .distributors .dist-head { text-align: center; margin-bottom: 26px; }
  .distributors .dist-head p { margin: 0; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; color: var(--muted); }
  .dist-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 56px; }
  .dist-row img { height: 44px; width: auto; display: block; }

  /* ---------- Sections ---------- */
  .section { padding-block: 72px; }
  .section.tint { background: var(--grad-tint); border-block: 1px solid var(--line); }
  .section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
  .section-head h2 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.4rem); letter-spacing: -0.02em; line-height: 1.1; }
  .section-head p { margin: 6px 0 0; color: var(--muted); max-width: 52ch; }

  /* Kenapa dua jalur layanan */
  .modes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .mode { border-radius: 16px; padding: 26px; border: 2px solid var(--line); background: var(--grad-card); }
  .mode.primary { border-color: var(--orange); background: var(--grad-card); }
  .mode .tag { display: inline-block; font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--orange); color: #fff; margin-bottom: 14px; }
  .mode.night .tag { background: var(--navy); }
  .mode h3 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
  .mode p { margin: 0 0 16px; color: var(--muted); }

  /* Kategori */
  .cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .cat {
    display: flex; align-items: center; gap: 14px; text-align: left;
    padding: 18px; border-radius: 14px; cursor: pointer;
    background: var(--grad-card); border: 2px solid var(--line);
    text-decoration: none;
    transition: border-color .15s ease, background-color .15s ease;
  }
  .cat:hover { border-color: var(--orange); }
  .cat[aria-pressed="true"] { border-color: var(--orange); background: var(--grad-card); }
  .cat .ico-box { width: 52px; height: 52px; border-radius: 12px; background: var(--orange); color: #fff; display: grid; place-items: center; flex: none; }
  .cat .ico-box svg { width: 28px; height: 28px; }
  .cat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.2; }
  .cat small { color: var(--muted); font-size: .85rem; }

  /* Toolbar */
  .toolbar { display: grid; grid-template-columns: 1.4fr auto; gap: 12px; align-items: center; margin-bottom: 14px; }
  .status { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; min-height: 40px; color: var(--muted); }
  .status strong { color: var(--ink); }
  .link-btn { background: none; border: 0; padding: 6px 0; color: var(--orange-btn); font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

  /* Form fields (dipakai katalog & admin) */
  .field { display: grid; gap: 6px; margin-bottom: 14px; }
  .field label { font-weight: 700; font-size: .9rem; }
  .field .hint { font-weight: 400; color: var(--muted); font-size: .82rem; }
  .input, .select, .textarea {
    width: 100%; min-height: 46px; padding: 10px 14px;
    border: 2px solid var(--line); border-radius: 10px; background: var(--surface);
    font: inherit; color: inherit;
  }
  .textarea { min-height: 90px; resize: vertical; font-family: monospace; font-size: .88rem; }
  .input:focus, .select:focus, .textarea:focus { border-color: var(--orange); }

  /* ---------- Panel admin ---------- */
  .admin-gate { max-width: 420px; margin: 0 auto; text-align: center; }
  .admin-gate .btn { width: 100%; margin-top: 6px; }
  .admin-note { background: var(--tint); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-bottom: 28px; font-size: .92rem; color: var(--muted); }
  .admin-note strong { color: var(--ink); }
  .admin-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
  .admin-grid { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 32px; align-items: start; }
  .admin-form { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: sticky; top: 96px; }
  .admin-form h3 { margin: 0 0 16px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
  .admin-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .admin-form .actions { display: flex; gap: 10px; margin-top: 4px; }
  .admin-list { display: grid; gap: 10px; }
  .admin-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
  .admin-row.out { border-color: var(--orange-soft); background: #FFF8F4; }
  .admin-row-main { display: grid; gap: 2px; }
  .admin-row-main strong { font-family: var(--font-display); font-size: .98rem; }
  .admin-row-main .muted { color: var(--muted); font-size: .85rem; }
  .admin-row-actions { display: flex; gap: 8px; flex: none; }
  .admin-thumb { width:40px; height:40px; object-fit:cover; border-radius:6px; flex-shrink:0; }
  .admin-thumb-empty { background:#eee; }
  .admin-row-main { display:flex; gap:10px; align-items:center; }
  .btn.danger { background: var(--orange-btn); }
  .btn.danger:hover { background: #8f2900; }

  /* Produk */
  .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .card { display: flex; flex-direction: column; background: var(--grad-card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
  .card-art { position: relative; aspect-ratio: 4 / 3; background: var(--grad-tint); border-bottom: 1px solid var(--line); display: grid; place-items: center; color: var(--orange); }
  .card-art svg { width: 30%; height: auto; stroke-width: 1.5; }
  .badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px; background: var(--surface); color: var(--ink); font-size: .78rem; font-weight: 700; border: 1px solid var(--line); }
  .badge.ori { background: var(--navy); color: #fff; border-color: var(--navy); }
  .card-body { display: flex; flex-direction: column; gap: 6px; padding: 16px; flex: 1; }
  .card h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.3; }
  .fit { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.4; }
  .stock { margin: 2px 0 0; font-size: .82rem; font-weight: 700; color: #146C2E; }
  .stock.out { color: var(--orange-btn); }
  .btn[disabled] { opacity: .5; cursor: not-allowed; }
  .card-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
  .price { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
  .empty { grid-column: 1 / -1; text-align: center; padding: 56px 20px; border: 2px dashed var(--line); border-radius: 14px; }
  .empty h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
  .empty p { margin: 0 0 16px; color: var(--muted); }

  /* Steps + FAQ */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
  .split h2 { margin: 0 0 24px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.1; }
  .steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; counter-reset: s; }
  .steps li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start; counter-increment: s; }
  .steps li::before {
    content: counter(s);
    width: 52px; height: 52px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--orange); color: var(--navy);
    font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  }
  .steps h3 { margin: 4px 0 2px; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
  .steps p { margin: 0; color: var(--muted); }
  details { border-bottom: 1px solid var(--line); }
  details:first-of-type { border-top: 1px solid var(--line); }
  summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-weight: 700; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--orange); font-weight: 600; transition: transform .2s ease; }
  details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  details p { margin: 0 0 18px; color: var(--muted); max-width: 60ch; }

  /* CTA malam hari */
  .cta { position: relative; overflow: hidden; background: var(--grad-cta); color: var(--ink); isolation: isolate; border-block: 1px solid var(--line); }
  .cta .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-block: 56px; }
  .cta .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-btn); font-weight: 700; margin-bottom: 10px; font-size: .95rem; }
  .cta .eyebrow svg { width: 20px; height: 20px; }
  .cta h2 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.3rem); letter-spacing: -0.02em; line-height: 1.15; max-width: 24ch; color: var(--ink); }
  .cta p { margin: 0; font-size: 1.05rem; font-weight: 500; max-width: 48ch; color: var(--muted); }

  /* Footer */
  .site-footer { background: var(--grad-tint); color: var(--ink); padding-block: 56px 28px; border-top: 1px solid var(--line); }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .site-footer p { margin: 14px 0 0; max-width: 34ch; color: var(--muted); }
  .site-footer h3 { margin: 0 0 12px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--navy); }
  .site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
  .site-footer a { text-decoration: none; color: var(--ink); opacity: .85; }
  .site-footer a:hover { text-decoration: underline; opacity: 1; color: var(--orange-btn); }
  .site-footer .hrs { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
  .copy { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .88rem; color: var(--muted); }

  /* Cart drawer */
  .overlay { position: fixed; inset: 0; z-index: 40; background: rgba(8,8,60,.55); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; }
  .overlay.open { opacity: 1; visibility: visible; }
  .drawer {
    position: fixed; z-index: 50; top: 0; right: 0; bottom: 0;
    width: min(440px, 100%);
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--grad-surface); color: var(--ink);
    display: flex; flex-direction: column;
    transform: translateX(100%); visibility: hidden;
    transition: transform .25s ease, visibility .25s;
    box-shadow: -20px 0 50px rgba(8,8,60,.25);
  }
  .drawer.open { transform: none; visibility: visible; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
  .drawer-head h2 { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
  .icon-btn { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; display: grid; place-items: center; }
  .icon-btn:hover { background: var(--orange-soft); }
  .icon-btn svg { width: 20px; height: 20px; }
  .drawer-note { margin: 0; padding: 12px 22px; font-size: .85rem; color: var(--muted); background: #FAFAFC; border-bottom: 1px solid var(--line); }
  .drawer-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
  .line-item { display: grid; grid-template-columns: 56px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .line-art { width: 56px; height: 56px; border-radius: 10px; background: var(--surface); border: 1px solid var(--line); color: var(--orange); display: grid; place-items: center; }
  .line-art svg { width: 28px; height: 28px; }
  .line-item h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: .95rem; line-height: 1.3; }
  .line-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 10px; }
  .qty { display: inline-flex; align-items: center; border: 2px solid var(--line); border-radius: 10px; }
  .qty button { width: 38px; height: 38px; border: 0; background: none; cursor: pointer; font-size: 1.2rem; font-weight: 700; border-radius: 8px; }
  .qty button:hover { background: var(--tint); }
  .qty span { min-width: 28px; text-align: center; font-weight: 700; }
  .drawer-empty { padding: 48px 8px; text-align: center; color: var(--muted); }
  .drawer-empty h3 { margin: 0 0 6px; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
  .drawer-empty .btn { margin-top: 14px; }
  .drawer-foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
  .total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; }
  .total strong { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
  .note { margin: 0; font-size: .85rem; color: var(--muted); }

  .toast {
    position: fixed; z-index: 60; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
    background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 10px;
    font-weight: 600; box-shadow: 0 10px 30px rgba(8,8,60,.35);
    transition: opacity .2s ease, transform .2s ease; max-width: calc(100% - 32px);
  }
  .toast.show { opacity: 1; transform: translate(-50%, 0); }

  /* ---------- Responsive ---------- */
  @media (max-width: 1080px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
    .cats { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .hero .wrap { grid-template-columns: 1fr; gap: 36px; padding-block: 44px 52px; }
    .hero-gear { width: 520px; height: 520px; right: -200px; bottom: -160px; }
    .split { grid-template-columns: 1fr; gap: 48px; }
    .nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .modes { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid > :first-child { grid-column: 1 / -1; }
    .admin-grid { grid-template-columns: 1fr; }
    .admin-form { position: static; }
    .dist-row { gap: 28px 36px; }
    .dist-row img { height: 34px; }
  }
  @media (max-width: 680px) {
    .wrap { width: min(1180px, 100% - 28px); }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-body { padding: 12px; }
    .card-foot { flex-direction: column; align-items: stretch; }
    .cats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cat { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; }
    .section { padding-block: 52px; }
    .brand-logo { height: 25px; }
    .cart-btn .label { display: none; }
    .toolbar { grid-template-columns: 1fr; }
    .strip ul { flex-direction: column; }
    .foot-grid { grid-template-columns: 1fr; }
    .admin-form .row2 { grid-template-columns: 1fr; }
    .admin-row { flex-direction: column; align-items: stretch; }
    .admin-row-actions { justify-content: flex-end; }
    .dist-row { gap: 20px 24px; }
    .dist-row img { height: 28px; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-gear { animation: none; }
    .drawer, .overlay, .toast, .cart-count.bump { transition: none; animation: none; }
  }