/* ==========================================================================
   SPENZIT — Design System v2
   Warm paper · Forest ink · Kente gold
   No framework, no build step. Works on any shared PHP host.
   --------------------------------------------------------------------------
   01 Tokens & base        06 Cards & grids         11 Cart & checkout
   02 Primitives           07 Home                  12 Auth, forms, help
   03 Header & search      08 Listing pages         13 Motion & utilities
   04 Tab bar              09 Product page
   05 Drawer, sheet, toast 10 Reviews
   ========================================================================== */

/* 01 — TOKENS & BASE ------------------------------------------------------ */
:root {
  --ink: #0b1712;
  --ink-2: #1c2b24;
  --muted: #5c6b63;
  --soft: #8a968f;
  --line: #e3dfd3;
  --line-2: #ece8dd;
  --paper: #f6f3ec;
  --surface: #ffffff;
  --sand: #ede8db;

  --forest: #0d3b2c;
  --forest-2: #124a38;
  --forest-3: #1b6650;
  --emerald: #1db37a;
  --mint: #dcf2e6;

  --gold: #f7b928;
  --gold-2: #ffd470;
  --gold-soft: #fff3d1;

  --red: #e23d3d;
  --red-soft: #fde9e7;

  --r-sm: 12px;
  --r: 20px;
  --r-lg: 32px;

  --shadow-1: 0 1px 2px rgba(11, 23, 18, .05), 0 10px 30px -16px rgba(11, 23, 18, .18);
  --shadow-2: 0 2px 6px rgba(11, 23, 18, .06), 0 30px 60px -24px rgba(11, 23, 18, .35);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --gutter: clamp(16px, 4vw, 32px);
  --hdr-h: 72px;

  --font-display: "Bricolage Grotesque", "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }

.i { width: 1.25em; height: 1.25em; flex: none; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.i-fill { fill: currentColor; stroke: none; }

.wrap { width: min(1280px, calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(960px, calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 999px; transition: top .2s; }
.skip:focus { top: 12px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.nowrap { white-space: nowrap; }
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(247, 185, 40, .22); }
.on-dark .eyebrow, .eyebrow.on-dark { color: rgba(255, 255, 255, .72); }

/* 02 — PRIMITIVES --------------------------------------------------------- */
.btn {
  position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 15px; letter-spacing: -.005em; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .2s, color .2s, box-shadow .25s, border-color .2s;
  -webkit-user-select: none; user-select: none;
}
.btn:active { transform: scale(.97); }
.btn .i { width: 1.15em; height: 1.15em; transition: transform .3s var(--ease); }
.btn-arrow:hover .i-arrow { transform: translateX(4px); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-2); box-shadow: 0 14px 30px -14px rgba(13, 59, 44, .8); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); box-shadow: 0 14px 30px -14px rgba(247, 185, 40, .95); transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost { border: 1.5px solid var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-ghost.on-dark { border-color: rgba(255, 255, 255, .28); color: #fff; }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn-lg { height: 58px; padding: 0 30px; font-size: 16px; }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading::after { content: ""; width: 1.1em; height: 1.1em; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; animation: spin .7s linear infinite; }
.btn.is-done { background: var(--emerald); color: #fff; }

.icon-btn { position: relative; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; transition: background-color .2s, transform .25s var(--ease), color .2s; }
.icon-btn:hover { background: rgba(11, 23, 18, .07); }
.icon-btn:active { transform: scale(.92); }
.icon-btn .i { width: 22px; height: 22px; }
.icon-btn.solid { background: #fff; box-shadow: var(--shadow-1); }
.icon-btn.solid:hover { background: var(--gold-soft); }

.badge { display: inline-flex; align-items: center; gap: 5px; height: 26px; padding: 0 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; background: #fff; color: var(--ink); box-shadow: 0 1px 0 rgba(11, 23, 18, .06); }
.badge .i { width: 13px; height: 13px; }
.badge-sale { background: var(--red); color: #fff; }
.badge-pre { background: var(--ink); color: var(--gold); }
.badge-gh { background: var(--mint); color: var(--forest); }
.badge-gold { background: var(--gold); color: var(--ink); }

.chip { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; font-weight: 600; font-size: 14px; white-space: nowrap; transition: all .2s var(--ease); }
.chip:hover { border-color: var(--ink); background: #fff; }
.chip.is-active, .chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0; }
.chips::-webkit-scrollbar { display: none; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars .i { width: 14px; height: 14px; }
.stars .off { color: var(--line); }

.qty { display: inline-flex; align-items: center; height: 48px; border: 1.5px solid var(--line); border-radius: 999px; background: #fff; padding: 0 4px; }
.qty button { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; transition: background-color .2s, transform .2s var(--ease); }
.qty button:hover { background: var(--sand); }
.qty button:active { transform: scale(.88); }
.qty button:disabled { opacity: .35; pointer-events: none; }
.qty input { width: 42px; text-align: center; border: 0; background: transparent; font-weight: 700; font-size: 16px; outline: none; -moz-appearance: textfield; appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty .i { width: 16px; height: 16px; }
.qty.sm { height: 40px; }
.qty.sm button { width: 32px; height: 32px; }

.card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); box-shadow: var(--shadow-1); }
.divider { height: 1px; background: var(--line-2); border: 0; margin: 0; }

/* Floating-label fields */
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; height: 58px; padding: 24px 16px 8px; border: 1.5px solid var(--line); border-radius: 14px; background: #fff; outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color .2s, box-shadow .2s, background-color .2s; font-weight: 500;
}
.field textarea { height: auto; min-height: 132px; padding-top: 28px; resize: vertical; }
.field select { padding-right: 44px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235c6b63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field label { position: absolute; left: 17px; top: 19px; font-size: 15px; color: var(--soft); pointer-events: none; transition: top .18s var(--ease), font-size .18s var(--ease), color .18s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(13, 59, 44, .1); }
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label,
.field select ~ label { top: 9px; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; color: var(--forest-3); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); box-shadow: 0 0 0 4px rgba(226, 61, 61, .1); }
.field .msg { display: none; margin: 6px 4px 0; font-size: 12.5px; font-weight: 600; color: var(--red); }
.field.has-error .msg { display: block; animation: shake .4s; }
.field .eye { position: absolute; right: 6px; top: 6px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: var(--muted); }
.field .eye:hover { background: var(--sand); }
.field .eye .i { width: 20px; height: 20px; }
.field .eye .i-off { display: none; }
.field .eye[aria-pressed="true"] .i-on { display: none; }
.field .eye[aria-pressed="true"] .i-off { display: block; }
.field-row { display: grid; gap: 14px; }
@media (min-width: 640px) { .field-row.two { grid-template-columns: 1fr 1fr; } }

.alert { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; font-size: 14px; font-weight: 500; line-height: 1.45; }
.alert .i { margin-top: 1px; width: 18px; height: 18px; }
.alert-error { background: var(--red-soft); color: #8f1f1f; }
.alert-ok { background: var(--mint); color: var(--forest); }
.alert-info { background: var(--gold-soft); color: #6a4a00; }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 2px; font-weight: 700; font-size: 16px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .i { transition: transform .3s var(--ease); color: var(--muted); }
.accordion details[open] summary .i { transform: rotate(45deg); }
.accordion .acc-body { padding: 0 2px 22px; color: var(--muted); font-size: 15px; max-width: 70ch; }
.accordion details[open] .acc-body { animation: fadeUp .4s var(--ease); }

/* 03 — HEADER & SEARCH ---------------------------------------------------- */
.announce { position: relative; z-index: 60; background: var(--ink); color: rgba(255, 255, 255, .92); font-size: 13px; font-weight: 500; overflow: hidden; }
.announce .wrap { position: relative; height: 38px; display: flex; align-items: center; justify-content: center; }
.announce .msg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 0 8px; opacity: 0; transform: translateY(10px); transition: opacity .5s, transform .6s var(--ease); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce .msg.is-on { opacity: 1; transform: none; }
.announce .msg .i { width: 15px; height: 15px; color: var(--gold); }
.announce .msg b { color: var(--gold); font-weight: 700; }

.hdr { position: sticky; top: 0; z-index: 50; background: rgba(246, 243, 236, .82); -webkit-backdrop-filter: saturate(1.5) blur(16px); backdrop-filter: saturate(1.5) blur(16px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background-color .3s; }
.hdr.is-scrolled { border-color: var(--line); box-shadow: 0 12px 30px -22px rgba(11, 23, 18, .4); background: rgba(246, 243, 236, .94); }
.hdr-row { display: flex; align-items: center; gap: clamp(10px, 2vw, 28px); height: var(--hdr-h); transition: height .3s var(--ease); }
.hdr.is-scrolled .hdr-row { height: 64px; }
.hdr-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: linear-gradient(90deg, var(--gold), var(--emerald)); transform-origin: left; transform: scaleX(0); }

.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo svg { width: 38px; height: 38px; transition: transform .6s var(--ease-spring); }
.logo:hover svg { transform: rotate(-8deg) scale(1.06); }
.logo-word { font-family: var(--font-display); font-size: 25px; font-weight: 800; letter-spacing: -.055em; line-height: 1; }
.logo-word i { font-style: normal; color: var(--gold); }
.logo.on-dark { color: #fff; }

.search { position: relative; flex: 1; max-width: 620px; }
.search-box { display: flex; align-items: center; gap: 10px; height: 50px; padding: 0 8px 0 18px; background: #fff; border: 1.5px solid var(--line); border-radius: 999px; transition: border-color .2s, box-shadow .25s; }
.search-box:focus-within { border-color: var(--forest); box-shadow: 0 0 0 5px rgba(13, 59, 44, .09); }
.search-box .i { color: var(--muted); }
.search-box input { flex: 1; min-width: 0; height: 100%; border: 0; outline: 0; background: transparent; font-size: 15px; font-weight: 500; }
.search-box input::placeholder { color: var(--soft); font-weight: 400; }
.search-box input::-webkit-search-cancel-button { display: none; }
.search-box kbd { font: 600 12px var(--font-body); color: var(--soft); border: 1.5px solid var(--line); border-radius: 8px; padding: 2px 8px; }
.search-box:focus-within kbd { display: none; }
.search-go { height: 36px; padding: 0 16px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 14px; transition: background-color .2s; }
.search-go:hover { background: var(--forest); }

.suggest { position: absolute; left: 0; right: 0; top: calc(100% + 10px); background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-2); padding: 10px; max-height: min(70vh, 560px); overflow: auto; opacity: 0; visibility: hidden; transform: translateY(8px) scale(.99); transform-origin: top; transition: opacity .2s, transform .3s var(--ease), visibility .2s; z-index: 70; }
.search.is-open .suggest { opacity: 1; visibility: visible; transform: none; }
.suggest h6 { margin: 10px 12px 6px; font: 700 11px var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--soft); }
.suggest-item { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 14px; transition: background-color .15s; }
.suggest-item:hover, .suggest-item.is-hl { background: var(--paper); }
.suggest-item img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; background: var(--sand); flex: none; }
.suggest-item .t { font-weight: 600; font-size: 14.5px; line-height: 1.25; }
.suggest-item .s { font-size: 12.5px; color: var(--muted); }
.suggest-item .p { margin-left: auto; font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
.suggest-empty { padding: 22px 14px; color: var(--muted); font-size: 14px; text-align: center; }
.suggest-cats { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 10px 12px; }
.suggest-all { display: flex; justify-content: space-between; align-items: center; margin: 6px 4px 2px; padding: 14px; border-radius: 14px; background: var(--paper); font-weight: 700; font-size: 14px; }

.hdr-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hdr-link { display: none; align-items: center; gap: 8px; height: 46px; padding: 0 14px; border-radius: 999px; font-weight: 600; font-size: 14.5px; transition: background-color .2s; }
.hdr-link:hover { background: rgba(11, 23, 18, .07); }
.hdr-link .i { width: 21px; height: 21px; }
.hdr-search-btn { display: inline-grid; }
.cart-btn .count { position: absolute; top: 3px; right: 1px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 11.5px; font-weight: 800; display: grid; place-items: center; transform: scale(0); transition: transform .35s var(--ease-spring); box-shadow: 0 0 0 2px var(--paper); }
.cart-btn .count.has { transform: scale(1); }
.cart-btn.bump { animation: bump .5s var(--ease-spring); }
.hdr .search { display: none; }

.catbar { border-top: 1px solid var(--line-2); }
.catbar .wrap { display: flex; align-items: center; gap: 4px; height: 48px; overflow-x: auto; scrollbar-width: none; }
.catbar .wrap::-webkit-scrollbar { display: none; }
.catbar a { position: relative; display: inline-flex; align-items: center; gap: 7px; height: 100%; padding: 0 12px; font-size: 14px; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.catbar a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 6px; height: 2px; border-radius: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.catbar a:hover::after, .catbar a.is-active::after { transform: scaleX(1); }
.catbar .hot { color: var(--red); }
.catbar .hot::after { background: var(--red); }
.catbar .sp { flex: 1; }
.catbar .sell { color: var(--forest-3); }

/* Mobile search overlay */
.sov { position: fixed; inset: 0; z-index: 120; background: var(--paper); display: flex; flex-direction: column; padding: max(14px, env(safe-area-inset-top)) var(--gutter) 20px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .25s, transform .4s var(--ease), visibility .25s; }
.sov.is-open { opacity: 1; visibility: visible; transform: none; }
.sov-top { display: flex; align-items: flex-start; gap: 10px; }
.sov-top > .btn { margin-top: 6px; }
.sov .search { display: block; max-width: none; flex: 1; }
.sov .suggest { max-height: calc(100dvh - 110px) !important; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 14px 0; max-height: none; flex: 1; overflow: auto; }
.sov .search-box { height: 54px; }

@media (min-width: 960px) {
  .hdr .search { display: block; }
  .hdr-search-btn { display: none; }
  .hdr-link { display: inline-flex; }
}

/* 04 — MOBILE TAB BAR ----------------------------------------------------- */
.tab { min-width: 0; }
.tabbar { position: fixed; z-index: 55; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; height: 68px; padding: 0 6px; border-radius: 26px; background: rgba(11, 23, 18, .92); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); box-shadow: 0 24px 50px -18px rgba(11, 23, 18, .6); color: rgba(255, 255, 255, .62); transition: transform .45s var(--ease); }
.tabbar.is-hidden { transform: translateY(140%); }
.tab { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; height: 100%; font-size: 10.5px; font-weight: 600; letter-spacing: .01em; transition: color .2s; }
.tab .i { width: 23px; height: 23px; transition: transform .35s var(--ease-spring); }
.tab.is-active { color: #fff; }
.tab.is-active .i { transform: translateY(-2px); }
.tab.is-active::after { content: ""; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.tab-bag { color: var(--ink); }
.tab-bag .puck { position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin-top: -26px; border-radius: 50%; background: var(--gold); box-shadow: 0 12px 26px -8px rgba(247, 185, 40, .9), 0 0 0 6px var(--paper); transition: transform .3s var(--ease-spring); }
.tab-bag:active .puck { transform: scale(.9); }
.tab-bag .puck .count { position: absolute; top: -4px; right: -4px; min-width: 21px; height: 21px; padding: 0 5px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; transform: scale(0); transition: transform .35s var(--ease-spring); }
.tab-bag .puck .count.has { transform: scale(1); }
.tab-bag span.l { display: none; }
@media (min-width: 960px) { .tabbar { display: none; } }
.has-tabbar { padding-bottom: 104px; }
@media (min-width: 960px) { .has-tabbar { padding-bottom: 0; } }

/* 05 — DRAWER, SHEET, TOAST ---------------------------------------------- */
.scrim { position: fixed; inset: 0; z-index: 100; background: rgba(11, 23, 18, .5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.scrim.is-on { opacity: 1; visibility: visible; }

.drawer { position: fixed; z-index: 110; top: 0; right: 0; bottom: 0; width: min(460px, 100%); display: flex; flex-direction: column; background: var(--paper); box-shadow: var(--shadow-2); transform: translateX(105%); transition: transform .55s var(--ease); border-radius: 28px 0 0 28px; }
.drawer.is-open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px 14px; }
.drawer-head h3 { font-size: 26px; }
.drawer-head .n { color: var(--soft); font-weight: 600; font-size: 16px; margin-left: 6px; }
.drawer-body { flex: 1; overflow: auto; padding: 4px 24px 16px; overscroll-behavior: contain; }
.drawer-foot { padding: 18px 24px max(22px, env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); border-radius: 26px 0 0 0; }
.drawer-foot .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.drawer-foot .total { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -.03em; }
.drawer-foot small { display: block; color: var(--muted); margin-bottom: 16px; font-size: 13px; }
.drawer-foot .btn + .btn { margin-top: 10px; }
.mini { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-2); animation: fadeUp .5s var(--ease) both; }
.mini.is-new { animation: popIn .6s var(--ease-spring) both; }
.mini img { width: 76px; height: 92px; border-radius: 14px; object-fit: cover; background: var(--sand); }
.mini .t { font-weight: 600; font-size: 14.5px; line-height: 1.3; }
.mini .u { font-size: 13px; color: var(--muted); margin-top: 2px; }
.mini .ctl { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.mini .sub { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.mini .rm { color: var(--soft); font-size: 12.5px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.mini .rm:hover { color: var(--red); }
.empty-mini { text-align: center; padding: 56px 12px; }
.empty-mini .ring { width: 96px; height: 96px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--forest-3); }
.empty-mini .ring .i { width: 40px; height: 40px; }
.empty-mini h4 { font-size: 24px; margin-bottom: 8px; }
.empty-mini p { color: var(--muted); margin-bottom: 20px; }

.sheet { position: fixed; z-index: 110; left: 0; right: 0; bottom: 0; max-height: 88dvh; display: flex; flex-direction: column; background: var(--paper); border-radius: 28px 28px 0 0; transform: translateY(105%); transition: transform .5s var(--ease); box-shadow: var(--shadow-2); }
.sheet.is-open { transform: none; }
.sheet-grip { width: 44px; height: 5px; border-radius: 3px; background: var(--line); margin: 10px auto 0; }
.sheet-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px 8px; }
.sheet-body { overflow: auto; padding: 8px 22px 20px; }
.sheet-foot { display: flex; gap: 10px; padding: 14px 22px max(18px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }

.toasts { position: fixed; z-index: 200; left: 50%; bottom: calc(100px + env(safe-area-inset-bottom)); transform: translateX(-50%); display: grid; gap: 10px; width: min(440px, calc(100% - 32px)); pointer-events: none; }
@media (min-width: 960px) { .toasts { bottom: 32px; left: auto; right: 32px; transform: none; } }
.toast { display: flex; align-items: center; gap: 12px; padding: 12px 14px 12px 12px; border-radius: 18px; background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 500; box-shadow: var(--shadow-2); pointer-events: auto; animation: toastIn .55s var(--ease-spring) both; }
.toast.is-out { animation: toastOut .35s var(--ease) both; }
.toast .ic { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--emerald); flex: none; }
.toast.err .ic { background: var(--red); }
.toast .ic .i { width: 17px; height: 17px; }
.toast a, .toast button.act { margin-left: auto; color: var(--gold); font-weight: 700; white-space: nowrap; padding: 6px 10px; border-radius: 999px; }
.toast a:hover, .toast button.act:hover { background: rgba(255, 255, 255, .1); }

.fly { position: fixed; z-index: 300; border-radius: 16px; object-fit: cover; pointer-events: none; box-shadow: var(--shadow-2); will-change: transform, opacity; }

/* 06 — CARDS & GRIDS ------------------------------------------------------ */
.pgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px clamp(12px, 2vw, 22px); }
@media (min-width: 760px) { .pgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .pgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); } .pgrid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.pcard { position: relative; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.pcard.is-hidden { display: none; }
.pcard-media { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; background: var(--sand); isolation: isolate; }
.pcard-media::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, var(--sand) 30%, #f6f2e8 50%, var(--sand) 70%); background-size: 220% 100%; animation: shimmer 1.6s linear infinite; }
.pcard-img { display: block; width: 100%; height: 100%; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .5s; }
.pcard:hover .pcard-media img { transform: scale(1.07); }
.pcard-badges { position: absolute; z-index: 2; top: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.pcard-heart { position: absolute; z-index: 3; top: 8px; right: 8px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: transform .3s var(--ease-spring), background-color .2s; }
.pcard-heart:hover { transform: scale(1.1); background: #fff; }
.pcard-heart .i { width: 19px; height: 19px; transition: all .25s; }
.pcard-heart.is-on { color: var(--red); }
.pcard-heart.is-on .i { fill: var(--red); animation: pop .5s var(--ease-spring); }
.pcard-add { position: absolute; z-index: 3; right: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px 0 14px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 600; font-size: 14px; box-shadow: 0 12px 24px -10px rgba(11, 23, 18, .7); transition: transform .4s var(--ease), opacity .3s, background-color .2s; }
.pcard-add:hover { background: var(--forest); }
.pcard-add .i { width: 18px; height: 18px; }
.pcard-add.is-done { background: var(--emerald); }
@media (hover: hover) and (min-width: 960px) {
  .pcard-add { opacity: 0; transform: translateY(12px); }
  .pcard:hover .pcard-add, .pcard-add:focus-visible { opacity: 1; transform: none; }
}
@media (max-width: 959px), (hover: none) { .pcard-add { width: 44px; padding: 0; justify-content: center; } .pcard-add span { display: none; } }
.pcard-body { display: grid; gap: 4px; padding: 0 2px; }
.pcard-cat { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }
.pcard-name { font-weight: 600; font-size: 15.5px; line-height: 1.3; letter-spacing: -.01em; }
.pcard-name a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.pcard-meta { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.pcard-meta .stars .i { width: 13px; height: 13px; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; font-family: var(--font-display); }
.price .now { font-size: 20px; font-weight: 800; letter-spacing: -.035em; }
.price .was { font-family: var(--font-body); font-size: 13.5px; color: var(--soft); text-decoration: line-through; }
.price .off { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--red); }
.price .cur { font-size: .62em; font-weight: 700; margin-right: 2px; letter-spacing: 0; opacity: .8; }

.pcard.dark .pcard-name, .pcard.dark .price { color: #fff; }
.pcard.dark .pcard-cat, .pcard.dark .price .was, .pcard.dark .pcard-meta { color: rgba(255, 255, 255, .55); }
.pcard.dark .pcard-media { background: rgba(255, 255, 255, .06); }
.pcard.dark .pcard-media::before { background: linear-gradient(100deg, rgba(255,255,255,.05) 30%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.05) 70%); background-size: 220% 100%; }
.pcard.dark .price .now { color: var(--gold); }

.rail-wrap { position: relative; }
.rail { display: flex; gap: clamp(12px, 2vw, 22px); overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding: 4px var(--gutter) 6px; margin-inline: calc(var(--gutter) * -1); scroll-padding-inline: var(--gutter); cursor: grab; }
.rail::-webkit-scrollbar { display: none; }
.rail.is-drag { cursor: grabbing; scroll-snap-type: none; }
.rail.is-drag * { pointer-events: none; }
.rail > * { flex: 0 0 clamp(158px, 42vw, 270px); scroll-snap-align: start; }
.rail-nav { display: none; gap: 8px; }
@media (min-width: 960px) { .rail-nav { display: flex; } }
.rail-nav button { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; transition: all .2s var(--ease); }
.rail-nav button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.rail-nav button:disabled { opacity: .35; pointer-events: none; }
.on-dark .rail-nav button { background: transparent; border-color: rgba(255, 255, 255, .25); color: #fff; }
.on-dark .rail-nav button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.sec { padding: clamp(44px, 7vw, 92px) 0; }
.sec-sm { padding: clamp(28px, 4vw, 52px) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(22px, 3vw, 36px); }
.sec-head h2 { font-size: clamp(30px, 4.6vw, 54px); letter-spacing: -.045em; margin-top: 10px; }
.sec-head .more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; white-space: nowrap; padding-bottom: 6px; border-bottom: 2px solid var(--ink); transition: gap .3s var(--ease), color .2s; }
.sec-head .more:hover { gap: 14px; }
.sec-head .more .i { width: 18px; height: 18px; }

/* 07 — HOME ---------------------------------------------------------------- */
.hero { padding: clamp(10px, 2vw, 20px) 0 0; }
.stage { position: relative; isolation: isolate; overflow: hidden; border-radius: clamp(26px, 3.4vw, 44px); background: var(--forest); color: #fff; padding: clamp(28px, 5vw, 72px); }
.stage::before { content: ""; position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(60% 70% at 88% 8%, rgba(247, 185, 40, .38), transparent 62%),
  radial-gradient(50% 60% at 4% 100%, rgba(29, 179, 122, .5), transparent 62%),
  radial-gradient(40% 40% at 50% 50%, rgba(27, 102, 80, .6), transparent 70%); }
.stage::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .16; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.stage-rings { position: absolute; z-index: -1; right: -12%; top: -30%; width: 80%; aspect-ratio: 1; pointer-events: none; opacity: .5; }
.stage-rings i { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); }
.stage-rings i:nth-child(2) { inset: 12%; } .stage-rings i:nth-child(3) { inset: 24%; } .stage-rings i:nth-child(4) { inset: 36%; }
.stage-rings { animation: spin 90s linear infinite; }
.stage-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 960px) { .stage-grid { grid-template-columns: 1.08fr .92fr; } }
.hero h1 { font-size: clamp(42px, 6.2vw, 86px); letter-spacing: -.055em; line-height: .93; margin-top: 20px; }
.hero h1 .swap { position: relative; display: inline-block; height: 1.02em; overflow: hidden; vertical-align: bottom; color: var(--gold); }
.hero h1 .swap-in { display: flex; flex-direction: column; transition: transform .8s var(--ease); }
.hero h1 .swap-in span { height: 1.02em; display: block; white-space: nowrap; }
.hero .lead { margin-top: 22px; max-width: 46ch; font-size: clamp(16px, 1.5vw, 19px); color: rgba(255, 255, 255, .78); }
.hero-search { position: relative; margin-top: 30px; max-width: 560px; }
.hero-search .search-box { height: 62px; border: 0; background: #fff; padding-left: 22px; box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .6); }
.hero-search .search-box input { font-size: 16px; color: var(--ink); }
.hero-search .search-go { height: 46px; padding: 0 22px; background: var(--gold); color: var(--ink); }
.hero-search .search-go:hover { background: var(--gold-2); }
.hero-search .suggest { color: var(--ink); }
.hero-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.hero-tags span.l { font-size: 13px; color: rgba(255, 255, 255, .6); margin-right: 4px; }
.hero-tags a { display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .06); transition: all .25s var(--ease); }
.hero-tags a:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

.mosaic { position: relative; height: clamp(300px, 46vw, 520px); }
.hcard { position: absolute; display: block; width: 46%; padding: 8px 8px 14px; border-radius: 26px; background: #fff; color: var(--ink); box-shadow: var(--shadow-2); transition: transform .6s var(--ease), z-index 0s; }
.hcard img { width: 100%; height: auto; aspect-ratio: 1 / 1.08; object-fit: cover; border-radius: 19px; background: var(--sand); }
.hcard .t { display: block; margin: 10px 8px 0; font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hcard .p { display: block; margin: 2px 8px 0; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -.03em; }
.hcard:nth-child(1) { left: 0; top: 16%; rotate: -7deg; animation: float 7s ease-in-out infinite; }
.hcard:nth-child(2) { right: 0; top: 0; rotate: 6deg; z-index: 2; animation: float 8s ease-in-out -2s infinite; }
.hcard:nth-child(3) { left: 27%; bottom: 0; rotate: -2deg; z-index: 3; width: 44%; animation: float 9s ease-in-out -4s infinite; }
.hcard:hover { rotate: 0deg; scale: 1.04; z-index: 5; animation-play-state: paused; }
.fchip { position: absolute; z-index: 6; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border-radius: 999px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); font-size: 13.5px; font-weight: 600; box-shadow: 0 16px 30px -16px rgba(0, 0, 0, .5); }
.fchip .ic { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); }
.fchip .ic .i { width: 17px; height: 17px; }
.fchip.a { left: 0; top: 0; animation: float 6s ease-in-out -1s infinite; }
.fchip.b { right: 0; bottom: 9%; animation: float 7s ease-in-out -3s infinite; }
@media (max-width: 959px) { .mosaic { height: 300px; margin-top: -8px; } .fchip { display: none; } }

.perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 14px 0 0; }
@media (min-width: 960px) { .perks { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.perk { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 22px; background: #fff; border: 1px solid var(--line-2); transition: transform .35s var(--ease), box-shadow .35s; }
.perk:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.perk .ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 15px; background: var(--mint); color: var(--forest); }
.perk:nth-child(2) .ic { background: var(--gold-soft); color: #8a5a00; }
.perk:nth-child(3) .ic { background: #e6eefb; color: #274a8f; }
.perk:nth-child(4) .ic { background: #fbe6e3; color: #a3352b; }
.perk b { display: block; font-size: 14.5px; line-height: 1.25; }
.perk span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.35; margin-top: 2px; }
@media (max-width: 559px) { .perk { flex-direction: column; align-items: flex-start; gap: 10px; } }

.ctiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 640px) { .ctiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .ctiles { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; } }
.ctile { position: relative; display: block; aspect-ratio: 1 / 1.18; border-radius: 24px; overflow: hidden; background: var(--sand); isolation: isolate; }
.ctile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); z-index: -2; }
.ctile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 38%, rgba(11, 23, 18, .82)); transition: opacity .3s; }
.ctile:hover img { transform: scale(1.09); }
.ctile .lbl { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.1; letter-spacing: -.02em; }
.ctile .go { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); transform: rotate(-45deg) scale(.8); opacity: 0; transition: all .4s var(--ease); }
.ctile:hover .go { transform: none; opacity: 1; }
@media (hover: none) { .ctile .go { transform: none; opacity: 1; } }

.promo { position: relative; border-radius: clamp(22px, 3vw, 36px); overflow: hidden; background: var(--sand); aspect-ratio: 16 / 9; }
@media (min-width: 760px) { .promo { aspect-ratio: 21 / 8; } }
.promo-track { display: flex; height: 100%; transition: transform .9s var(--ease); }
.promo-slide { flex: 0 0 100%; height: 100%; }
.promo-slide img { width: 100%; height: 100%; object-fit: cover; }
.promo-ui { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.promo-dots { display: flex; gap: 6px; }
.promo-dots button { position: relative; width: 34px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .5); overflow: hidden; }
.promo-dots button::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.promo-dots button.is-on::after { animation: fill var(--dur, 5s) linear forwards; }
.promo-dots button.is-past::after { transform: scaleX(1); }
.promo:hover .promo-dots button.is-on::after { animation-play-state: paused; }
.promo-arrows { display: flex; gap: 8px; }
.promo-arrows button { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .9); transition: transform .25s var(--ease), background-color .2s; }
.promo-arrows button:hover { background: #fff; transform: scale(1.08); }

.flash { position: relative; isolation: isolate; overflow: hidden; border-radius: clamp(26px, 3.4vw, 44px); background: var(--ink); color: #fff; padding: clamp(26px, 4.5vw, 60px) clamp(20px, 4vw, 56px) clamp(26px, 4vw, 48px); }
.flash::before { content: ""; position: absolute; z-index: -1; inset: 0; background: radial-gradient(50% 80% at 100% 0, rgba(247, 185, 40, .28), transparent 65%), radial-gradient(40% 60% at 0 100%, rgba(226, 61, 61, .3), transparent 65%); }
.flash-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.flash-head h2 { font-size: clamp(32px, 5vw, 60px); letter-spacing: -.05em; margin-top: 10px; display: flex; align-items: center; gap: 14px; }
.flash-head h2 .bolt { display: inline-grid; place-items: center; width: .9em; height: .9em; border-radius: 28%; background: var(--gold); color: var(--ink); transform: rotate(-8deg); animation: zap 2.4s ease-in-out infinite; }
.flash-head h2 .bolt .i { width: 55%; height: 55%; fill: currentColor; stroke: none; }
.flash-tools { display: flex; align-items: center; gap: 18px; }
.cd { display: flex; align-items: center; gap: 6px; }
.cd-box { min-width: 58px; padding: 8px 6px 7px; border-radius: 14px; text-align: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); }
.cd-box b { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--gold); }
.cd-box small { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255, 255, 255, .55); }
.cd-sep { font-weight: 800; color: rgba(255, 255, 255, .35); }
.flash .rail { margin-inline: 0; padding-inline: 0; }

.tabs-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.tabs-row .chips { flex: 1; }
.pgrid.is-filtering .pcard { animation: fadeUp .5s var(--ease) both; }

.sellband { position: relative; isolation: isolate; overflow: hidden; border-radius: clamp(26px, 3.4vw, 44px); background: var(--gold); color: var(--ink); padding: clamp(28px, 5vw, 64px); display: grid; gap: 36px; }
@media (min-width: 960px) { .sellband { grid-template-columns: 1.1fr .9fr; align-items: center; } }
.sellband::before { content: ""; position: absolute; z-index: -1; right: -8%; top: -40%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .55), transparent 65%); }
.sellband .eyebrow::before { background: var(--ink); box-shadow: 0 0 0 4px rgba(11, 23, 18, .12); }
.sellband h2 { font-size: clamp(36px, 5.6vw, 72px); letter-spacing: -.05em; line-height: .95; margin: 14px 0 18px; }
.sellband p { max-width: 46ch; font-size: 17px; color: rgba(11, 23, 18, .75); }
.sellband .cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.steps { display: grid; gap: 10px; counter-reset: st; }
.step { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 22px; background: rgba(255, 255, 255, .55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); counter-increment: st; transition: transform .35s var(--ease), background-color .2s; }
.step:hover { transform: translateX(6px); background: rgba(255, 255, 255, .85); }
.step::before { content: counter(st); flex: none; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold); font-family: var(--font-display); font-weight: 800; }
.step b { display: block; font-size: 16px; }
.step span { font-size: 13.5px; color: rgba(11, 23, 18, .68); }

.trackband { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: center; padding: clamp(22px, 3.4vw, 40px); border-radius: 30px; background: #fff; border: 1px solid var(--line-2); }
@media (min-width: 860px) { .trackband { grid-template-columns: 1fr 1fr; } }
.stage-grid > *, .sellband > *, .cart-lay > *, .pdp > *, .lay > *, .contact-lay > *, .rev-sum > *, .trackband > *, .auth > * { min-width: 0; }
.trackband h3 { font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -.04em; }
.trackband p { color: var(--muted); margin-top: 8px; }
.trackform { display: flex; gap: 8px; padding: 6px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper); }
.trackform input { flex: 1; min-width: 0; border: 0; background: transparent; outline: 0; padding: 0 16px; font-weight: 500; }

/* Footer */
.foot { position: relative; margin-top: clamp(48px, 8vw, 100px); background: var(--ink); color: rgba(255, 255, 255, .72); overflow: hidden; border-radius: clamp(28px, 4vw, 52px) clamp(28px, 4vw, 52px) 0 0; }
.foot-top { display: grid; gap: 40px; padding: clamp(40px, 6vw, 76px) 0 48px; }
@media (min-width: 960px) { .foot-top { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.foot h5 { margin: 0 0 16px; font: 700 12px var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); }
.foot li + li { margin-top: 10px; }
.foot li a { transition: color .2s, padding .3s var(--ease); }
.foot li a:hover { color: var(--gold); padding-left: 4px; }
.foot-brand p { max-width: 36ch; margin: 18px 0 22px; }
.foot-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
@media (min-width: 960px) { .foot-links { display: contents; } }
.foot-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 0 28px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }
.foot-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.foot-pay span { padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18); font-size: 12px; font-weight: 600; color: #fff; }
.foot-mark { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(90px, 22vw, 330px); line-height: .95; margin-bottom: -.2em; letter-spacing: -.07em; text-align: center; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .13); margin-top: 16px; user-select: none; white-space: nowrap; }
.foot-mark::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(transparent, var(--ink)); }

/* 08 — LISTING PAGES ------------------------------------------------------ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 22px 0 6px; font-size: 13.5px; color: var(--muted); font-weight: 500; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.crumbs .i { width: 14px; height: 14px; opacity: .6; }
.crumbs b { color: var(--ink); font-weight: 600; }

.phead { position: relative; isolation: isolate; overflow: hidden; border-radius: clamp(24px, 3vw, 40px); background: var(--forest); color: #fff; padding: clamp(26px, 4.5vw, 60px); min-height: 220px; display: flex; align-items: flex-end; }
.phead-img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; filter: saturate(.8); }
.phead::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, var(--forest) 25%, rgba(13, 59, 44, .35) 90%), radial-gradient(50% 80% at 100% 0, rgba(247, 185, 40, .3), transparent 65%); }
.phead h1 { font-size: clamp(38px, 6.4vw, 84px); letter-spacing: -.055em; margin-top: 12px; }
.phead p { margin-top: 14px; color: rgba(255, 255, 255, .75); max-width: 52ch; }

.lay { display: grid; gap: 32px; margin-top: 28px; align-items: start; }
@media (min-width: 1000px) { .lay { grid-template-columns: 270px 1fr; gap: 44px; } }
.filters { display: none; }
@media (min-width: 1000px) { .filters { display: block; position: sticky; top: calc(var(--hdr-h) + 24px); } }
.fgroup { padding: 20px 0; border-bottom: 1px solid var(--line); }
.fgroup:first-child { padding-top: 0; }
.fgroup h6 { margin: 0 0 14px; font: 700 12px var(--font-body); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.frow { display: flex; gap: 10px; }
.frow .field input { height: 52px; padding: 18px 12px 6px; }
.frow .field label { top: 16px; left: 13px; }
.frow .field input:focus ~ label, .frow .field input:not(:placeholder-shown) ~ label { top: 7px; }
.check { display: flex; align-items: center; gap: 12px; padding: 8px 0; cursor: pointer; font-weight: 500; font-size: 15px; }
.check input { position: absolute; opacity: 0; }
.check .box { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; border: 1.5px solid var(--line); background: #fff; transition: all .2s var(--ease); color: transparent; }
.check .box .i { width: 14px; height: 14px; stroke-width: 3; }
.check input:checked + .box { background: var(--forest); border-color: var(--forest); color: #fff; }
.check input:focus-visible + .box { outline: 3px solid var(--gold); outline-offset: 2px; }
.check em { margin-left: auto; font-style: normal; font-size: 12.5px; color: var(--soft); }

.tbar { flex-wrap: wrap; position: sticky; z-index: 30; top: calc(var(--hdr-h) - 1px); display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 calc(var(--gutter) * -1) 20px; padding: 12px var(--gutter); background: rgba(246, 243, 236, .9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
@media (min-width: 1000px) { .tbar { position: static; margin: 0 0 22px; padding: 0; background: none; -webkit-backdrop-filter: none; backdrop-filter: none; } }
.tbar .count { white-space: nowrap; font-weight: 600; color: var(--muted); font-size: 14.5px; }
.tbar .count b { color: var(--ink); }
.tbar-r { display: flex; align-items: center; gap: 8px; }
.sel { position: relative; }
.sel select { max-width: 44vw; height: 44px; padding: 0 36px 0 14px; text-overflow: ellipsis; border-radius: 999px; border: 1.5px solid var(--line); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230b1712' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; appearance: none; -webkit-appearance: none; font-weight: 600; font-size: 14px; cursor: pointer; outline: none; }
.sel select:focus { border-color: var(--forest); }
.filter-toggle { display: inline-flex; }
@media (min-width: 1000px) { .filter-toggle { display: none; } }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-filters:empty { display: none; }
.active-filters button { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 8px 0 14px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 600; }
.active-filters button .i { width: 15px; height: 15px; }

.empty { text-align: center; padding: clamp(44px, 8vw, 96px) 20px; border: 2px dashed var(--line); border-radius: var(--r-lg); background: rgba(255, 255, 255, .5); }
.empty .ring { width: 92px; height: 92px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--forest-3); }
.empty .ring .i { width: 38px; height: 38px; }
.empty h3 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.empty p { color: var(--muted); max-width: 44ch; margin: 0 auto 24px; }
.empty .row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.stitle { padding: clamp(26px, 4vw, 44px) 0 8px; }
.stitle h1 { font-size: clamp(34px, 5.4vw, 66px); letter-spacing: -.05em; margin-top: 10px; }
.stitle h1 em { font-style: normal; color: var(--forest-3); }
.sbar { max-width: 720px; margin-top: 22px; }
.sbar .search-box { height: 58px; }

@media (min-width: 1000px) { #filterSheet { display: none; } }

/* 09 — PRODUCT PAGE ------------------------------------------------------- */
.pdp { display: grid; gap: 28px; padding-top: 8px; }
@media (min-width: 960px) { .pdp { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 72px); align-items: start; } }
.gal { display: grid; gap: 12px; }
@media (min-width: 640px) { .gal { grid-template-columns: 84px 1fr; } }
.gal-main { position: relative; grid-column: 1; grid-row: 1; border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--line-2); aspect-ratio: 1 / 1; }
@media (min-width: 640px) { .gal-main { grid-column: 2; } }
.gal-track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.gal-track::-webkit-scrollbar { display: none; }
.gal-slide { flex: 0 0 100%; height: 100%; scroll-snap-align: center; position: relative; overflow: hidden; }
.gal-slide img { width: 100%; height: 100%; object-fit: contain; padding: clamp(8px, 2vw, 22px); transition: transform .5s var(--ease); transform-origin: var(--zx, 50%) var(--zy, 50%); }
@media (hover: hover) { .gal-slide.is-zoom { cursor: zoom-in; } .gal-slide.is-zoom img { transform: scale(2); transition: transform .25s var(--ease); } }
.gal-badges { position: absolute; z-index: 2; top: 16px; left: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
.gal-dots { position: absolute; z-index: 2; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 6px; padding: 7px 10px; border-radius: 999px; background: rgba(255, 255, 255, .8); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.gal-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: all .3s var(--ease); }
.gal-dots i.is-on { width: 22px; border-radius: 4px; background: var(--ink); }
.gal-count { position: absolute; z-index: 2; right: 14px; bottom: 14px; padding: 5px 12px; border-radius: 999px; background: rgba(11, 23, 18, .75); color: #fff; font-size: 12.5px; font-weight: 600; }
.gal-thumbs { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; grid-row: 2; grid-column: 1; }
.gal-thumbs::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .gal-thumbs { grid-row: 1; flex-direction: column; overflow: auto; max-height: 560px; } }
.gal-thumb { flex: none; width: 68px; height: 68px; border-radius: 16px; overflow: hidden; border: 2px solid transparent; background: #fff; opacity: .65; transition: all .25s var(--ease); }
@media (min-width: 640px) { .gal-thumb { width: 84px; height: 84px; } }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb:hover { opacity: 1; }
.gal-thumb.is-on { border-color: var(--ink); opacity: 1; }
@media (max-width: 639px) { .gal-thumbs { display: none; } }
@media (min-width: 640px) { .gal-dots { display: none; } }

.buy { display: grid; gap: 22px; align-content: start; }
@media (min-width: 960px) { .buy { position: sticky; top: calc(var(--hdr-h) + 24px); } }
.buy-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest-3); }
.buy h1 { font-size: clamp(30px, 3.6vw, 46px); letter-spacing: -.045em; line-height: 1.02; margin-top: 10px; }
.buy-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px; margin-top: 14px; font-size: 14px; color: var(--muted); font-weight: 500; }
.buy-meta a { text-decoration: underline; text-underline-offset: 3px; }
.buy-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 14px; padding: 20px 0; border-block: 1px solid var(--line); }
.buy-price .now { font-family: var(--font-display); font-size: clamp(38px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.055em; line-height: 1; }
.buy-price .now .cur { font-size: .5em; font-weight: 700; margin-right: 4px; letter-spacing: 0; opacity: .75; }
.buy-price .was { font-size: 18px; color: var(--soft); text-decoration: line-through; }
.buy-price .off { padding: 4px 10px; border-radius: 999px; background: var(--red-soft); color: var(--red); font-weight: 800; font-size: 13px; }
.stock { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.stock::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(29, 179, 122, .2); }
.stock.low { color: #a15d00; } .stock.low::before { background: var(--gold); box-shadow: 0 0 0 4px rgba(247, 185, 40, .25); }
.stock.out { color: var(--red); } .stock.out::before { background: var(--red); box-shadow: 0 0 0 4px rgba(226, 61, 61, .2); }
.buy-actions { display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.buy-actions .full { grid-column: 1 / -1; }
.buy-sec { display: flex; gap: 10px; }
.buy-sec .btn { flex: 1; }
.assure { display: grid; gap: 12px; padding: 18px; border-radius: 22px; background: #fff; border: 1px solid var(--line-2); }
.assure li { display: flex; align-items: center; gap: 14px; font-size: 14.5px; }
.assure .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 13px; background: var(--mint); color: var(--forest); }
.assure li:nth-child(2) .ic { background: var(--gold-soft); color: #8a5a00; }
.assure li:nth-child(3) .ic { background: #e6eefb; color: #274a8f; }
.assure b { display: block; line-height: 1.25; }
.assure span { color: var(--muted); font-size: 13px; }
.options { display: grid; gap: 14px; }
.options .lab { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.opt-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-chips span { padding: 7px 14px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); font-weight: 600; font-size: 13.5px; }
.desc { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.desc.is-clamped { max-height: 7.2em; overflow: hidden; -webkit-mask-image: linear-gradient(#000 55%, transparent); mask-image: linear-gradient(#000 55%, transparent); }
.desc-more { margin-top: 10px; font-weight: 700; font-size: 14.5px; border-bottom: 2px solid var(--gold); }
.inbox { display: flex; gap: 14px; padding: 20px; border-radius: 22px; background: var(--forest); color: #fff; }
.inbox .ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 14px; background: rgba(255, 255, 255, .12); color: var(--gold); }
.inbox small { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 4px; }

.buybar { position: fixed; z-index: 54; left: 0; right: 0; bottom: 0; display: flex; align-items: center; gap: 12px; padding: 12px var(--gutter) max(14px, env(safe-area-inset-bottom)); background: rgba(246, 243, 236, .94); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform .5s var(--ease); }
.buybar.is-on { transform: none; }
.buybar .p { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.04em; line-height: 1; }
.buybar .p small { display: block; font: 500 12px var(--font-body); letter-spacing: 0; color: var(--muted); margin-top: 3px; }
.buybar .btn { flex: 1; }
@media (min-width: 960px) { .buybar { display: none; } }
.pdp-page .tabbar { display: none; }
.pdp-page.has-tabbar { padding-bottom: 96px; }
@media (min-width: 960px) { .pdp-page.has-tabbar { padding-bottom: 0; } }

/* 10 — REVIEWS ------------------------------------------------------------ */
.rev-sum { display: grid; gap: 28px; padding: clamp(22px, 3vw, 36px); border-radius: 28px; background: #fff; border: 1px solid var(--line-2); }
@media (min-width: 760px) { .rev-sum { grid-template-columns: 240px 1fr; align-items: center; } }
.rev-avg { text-align: center; }
.rev-avg .big { font-family: var(--font-display); font-size: 76px; font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.rev-avg .stars { justify-content: center; margin: 8px 0 6px; } .rev-avg .stars .i { width: 20px; height: 20px; }
.rev-bars { display: grid; gap: 8px; }
.rev-bar { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.rev-bar .track { height: 9px; border-radius: 5px; background: var(--sand); overflow: hidden; }
.rev-bar .track i { display: block; height: 100%; width: var(--w, 0%); border-radius: 5px; background: var(--gold); transform-origin: left; animation: fill .9s var(--ease) both; }
.rev-list { display: grid; gap: 14px; margin-top: 18px; }
.rev { padding: 22px 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line-2); }
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: var(--gold); font-family: var(--font-display); font-weight: 800; flex: none; }
.rev b { display: block; line-height: 1.2; }
.rev small { color: var(--soft); }
.rev p { color: var(--ink-2); }
.rev-form { margin-top: 18px; padding: clamp(20px, 3vw, 32px); border-radius: 26px; background: var(--sand); display: grid; gap: 14px; }
.rate-in { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rate-in input { position: absolute; opacity: 0; }
.rate-in label { cursor: pointer; color: var(--line); transition: color .15s, transform .25s var(--ease-spring); }
.rate-in label .i { width: 34px; height: 34px; fill: currentColor; stroke: none; }
.rate-in label:hover, .rate-in label:hover ~ label, .rate-in input:checked ~ label { color: var(--gold); }
.rate-in label:hover { transform: scale(1.15); }
.rate-in input:focus-visible + label { outline: 3px solid var(--gold); border-radius: 6px; }

/* 11 — CART & CHECKOUT ---------------------------------------------------- */
.page-title { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; padding: clamp(24px, 4vw, 44px) 0 clamp(18px, 3vw, 30px); }
.page-title h1 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -.055em; }
.page-title h1 em { font-style: normal; color: var(--forest-3); }
.page-title .n { color: var(--soft); font-weight: 600; font-size: 18px; }
.cart-lay { display: grid; gap: 24px; align-items: start; }
@media (min-width: 1000px) { .cart-lay { grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; } }
.cline { display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); transition: opacity .4s, transform .5s var(--ease), max-height .5s var(--ease), padding .5s var(--ease); max-height: 260px; }
@media (min-width: 640px) { .cline { grid-template-columns: 132px 1fr auto; gap: 24px; } }
.cline.is-removing { opacity: 0; transform: translateX(-30px); max-height: 0; padding-block: 0; overflow: hidden; border: 0; }
.cline-img { display: block; aspect-ratio: 1 / 1.1; border-radius: 20px; overflow: hidden; background: var(--sand); }
.cline-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cline:hover .cline-img img { transform: scale(1.06); }
.cline .t { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 2vw, 22px); letter-spacing: -.03em; line-height: 1.15; }
.cline .u { margin-top: 6px; color: var(--muted); font-size: 14px; }
.cline .ctl { display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.cline .rm { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--soft); transition: color .2s; }
.cline .rm:hover { color: var(--red); }
.cline .rm .i { width: 16px; height: 16px; }
.cline .sub { font-family: var(--font-display); font-weight: 800; font-size: clamp(19px, 2.2vw, 26px); letter-spacing: -.04em; white-space: nowrap; text-align: right; grid-column: 2; }
@media (min-width: 640px) { .cline .sub { grid-column: auto; align-self: start; } }
.sumcard { padding: clamp(22px, 3vw, 32px); border-radius: 28px; background: var(--forest); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.sumcard::before { content: ""; position: absolute; z-index: -1; right: -20%; top: -30%; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(247, 185, 40, .28), transparent 65%); }
@media (min-width: 1000px) { .sumcard.sticky { position: sticky; top: calc(var(--hdr-h) + 24px); } }
.sumcard h4 { font-size: 22px; margin-bottom: 20px; }
.srow { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px 0; color: rgba(255, 255, 255, .72); font-size: 15px; }
.srow b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.srow.total { margin-top: 12px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14); align-items: flex-end; color: #fff; }
.srow.total b { font-family: var(--font-display); font-size: clamp(34px, 4vw, 46px); font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--gold); }
.sumcard .btn { margin-top: 22px; }
.sumcard .fine { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 12.5px; color: rgba(255, 255, 255, .6); text-align: center; }
.sumcard .fine .i { width: 15px; height: 15px; }
.sumcard.is-updating .srow b { animation: blink .6s; }

.stepper { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--soft); margin-bottom: 8px; }
.stepper .s { display: inline-flex; align-items: center; gap: 8px; }
.stepper .s i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--sand); font-style: normal; font-size: 12.5px; font-weight: 800; color: var(--muted); }
.stepper .s.on { color: var(--ink); } .stepper .s.on i { background: var(--ink); color: var(--gold); }
.stepper .s.is-done i { background: var(--emerald); color: #fff; } .stepper .s.is-done { color: var(--ink); }
.stepper .ln { flex: 0 1 44px; height: 2px; border-radius: 1px; background: var(--line); }
.stepper .ln.is-done { background: var(--emerald); }
@media (max-width: 520px) { .stepper .s span { display: none; } .stepper .s.on span { display: inline; } }

.fcard { padding: clamp(22px, 3.4vw, 40px); border-radius: 28px; background: #fff; border: 1px solid var(--line-2); box-shadow: var(--shadow-1); display: grid; gap: 22px; }
.fcard h3 { font-size: 22px; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; border-radius: 20px; background: var(--paper); border: 1px solid var(--line-2); }
.seg button { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 60px; padding: 8px 10px; border-radius: 15px; font-weight: 700; font-size: 14.5px; color: var(--muted); transition: all .3s var(--ease); text-align: left; }
.seg button small { display: block; font-weight: 500; font-size: 12px; opacity: .8; }
.seg button.active { background: var(--ink); color: #fff; box-shadow: 0 12px 24px -12px rgba(11, 23, 18, .6); }
.seg button.active .i { color: var(--gold); }
.notice { display: flex; gap: 12px; padding: 16px 18px; border-radius: 18px; background: var(--gold-soft); color: #6a4a00; font-size: 14px; font-weight: 500; }
.notice .i { margin-top: 2px; flex: none; }
.escrow { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: 20px; background: var(--mint); color: var(--forest); font-size: 14px; font-weight: 500; }
.escrow .i { width: 26px; height: 26px; flex: none; }
.osum { display: grid; gap: 14px; max-height: 300px; overflow: auto; margin-bottom: 8px; padding-right: 4px; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .3) transparent; }
.oitem { display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; }
.oitem .im { position: relative; }
.oitem img { width: 58px; height: 70px; border-radius: 12px; object-fit: cover; background: rgba(255, 255, 255, .1); }
.oitem .im b { position: absolute; top: -6px; right: -6px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: 12px; display: grid; place-items: center; }
.oitem .t { font-size: 14px; font-weight: 600; line-height: 1.3; color: #fff; }
.oitem .p { font-family: var(--font-display); font-weight: 700; color: #fff; white-space: nowrap; }
.mask { position: fixed; inset: 0; z-index: 250; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px; background: rgba(11, 23, 18, .92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; }
.mask.is-on { display: flex; animation: fadeIn .3s; }
.mask h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: -.04em; }
.mask p { color: rgba(255, 255, 255, .7); }
.orbit { position: relative; width: 96px; height: 96px; margin-bottom: 10px; }
.orbit i { position: absolute; inset: 0; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .12); border-top-color: var(--gold); animation: spin 1s linear infinite; }
.orbit i:nth-child(2) { inset: 14px; border-top-color: var(--emerald); animation-duration: 1.6s; animation-direction: reverse; }
.orbit .i { position: absolute; inset: 0; margin: auto; width: 28px; height: 28px; color: var(--gold); }

/* 12 — AUTH, FORMS, HELP, SUCCESS ---------------------------------------- */
.auth { min-height: 100dvh; display: grid; }
@media (min-width: 960px) { .auth { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.auth-art { position: relative; isolation: isolate; overflow: hidden; display: none; flex-direction: column; justify-content: space-between; padding: clamp(32px, 4vw, 56px); background: var(--forest); color: #fff; }
@media (min-width: 960px) { .auth-art { display: flex; } }
.auth-art::before { content: ""; position: absolute; z-index: -2; inset: 0; background: radial-gradient(60% 50% at 100% 0, rgba(247, 185, 40, .4), transparent 65%), radial-gradient(60% 60% at 0 100%, rgba(29, 179, 122, .5), transparent 65%); }
.auth-art::after { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .14; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.auth-art h2 { font-size: clamp(40px, 4.4vw, 64px); letter-spacing: -.055em; line-height: .98; max-width: 13ch; }
.auth-art h2 em { font-style: normal; color: var(--gold); }
.auth-art ul { display: grid; gap: 14px; margin-top: 32px; }
.auth-art li { display: flex; align-items: center; gap: 14px; font-weight: 500; color: rgba(255, 255, 255, .88); }
.auth-art li .ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: rgba(255, 255, 255, .1); color: var(--gold); }
.auth-orb { position: absolute; z-index: -1; width: 520px; aspect-ratio: 1; right: -180px; bottom: -180px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .14); }
.auth-orb::before, .auth-orb::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .12); inset: 14%; }
.auth-orb::after { inset: 28%; }
.auth-form { display: flex; flex-direction: column; padding: max(20px, env(safe-area-inset-top)) var(--gutter) 28px; }
.auth-logo-m { }
@media (min-width: 960px) { .auth-logo-m { visibility: hidden; } }
.auth-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 0 0; }
.auth-card { width: min(440px, 100%); margin: auto; padding: 36px 0; }
.auth-card h1 { font-size: clamp(34px, 4.4vw, 48px); letter-spacing: -.05em; margin: 12px 0 10px; }
.auth-card > p { color: var(--muted); margin-bottom: 26px; }
.auth-card form { display: grid; gap: 14px; }
.auth-foot { text-align: center; margin-top: 26px; color: var(--muted); font-size: 15px; }
.auth-foot a { font-weight: 700; color: var(--forest-3); text-decoration: underline; text-underline-offset: 3px; }
.langs { display: flex; gap: 6px; }
.langs a { display: inline-flex; align-items: center; height: 34px; padding: 0 12px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 12.5px; font-weight: 700; transition: all .2s; }
.langs a:hover { border-color: var(--ink); }
.langs a.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.or { display: flex; align-items: center; gap: 14px; margin: 22px 0 16px; color: var(--soft); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pick a { display: flex; flex-direction: column; gap: 12px; padding: 18px; border-radius: 20px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 14px; transition: all .3s var(--ease); }
.pick a .ic { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--mint); color: var(--forest); transition: all .3s; }
.pick a:nth-child(2) .ic { background: var(--gold-soft); color: #8a5a00; }
.pick a:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-1); }
.meter { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-top: -4px; }
.meter i { height: 4px; border-radius: 2px; background: var(--line); transition: background-color .3s; }
.meter[data-s="1"] i:nth-child(-n+1) { background: var(--red); }
.meter[data-s="2"] i:nth-child(-n+2) { background: var(--gold); }
.meter[data-s="3"] i:nth-child(-n+3) { background: #8fd14f; }
.meter[data-s="4"] i { background: var(--emerald); }
.hint { font-size: 12.5px; color: var(--soft); margin: -4px 4px 0; display: flex; justify-content: space-between; }

.simple-head { border-bottom: 1px solid var(--line-2); }
.simple-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.contact-lay { display: grid; gap: 24px; align-items: start; }
@media (min-width: 960px) { .contact-lay { grid-template-columns: 380px 1fr; gap: 40px; } }
.ccards { display: grid; gap: 12px; }
.ccard { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 24px; background: #fff; border: 1px solid var(--line-2); transition: all .3s var(--ease); }
a.ccard:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: var(--line); }
.ccard .ic { width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 17px; background: var(--mint); color: var(--forest); }
.ccard:nth-child(2) .ic { background: var(--gold-soft); color: #8a5a00; }
.ccard:nth-child(3) .ic { background: #e6eefb; color: #274a8f; }
.ccard b { display: block; font-size: 16px; }
.ccard span { color: var(--muted); font-size: 14px; }
.ccard .i-arrow { margin-left: auto; color: var(--soft); }

.faq-search { max-width: 640px; margin-top: 28px; }
.faq-search .search-box { height: 60px; border: 0; color: var(--ink); }
.qlinks { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 960px) { .qlinks { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.qlink { display: flex; flex-direction: column; gap: 14px; padding: 22px; border-radius: 26px; background: #fff; border: 1px solid var(--line-2); transition: all .35s var(--ease); }
.qlink:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.qlink .ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: var(--mint); color: var(--forest); }
.qlink:nth-child(2) .ic { background: #e6eefb; color: #274a8f; }
.qlink:nth-child(3) .ic { background: var(--gold-soft); color: #8a5a00; }
.qlink:nth-child(4) .ic { background: #efe6fb; color: #5b2e91; }
.qlink b { font-family: var(--font-display); font-size: 19px; letter-spacing: -.02em; }
.qlink span { color: var(--muted); font-size: 14px; margin-top: -8px; }
@media (max-width: 559px) { .qlink { padding: 16px; } .qlink span { display: none; } }
.legal { padding: 8px 0 0; }

.done { min-height: calc(100dvh - 110px); display: grid; place-items: center; padding: 40px 0; }
.done-card { width: min(560px, 100%); text-align: center; position: relative; }
.tick { position: relative; width: 120px; height: 120px; margin: 0 auto 28px; display: grid; place-items: center; border-radius: 50%; background: var(--emerald); color: #fff; animation: popIn .8s var(--ease-spring) both; }
.tick::before, .tick::after { content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 2px solid var(--emerald); opacity: 0; animation: ripple 2.2s ease-out .5s infinite; }
.tick::after { animation-delay: 1.3s; }
.tick svg { width: 56px; height: 56px; stroke: currentColor; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .7s .5s var(--ease) forwards; }
.done h1 { font-size: clamp(38px, 6vw, 64px); letter-spacing: -.055em; }
.done h1 em { font-style: normal; color: var(--forest-3); }
.done .ref { display: inline-flex; margin-top: 16px; padding: 7px 16px; border-radius: 999px; background: #fff; border: 1.5px dashed var(--line); font-weight: 700; font-size: 14px; letter-spacing: .04em; }
.done > .done-card > p { margin: 18px auto 0; max-width: 46ch; color: var(--muted); }
.timeline { display: grid; gap: 0; margin: 30px 0 30px; text-align: left; padding: 8px 22px; border-radius: 24px; background: #fff; border: 1px solid var(--line-2); }
.tl { position: relative; display: flex; gap: 16px; padding: 16px 0; }
.tl + .tl { border-top: 1px dashed var(--line); }
.tl .d { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--sand); color: var(--muted); font-weight: 800; font-size: 13px; }
.tl.on .d { background: var(--emerald); color: #fff; }
.tl b { display: block; line-height: 1.25; }
.tl span { font-size: 13.5px; color: var(--muted); }
.confetti { position: fixed; inset: 0; z-index: 30; pointer-events: none; overflow: hidden; }
.confetti i { position: absolute; top: -20px; width: 10px; height: 16px; border-radius: 2px; opacity: 0; animation: confetti var(--t, 3s) var(--d, 0s) cubic-bezier(.2, .6, .4, 1) forwards; }

/* 13 — MOTION & UTILITIES ------------------------------------------------- */
@media (max-width: 959px) { .hide-m { display: none !important; } }
.stack-12 { display: grid; gap: 12px; }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform 1s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
html.js .fade-img { opacity: 0; }
html.js .fade-img.is-in { opacity: 1; }
.pcard-media img.fade-img.is-in, .ctile img.fade-img.is-in { transition: transform 1s var(--ease), opacity .6s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { background-position: -220% 0; } }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { 0% { opacity: 0; transform: scale(.7); } 100% { opacity: 1; transform: none; } }
@keyframes pop { 0% { transform: scale(.6); } 60% { transform: scale(1.35); } 100% { transform: scale(1); } }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.22) rotate(-6deg); } 100% { transform: scale(1); } }
@keyframes shake { 20%, 60% { transform: translateX(-4px); } 40%, 80% { transform: translateX(4px); } }
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(24px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes toastOut { to { opacity: 0; transform: translateY(12px) scale(.96); } }
@keyframes zap { 0%, 100% { transform: rotate(-8deg) scale(1); } 50% { transform: rotate(4deg) scale(1.08); } }
@keyframes ripple { 0% { opacity: .7; transform: scale(.85); } 100% { opacity: 0; transform: scale(1.5); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes blink { 50% { opacity: .35; } }
@keyframes confetti { 0% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); } 100% { opacity: 1; transform: translate3d(var(--x, 0), 105vh, 0) rotate(var(--r, 540deg)); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html.js .reveal { opacity: 1; transform: none; }
}
@media print { .announce, .hdr, .tabbar, .foot, .drawer, .scrim, .buybar { display: none !important; } }
