  /* ============================================================
     ThriftEd — Landing Page
     Brand: #f06724 primary, #7b3331 secondary, #0f9eda + #daa15b
     ============================================================ */

  :root {
    --orange: #f06724;
    --orange-deep: #d24f0e;
    --maroon: #7b3331;
    --maroon-deep: #5a2422;
    --blue: #0f9eda;
    --gold: #daa15b;
    --cream: #fdf3e3;
    --cream-deep: #f7e8cf;
    --ink: #1a1110;
    --ink-soft: #4a3a36;
    --paper: #ffffff;

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow-soft: 0 4px 24px rgba(26, 17, 16, 0.06);
    --shadow-lift: 0 18px 48px rgba(123, 51, 49, 0.14);

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-editorial: 'Calistoga', Georgia, serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Subtle paper grain */
  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image:
      radial-gradient(circle at 25% 20%, rgba(240,103,36,0.04) 0, transparent 40%),
      radial-gradient(circle at 75% 80%, rgba(123,51,49,0.04) 0, transparent 40%);
    pointer-events: none; z-index: 0;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  /* ============================================================
     Promo strip
     ============================================================ */
  .promo-strip {
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    border-bottom: 1px solid rgba(253,243,227,0.1);
  }
  .promo-track {
    display: flex; gap: 64px;
    animation: marquee 32s linear infinite;
    padding: 10px 0;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .promo-track span { display: inline-flex; align-items: center; gap: 8px; }
  .promo-track strong { color: var(--orange); font-weight: 600; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ============================================================
     Navigation — two-tier with always-on search & mega menu
     ============================================================ */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(253,243,227,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(123,51,49,0.08);
  }

  /* ── Top tier: logo, search, account ───────────────────────── */
  .nav-top {
    display: flex;
    /* display: grid;
    grid-template-columns: auto 1fr auto; */
    align-items: center;
    gap: 32px;
    padding: 14px 0;
    position: relative;
    z-index: 2;
  }
  .logo {
    display: inline-flex; align-items: center; gap: 2px;
    font-family: var(--font-editorial);
    font-size: 28px;
    color: var(--maroon);
    flex-shrink: 0;
  }
  .logo-bag {
    background: var(--orange);
    color: var(--cream);
    padding: 2px 10px 4px;
    border-radius: 6px 6px 14px 14px;
    margin-left: 4px;
    position: relative;
  }
  .logo-bag::before, .logo-bag::after {
    content: ""; position: absolute; top: -5px;
    width: 4px; height: 8px;
    border: 2px solid var(--cream);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }
  .logo-bag::before { left: 8px; }
  .logo-bag::after  { right: 8px; }

  /* Search bar — always visible, the centerpiece */
  .search {
    display: flex;
    align-items: stretch;
    background: var(--paper);
    border: 1.5px solid rgba(123,51,49,0.12);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }
  .search:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(240,103,36,0.12);
  }
  /* ── Custom category picker ─────────────────────────────── */
  .cat-select {
    position: relative;
    flex-shrink: 0;
    border-right: 1px solid rgba(123,51,49,0.12);
  }
  .cat-select-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px 0 14px;
    height: 100%;
    min-height: 48px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s ease;
  }
  .cat-select-btn:hover { color: var(--maroon); }
  .cat-select.open .cat-select-btn { color: var(--orange); }
  .cat-select-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
  }
  .cat-select-label { font-weight: 600; }
  .cat-chev {
    color: var(--maroon);
    transition: transform .22s ease;
    flex-shrink: 0;
    opacity: 0.7;
  }
  .cat-select.open .cat-chev { transform: rotate(180deg); color: var(--orange); }

  .cat-select-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    background: var(--paper);
    border: 1px solid rgba(123,51,49,0.1);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(26,17,16,0.12);
    padding: 6px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .cat-select-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .cat-select-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .cat-select-item:hover { background: var(--cream-deep); color: var(--ink); }
  .cat-select-item.is-active {
    background: rgba(240,103,36,0.08);
    color: var(--orange);
    font-weight: 600;
  }
  .cat-select-item.is-active .cat-item-icon { opacity: 1; }
  .cat-item-icon {
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    opacity: 0.85;
  }
  .cat-item-label { flex: 1; }

  .search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    outline: none;
    min-width: 0;
  }
  .search-input::placeholder { color: var(--ink-soft); opacity: 0.7; }
  .search-btn {
    background: var(--orange);
    color: var(--cream);
    padding: 0 22px;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    transition: background .2s ease;
    flex-shrink: 0;
  }
  .search-btn:hover { background: var(--orange-deep); }
  .search-btn span { display: inline; }

  .nav-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
  .icon-btn {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: transparent;
    color: var(--maroon);
    transition: background .2s ease, transform .2s ease;
    position: relative;
  }
  .icon-btn:hover { background: var(--cream-deep); transform: translateY(-1px); }
  .icon-btn .badge {
    position: absolute; top: 4px; right: 4px;
    background: var(--orange); color: var(--cream);
    width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid var(--cream);
  }
  .icon-btn-label {
    display: inline-flex; flex-direction: column;
    align-items: flex-start;
    padding: 6px 14px;
    border-radius: 12px;
    color: var(--maroon);
    transition: background .2s ease;
    line-height: 1.1;
  }
  .icon-btn-label:hover { background: var(--cream-deep); }
  .icon-btn-label small {
    font-size: 10px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  .icon-btn-label strong {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .acc-chev {
    color: var(--maroon);
    transition: transform .22s ease;
    opacity: 0.7;
  }
  .account-wrap.open .acc-chev { transform: rotate(180deg); color: var(--orange); }
  .acc-mobile-icon { display: none; }

  /* ── Account dropdown ───────────────────────────────────── */
  .account-wrap { position: relative; }
  .account-btn { border: none; cursor: pointer; }
  .account-wrap.open .account-btn { background: var(--cream-deep); }

  .account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: var(--paper);
    border: 1px solid rgba(123,51,49,0.1);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(26,17,16,0.14);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
    overflow: hidden;
  }
  .account-wrap.open .account-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .acc-header {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .acc-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(253,243,227,0.15);
    border: 2px solid rgba(253,243,227,0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
  }
  .acc-greeting {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
  }
  .acc-sub {
    font-size: 11px;
    color: rgba(253,243,227,0.65);
    letter-spacing: 0.01em;
    margin-bottom: 14px;
  }
  .acc-auth-btns {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  .acc-btn-primary, .acc-btn-secondary {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    text-decoration: none;
    display: inline-block;
  }
  .acc-btn-primary {
    background: var(--orange);
    color: var(--cream);
  }
  .acc-btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
  .acc-btn-secondary {
    background: rgba(253,243,227,0.15);
    color: var(--cream);
    border: 1px solid rgba(253,243,227,0.25);
  }
  .acc-btn-secondary:hover { background: rgba(253,243,227,0.25); transform: translateY(-1px); }

  .acc-links {
    list-style: none;
    margin: 0;
    padding: 6px;
  }
  .acc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
  }
  .acc-link:hover { background: var(--cream-deep); color: var(--ink); }
  .acc-link-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--cream-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    flex-shrink: 0;
    transition: background .15s ease;
  }
  .acc-link:hover .acc-link-icon { background: rgba(240,103,36,0.1); color: var(--orange); }
  .acc-link-badge {
    margin-left: auto;
    background: var(--orange);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .acc-divider {
    height: 1px;
    background: rgba(123,51,49,0.08);
    margin: 4px 12px;
    pointer-events: none;
  }
  .acc-link-danger { color: var(--maroon); }
  .acc-link-danger:hover { background: rgba(123,51,49,0.06); color: var(--maroon-deep); }
  .acc-link-danger .acc-link-icon { color: var(--maroon); }
  .acc-link-danger:hover .acc-link-icon { background: rgba(123,51,49,0.1); }

  /* ── Bottom tier: mega menu ───────────────────────────────── */
  .nav-main {
    border-top: 1px solid rgba(123,51,49,0.08);
    background: rgba(253,243,227,0.7);
    position: relative;
  }
  .mega-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mega-item {
    position: static; /* mega panel positions off .nav-main */
  }
  .mega-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    transition: color .2s ease;
  }
  .mega-link svg.chev {
    width: 10px; height: 10px;
    transition: transform .25s ease;
  }
  .mega-link:hover { color: var(--orange); }
  .mega-link::after {
    content: ""; position: absolute; left: 18px; right: 18px; bottom: 8px;
    height: 2px; background: var(--orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s ease;
  }
  .mega-link:hover::after,
  .mega-item.active .mega-link::after { transform: scaleX(1); }
  .mega-item.active .mega-link svg.chev { transform: rotate(180deg); }
  .mega-link.sale { color: var(--orange); }
  .mega-link.sale:hover { color: var(--orange-deep); }

  /* Mega panel */
  .mega-panel {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-top: 1px solid rgba(123,51,49,0.08);
    box-shadow: 0 24px 48px rgba(26,17,16,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 90;
  }
  .mega-item.active .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mega-panel-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.4fr;
    gap: 40px;
    padding: 36px 24px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .mega-col h5 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--maroon);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(123,51,49,0.1);
  }
  .mega-col ul { list-style: none; padding: 0; margin: 0; }
  .mega-col li { margin-bottom: 9px; }
  .mega-col a {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px;
    color: var(--ink-soft);
    transition: color .15s ease, padding .15s ease;
  }
  .mega-col a:hover {
    color: var(--orange);
    padding-left: 4px;
  }
  .mega-col a .new {
    background: var(--orange); color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .mega-col a .hot {
    background: var(--maroon); color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .mega-col a .sale-tag {
    background: var(--blue); color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mega-feature {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--cream-deep);
  }
  .mega-feature img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .mega-feature:hover img { transform: scale(1.04); }
  .mega-feature-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,17,16,0.85) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
    color: var(--cream);
  }
  .mega-feature-overlay span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .mega-feature-overlay h6 {
    font-family: var(--font-editorial);
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--cream);
  }
  .mega-feature-overlay .cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    align-self: flex-start;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--cream);
  }
  .mega-feature:hover .cta { color: var(--orange); border-color: var(--orange); transition: color .2s ease, border-color .2s ease; }

  /* ── Compact "Explore" dropdown (groups standalone nav links) ── */
  .mega-item-mini { position: relative; } /* anchor the small panel to the item, not the bar */
  .mega-panel-mini {
    left: auto; right: auto;            /* override the full-width .mega-panel */
    width: max-content; min-width: 196px;
    border: 1px solid rgba(123,51,49,0.08);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 4px;
  }
  .mini-menu { list-style: none; margin: 0; padding: 0; }
  .mini-menu li { margin: 0; }
  .mini-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: background .15s ease, color .15s ease;
  }
  .mini-menu a:hover { background: var(--cream-deep); color: var(--orange); }
  .mini-menu .mini-ic { font-size: 15px; line-height: 1; width: 18px; text-align: center; }
  .mini-menu .mini-all {
    margin-top: 4px;
    border-top: 1px solid rgba(123,51,49,0.1);
    color: var(--orange);
    justify-content: flex-start;
  }
  /* Right-align the panel for items near the end of the bar (e.g. Sale) */
  .mega-item-mini.align-right .mega-panel-mini { left: auto; right: 0; }

  /* ── Department mega menu (Clothing): one column per Level-2 dept ── */
  .mega-panel-inner.mega-depts {
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 28px 24px;
    padding: 32px 24px;
  }
  .mega-dept h5 { margin-bottom: 10px; }
  .mega-dept h5 a { color: var(--maroon); }
  .mega-dept h5 a:hover { color: var(--orange); }
  .mega-dept-links { display: flex; gap: 12px; margin-bottom: 10px; }
  .mega-dept-links a { font-size: 12px; font-weight: 600; color: var(--orange); }
  .mega-dept-links a:hover { color: var(--orange-deep); }
  .mega-subhead {
    font-family: var(--font-display);
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin: 6px 0 5px;
  }

  /* Mobile-only search row hidden by default */
  .search-mobile { display: none; }

  .menu-toggle { display: none; }

  /* ── Tablet: collapse to single tier with search wrap ────── */
  @media (max-width: 1080px) {
    .nav-top { gap: 16px; }
    /* Hide the text-based account label at tablet; .account-wrap still shows as icon on mobile */
    .icon-btn-label:not(.account-btn) { display: none; }
    .account-btn { display: none; } /* hidden at tablet; re-shown as icon on mobile */
    .mega-link { padding: 14px 12px; font-size: 12px; }
    .mega-panel-inner { grid-template-columns: repeat(3, 1fr) 1.2fr; gap: 28px; padding: 28px 20px; }
  }

  /* ── Mobile: logo + icons on one row, search below ─── */
  @media (max-width: 900px) {
    .nav-main { display: none; }

    /* Two-column: logo left, actions right — no search column */
    .nav-top {
      grid-template-columns: auto auto;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      gap: 0;
    }
    .nav-top .search-wrap { display: none; }

    /* Show hamburger */
    .menu-toggle { display: inline-flex; }

    /* Show all icon-btns (wishlist, cart, hamburger) */
    .nav-actions .icon-btn { display: inline-flex; }

    /* Hide the desktop search trigger — search bar is always visible below */
    .search-trigger-mobile { display: none !important; }

    /* Account button: compact icon-only on mobile */
    .account-wrap .account-btn {
      display: inline-flex;
      width: 40px;
      height: 40px;
      padding: 0;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }
    .account-btn small,
    .account-btn strong { display: none; }
    .acc-mobile-icon { display: inline-flex; }

    /* Account dropdown: the account icon sits mid-row (other icons follow it),
       so anchoring right:0 to the button pushes the panel off the left edge.
       Make .account-wrap static so the panel anchors to .nav-top (already
       position:relative and inside the sticky nav) and hugs the screen's
       right edge — correct whether the page is scrolled or not. */
    .account-wrap { position: static; }
    .account-dropdown {
      top: calc(100% + 8px);
      right: 8px;
      left: auto;
      width: min(300px, calc(100vw - 16px));
    }

    /* Search row below nav-top */
    .search-mobile {
      display: block;
      padding: 0 0 10px;
    }
    .search-mobile .search { max-width: 100%; }
    .search-mobile .search-input { padding: 12px 16px; font-size: 14px; }
    .search-mobile .search-btn { padding: 0 16px; }
    .search-mobile .search-btn span { display: none; }
  }

  @media (max-width: 480px) {
    .logo { font-size: 22px; }
    .logo-bag { padding: 1px 8px 3px; }
    .nav-actions { gap: 2px; }
  }

  /* ============================================================
     Sidebar / Mobile drawer
     ============================================================ */
  .sidebar-backdrop {
    position: fixed; inset: 0;
    background: rgba(26,17,16,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 200;
  }
  .sidebar-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(380px, 88vw);
    background: var(--cream);
    z-index: 201;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px rgba(26,17,16,0.18);
  }
  .sidebar.open { transform: translateX(0); }

  .sidebar-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(123,51,49,0.1);
  }
  .sidebar-close {
    width: 40px; height: 40px;
    border-radius: 12px;
    color: var(--maroon);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease;
  }
  .sidebar-close:hover { background: var(--cream-deep); transform: rotate(90deg); }

  .sidebar-body {
    flex: 1;
    padding: 28px 24px;
    overflow-y: auto;
  }

  .sidebar-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    margin-bottom: 14px;
    font-weight: 600;
  }

  .sidebar-links {
    list-style: none;
    margin: 0 0 24px 0;
  }
  .sidebar-links li { margin: 0; border-bottom: 1px solid rgba(123,51,49,0.08); }

  /* Top-level accordion trigger */
  .sidebar-link {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color .2s ease;
  }
  .sidebar-link:hover { color: var(--orange); }
  .sidebar-link .chev {
    color: var(--orange);
    transition: transform .25s ease;
    flex-shrink: 0;
  }
  .sidebar-link.has-sub .arrow { display: none; }
  .sidebar-link[aria-expanded="true"] .chev { transform: rotate(90deg); }

  /* Plain link (no accordion) */
  .sidebar-link.plain { text-decoration: none; }
  .sidebar-link.plain .arrow {
    color: var(--orange);
    transition: transform .2s ease;
  }
  .sidebar-link.plain:hover .arrow { transform: translateX(4px); }

  /* Sub-menu container */
  .sidebar-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .sidebar-link[aria-expanded="true"] + .sidebar-sub {
    max-height: 1500px;
  }
  .sidebar-sub-inner { padding: 0 0 18px; }

  /* Sub-section group (e.g., "Clothing", "Shoes") */
  .sidebar-sub-group {
    margin-bottom: 18px;
  }
  .sidebar-sub-group:last-child { margin-bottom: 6px; }
  .sidebar-sub-group h6 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--maroon);
    margin: 0 0 8px;
    padding-left: 14px;
    position: relative;
  }
  .sidebar-sub-group h6::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 8px; height: 1.5px;
    background: var(--orange);
    transform: translateY(-50%);
  }
  .sidebar-sub-group ul {
    list-style: none;
    padding: 0; margin: 0;
  }
  .sidebar-sub-group li { border: none; }
  .sidebar-sub-group a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: background .15s ease, color .15s ease, padding-left .15s ease;
  }
  .sidebar-sub-group a:hover {
    background: var(--cream-deep);
    color: var(--maroon);
    padding-left: 18px;
  }
  .sidebar-sub-group a .new {
    background: var(--orange); color: var(--cream);
    font-size: 9px; font-weight: 700;
    padding: 2px 6px; border-radius: 4px;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .sidebar-sub-group a .hot {
    background: var(--maroon); color: var(--cream);
    font-size: 9px; font-weight: 700;
    padding: 2px 6px; border-radius: 4px;
    letter-spacing: 0.06em; text-transform: uppercase;
  }

  .sidebar-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .sidebar-cats a {
    display: flex; align-items: center; gap: 10px;
    background: var(--paper);
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    transition: background .2s ease, transform .2s ease;
  }
  .sidebar-cats a:hover { background: var(--cream-deep); transform: translateY(-2px); }
  .sidebar-cats a span:first-child { font-size: 18px; }

  .sidebar-cta {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 28px;
  }
  .sidebar-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .sidebar-foot {
    padding: 24px;
    background: var(--cream-deep);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.7;
  }
  .sidebar-foot strong { color: var(--maroon); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-weight: 600; }
  .sidebar-foot a { color: var(--maroon); font-weight: 500; }

  .sidebar-socials {
    display: flex; gap: 8px;
    margin-top: 14px;
  }
  .sidebar-socials a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--cream);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--maroon);
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .sidebar-socials a:hover { background: var(--orange); color: var(--cream); transform: translateY(-2px); }

  /* Lock body scroll when sidebar open */
  body.sidebar-open { overflow: hidden; }

  /* ============================================================
     Hero
     ============================================================ */
  .hero {
    padding: 80px 0 60px;
    position: relative;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px;
    background: rgba(240,103,36,0.12);
    color: var(--orange-deep);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }
  .hero-tag .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(240,103,36,0.6);
    animation: pulse 1.8s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(240,103,36,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(240,103,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(240,103,36,0); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 7.5vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .hero h1 .accent { color: var(--maroon); }
  .hero h1 .editorial {
    font-family: var(--font-editorial);
    font-weight: 400;
    color: var(--orange);
    font-style: italic;
  }

  .hero p.lead {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 36px;
  }

  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    letter-spacing: 0.01em;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--cream);
    box-shadow: 0 8px 24px rgba(240,103,36,0.3);
  }
  .btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(240,103,36,0.4); }
  .btn-outline {
    background: transparent;
    color: var(--maroon);
    box-shadow: inset 0 0 0 2px var(--maroon);
  }
  .btn-outline:hover { background: var(--maroon); color: var(--cream); transform: translateY(-2px); }
  .btn .arrow {
    display: inline-block;
    transition: transform .2s ease;
  }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-trust {
    display: flex; align-items: center; gap: 20px;
    font-size: 13px; color: var(--ink-soft);
  }
  .avatars { display: flex; }
  .avatars div {
    width: 32px; height: 32px; border-radius: 50%;
    background-size: cover; background-position: center;
    border: 2px solid var(--cream);
    margin-left: -8px;
  }
  .avatars div:first-child { margin-left: 0; }

  /* Hero visual */
  .hero-visual { position: relative; }
  .hero-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #f7c89c 0%, #e89460 100%);
    box-shadow: var(--shadow-lift);
  }
  .hero-image-frame img {
    width: 100%; height: 100%; object-fit: cover;
    mix-blend-mode: multiply;
  }
  .hero-sticker {
    position: absolute;
    background: var(--paper);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-lift);
    transform: rotate(-6deg);
  }
  .hero-sticker.s1 { top: -16px; left: -24px; transform: rotate(-8deg); color: var(--maroon); }
  .hero-sticker.s2 {
    bottom: 40px; right: -32px; transform: rotate(6deg);
    background: var(--maroon); color: var(--cream);
  }
  .hero-sticker.s3 {
    bottom: -16px; left: 30px; transform: rotate(-4deg);
    background: var(--orange); color: var(--cream);
  }
  .hero-sticker .big {
    display: block;
    font-family: var(--font-editorial);
    font-size: 22px;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
  }

  /* ============================================================
     Stats strip
     ============================================================ */
  .stats {
    background: var(--maroon);
    color: var(--cream);
    padding: 28px 0;
    margin: 40px 0 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
  }
  .stat {
    text-align: center;
    border-right: 1px solid rgba(253,243,227,0.18);
  }
  .stat:last-child { border-right: none; }
  .stat .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    color: var(--orange);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .stat .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
    color: rgba(253,243,227,0.8);
  }

  /* ============================================================
     Featured drop with countdown
     ============================================================ */
  .drop {
    margin: 100px 0;
  }
  .drop-card {
    background: linear-gradient(135deg, #7b3331 0%, #5a2422 60%, #3d1715 100%);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .drop-card::after {
    content: "";
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(240,103,36,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .drop-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .drop-card h2 {
    font-family: var(--font-editorial);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    margin-bottom: 20px;
    color: var(--cream);
  }
  .drop-card p {
    color: rgba(253,243,227,0.78);
    margin-bottom: 32px;
    font-size: 16px;
    max-width: 460px;
  }
  .countdown {
    display: flex; gap: 12px;
    margin-bottom: 32px;
  }
  .countdown-unit {
    background: rgba(253,243,227,0.08);
    border: 1px solid rgba(253,243,227,0.12);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: center;
    min-width: 72px;
    backdrop-filter: blur(8px);
  }
  .countdown-unit .v {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    color: var(--cream);
    font-variant-numeric: tabular-nums;
  }
  .countdown-unit .l {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 6px;
    color: rgba(253,243,227,0.6);
  }
  .drop-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    transform: rotate(2deg);
  }
  .drop-visual img { width: 100%; height: 100%; object-fit: cover; }
  .drop-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--orange); color: var(--cream);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ============================================================
     Categories pill nav
     ============================================================ */
  .categories { padding: 60px 0; }
  .section-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 32px; gap: 24px;
  }
  .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
  }
  .section-title em {
    font-family: var(--font-editorial);
    font-weight: 400;
    color: var(--maroon);
    font-style: italic;
  }
  .section-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap .2s ease;
  }
  .section-link:hover { gap: 14px; }

  .cat-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .cat-card {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
    border: 1px solid transparent;
  }
  .cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(240,103,36,0.3);
  }
  .cat-card .ico {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    background: var(--cream-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    transition: background .25s ease;
  }
  .cat-card:hover .ico { background: var(--orange); }
  .cat-card .name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
  }
  .cat-card .count {
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 2px;
  }

  /* ============================================================
     Editor's Pick — product grid
     ============================================================ */
  .picks { padding: 60px 0; }
  .pick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .pick {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
  }
  .pick:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
  .pick-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cream-deep);
  }
  .pick-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
  }
  .pick:hover .pick-img img { transform: scale(1.06); }
  .pick-tag {
    position: absolute; top: 12px; left: 12px;
    z-index: 2; /* the hover-scaled img is promoted into the positioned paint layer and sits later in the DOM */
    background: var(--ink); color: var(--cream);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .pick-tag.bid { background: var(--orange); }
  .pick-tag.new { background: var(--blue); }
  .pick-fav {
    position: absolute; top: 12px; right: 12px;
    z-index: 2;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--maroon);
    transition: background .2s ease, color .2s ease;
  }
  .pick-fav:hover { background: var(--maroon); color: var(--cream); }
  .pick-end {
    position: absolute; bottom: 12px; left: 12px;
    z-index: 2;
    background: rgba(26,17,16,0.86);
    color: var(--cream);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px; font-weight: 500;
    backdrop-filter: blur(4px);
  }
  .pick-end .dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    margin-right: 6px;
    animation: pulse-dot 1.4s infinite;
  }
  @keyframes pulse-dot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .pick-body { padding: 18px; }
  .pick-curator {
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
  }
  .pick-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .pick-name a { color: inherit; }
  .pick-name a:hover { color: var(--maroon); text-decoration: underline; }
  .pick-img > a { display: block; width: 100%; height: 100%; cursor: pointer; }
  .pick-foot {
    display: flex; justify-content: space-between; align-items: center;
  }
  .pick-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--maroon);
    font-size: 16px;
  }
  .pick-price small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .pick-action {
    background: var(--orange);
    color: var(--cream);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px; font-weight: 600;
    transition: background .2s ease;
  }
  .pick-action:hover { background: var(--orange-deep); }
  .pick-action.bid { background: var(--ink); }
  .pick-action.bid:hover { background: var(--maroon); }

  /* ============================================================
     Curators
     ============================================================ */
  .curators {
    padding: 100px 0;
    background: var(--cream-deep);
    margin: 60px 0;
    position: relative;
  }
  .curators::before, .curators::after {
    content: ""; position: absolute; left: 0; right: 0; height: 60px;
  }
  .curators::before {
    top: -1px;
    background: linear-gradient(to bottom, var(--cream), transparent);
  }
  .curators::after {
    bottom: -1px;
    background: linear-gradient(to top, var(--cream), transparent);
  }
  .curator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .curator-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s ease;
  }
  .curator-card:hover { transform: translateY(-6px); }
  .curator-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
  }
  .curator-img img { width: 100%; height: 100%; object-fit: cover; }
  .curator-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--cream);
    color: var(--maroon);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
  }
  .curator-body { padding: 22px; }
  .curator-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .curator-role {
    font-family: var(--font-editorial);
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 14px;
  }
  .curator-meta {
    display: flex; gap: 18px;
    padding: 14px 0;
    border-top: 1px solid rgba(123,51,49,0.1);
    border-bottom: 1px solid rgba(123,51,49,0.1);
    margin-bottom: 16px;
  }
  .curator-meta div { font-size: 12px; color: var(--ink-soft); }
  .curator-meta strong {
    display: block;
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 16px;
    font-weight: 700;
  }
  .curator-cta {
    display: flex; align-items: center; gap: 8px;
    width: 100%; justify-content: center;
    background: var(--cream-deep);
    color: var(--maroon);
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    transition: background .2s ease, color .2s ease;
  }
  .curator-cta:hover { background: var(--maroon); color: var(--cream); }

  /* ============================================================
     How it works
     ============================================================ */
  .how { padding: 80px 0; }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
  .step {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
  }
  .step-num {
    font-family: var(--font-editorial);
    font-size: 90px;
    color: var(--cream-deep);
    line-height: 0.8;
    position: absolute;
    top: 20px; right: 24px;
    z-index: 0;
  }
  .step-content { position: relative; z-index: 1; }
  .step-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange);
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .step:nth-child(2) .step-icon { background: var(--maroon); }
  .step:nth-child(3) .step-icon { background: var(--blue); }
  .step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .step p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ============================================================
     Trust band
     ============================================================ */
  .trust-band {
    background: var(--ink);
    color: var(--cream);
    padding: 40px 0;
    margin: 40px 0 0;
  }
  .trust-row {
    display: flex; justify-content: space-around; align-items: center;
    flex-wrap: wrap; gap: 24px;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px;
    font-weight: 500;
  }
  .trust-item svg { color: var(--orange); flex-shrink: 0; }
  .trust-item strong { display: block; font-size: 15px; color: var(--cream); }
  .trust-item span { color: rgba(253,243,227,0.7); font-size: 12px; }

  /* ============================================================
     Newsletter
     ============================================================ */
  .newsletter { padding: 100px 0; }
  .news-card {
    background: var(--orange);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .news-card::before {
    content: ""; position: absolute;
    top: -50px; left: -50px;
    width: 250px; height: 250px;
    background: var(--maroon);
    border-radius: 50%;
    opacity: 0.4;
  }
  .news-card::after {
    content: ""; position: absolute;
    bottom: -80px; right: 10%;
    width: 200px; height: 200px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
  }
  .news-content { position: relative; z-index: 1; }
  .news-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 14px;
    opacity: 0.85;
  }
  .news-card h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .news-card h2 em {
    font-family: var(--font-editorial);
    font-weight: 400;
    font-style: italic;
  }
  .news-card .lead {
    margin-bottom: 24px;
    opacity: 0.92;
    max-width: 380px;
  }
  .news-form {
    position: relative; z-index: 1;
    display: flex;
    background: var(--cream);
    padding: 6px;
    border-radius: 999px;
    box-shadow: var(--shadow-lift);
  }
  .news-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 22px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    outline: none;
  }
  .news-form input::placeholder { color: var(--ink-soft); }
  .news-form button {
    background: var(--ink);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease;
  }
  .news-form button:hover { background: var(--maroon); }
  .news-perks {
    display: flex; gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 12px;
    opacity: 0.88;
    position: relative; z-index: 1;
  }
  .news-perks span { display: inline-flex; align-items: center; gap: 6px; }

  /* ============================================================
     Footer
     ============================================================ */
  .footer {
    background: var(--maroon-deep);
    color: var(--cream);
    padding: 80px 0 32px;
    margin-top: 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer .logo { color: var(--cream); margin-bottom: 18px; }
  .footer-about p {
    color: rgba(253,243,227,0.7);
    font-size: 14px;
    max-width: 320px;
    margin-bottom: 24px;
  }
  .socials { display: flex; gap: 10px; }
  .socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(253,243,227,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease, transform .2s ease;
  }
  .socials a:hover { background: var(--orange); transform: translateY(-2px); }

  .footer h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    color: var(--orange);
  }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 10px; }
  .footer ul a {
    color: rgba(253,243,227,0.78);
    font-size: 14px;
    transition: color .2s ease;
  }
  .footer ul a:hover { color: var(--cream); }
  .footer .contact-line {
    color: rgba(253,243,227,0.78);
    font-size: 14px;
    margin-bottom: 8px;
  }
  .footer .contact-line strong { color: var(--cream); display: block; font-weight: 500; }

  .footer-bottom {
    border-top: 1px solid rgba(253,243,227,0.12);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    font-size: 13px;
    color: rgba(253,243,227,0.6);
  }
  .pay-methods { display: flex; gap: 10px; align-items: center; }
  .pay-methods .pay {
    background: var(--cream);
    color: var(--ink);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .pay-methods .pay.mpesa { background: #4caf50; color: white; }
  .pay-methods .pay.visa  { background: #1a1f71; color: white; }
  .pay-methods .pay.mc    { background: white; color: #eb001b; }

  /* ============================================================
     Responsive
     ============================================================ */
  @media (max-width: 980px) {
    .hero-grid, .drop-card, .news-card { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat:nth-child(2) { border-right: none; }
    .cat-row { grid-template-columns: repeat(3, 1fr); }
    .pick-grid { grid-template-columns: repeat(2, 1fr); }
    .curator-grid, .how-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .drop-card { padding: 40px 28px; }
    .news-card { padding: 40px 28px; }
    .hero { padding: 50px 0 40px; }
    .hero-sticker.s2 { right: 10px; }
    .hero-sticker.s1 { left: 10px; }
  }
  @media (max-width: 600px) {
    .cat-row { grid-template-columns: repeat(2, 1fr); }
    .pick-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .countdown-unit { min-width: 60px; padding: 10px 12px; }
    .countdown-unit .v { font-size: 22px; }
    .pick-body { padding: 14px; }
    .pick-name { font-size: 14px; }
    .container { padding: 0 18px; }
  }

  /* Reveal-on-scroll */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============================================================
     Search — wrap, dropdown, modal
     ============================================================ */

  /* Hide mobile search trigger on desktop */
  .search-trigger-mobile { display: none; }

  /* Wrap the search form so dropdown is positioned relative to it */
  .search-wrap {
    flex: 1;
    position: relative;
    display: flex;
    max-width: 640px;
    margin: 0 auto;
  }
  .search-wrap .search {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  /* Dropdown panel */
  .search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: var(--paper);
    border: 1px solid rgba(123,51,49,0.1);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(26,17,16,0.14);
    z-index: 150;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    max-height: 82vh;
    overflow-y: auto;
  }
  .search-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Dropdown sections */
  .sd-section {
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(123,51,49,0.07);
  }
  .sd-section:last-child { border-bottom: none; }

  .sd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .sd-title {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--maroon);
  }
  .sd-clear-btn {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 6px;
    transition: background .15s ease, color .15s ease;
  }
  .sd-clear-btn:hover { background: var(--cream-deep); color: var(--orange); }

  /* Recent searches */
  .sd-recent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
  .sd-recent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s ease;
  }
  .sd-recent-item:hover { background: var(--cream-deep); }
  .sd-recent-icon { color: var(--ink-soft); opacity: 0.45; flex-shrink: 0; line-height: 0; }
  .sd-recent-text { flex: 1; font-size: 14px; color: var(--ink); }
  .sd-recent-remove {
    width: 24px; height: 24px;
    border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    opacity: 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity .15s ease, background .15s ease, color .15s ease;
    flex-shrink: 0;
  }
  .sd-recent-item:hover .sd-recent-remove { opacity: 1; }
  .sd-recent-remove:hover { background: rgba(240,103,36,0.1); color: var(--orange); }

  /* Trending pills */
  .sd-trending-list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
  .sd-trending-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 13px;
    background: var(--cream-deep);
    border: 1px solid rgba(123,51,49,0.1);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
  }
  .sd-trending-pill:hover { background: var(--orange); border-color: var(--orange); color: var(--cream); }
  .sd-trending-pill .trend-rank {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    min-width: 14px;
    transition: color .15s ease;
  }
  .sd-trending-pill:hover .trend-rank { color: rgba(253,243,227,0.75); }

  /* Top categories grid */
  .sd-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .sd-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 6px;
    border-radius: 12px;
    background: var(--cream-deep);
    cursor: pointer;
    transition: background .15s ease, transform .15s ease, border-color .15s ease;
    text-align: center;
    border: 1.5px solid transparent;
  }
  .sd-cat-card:hover {
    background: rgba(240,103,36,0.08);
    border-color: rgba(240,103,36,0.22);
    transform: translateY(-2px);
  }
  .sd-cat-icon { font-size: 20px; line-height: 1; }
  .sd-cat-name {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
  }

  /* Empty state */
  .sd-empty {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 6px;
    color: var(--ink-soft);
    font-size: 13px;
    opacity: 0.65;
    line-height: 0;
  }
  .sd-empty span { line-height: 1.4; }

  /* ── Search Modal (mobile full-screen) ─────────────────────── */
  .search-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(26,17,16,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 300;
  }
  .search-modal-backdrop.open { opacity: 1; pointer-events: auto; }

  .search-modal {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 301;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
  }
  .search-modal.open { transform: translateY(0); }

  .search-modal-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(123,51,49,0.1);
    flex-shrink: 0;
  }
  .search-modal-form { flex: 1; }
  .search-modal-input-wrap {
    display: flex;
    align-items: stretch;
    background: var(--paper);
    border: 1.5px solid rgba(123,51,49,0.12);
    border-radius: 999px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
  }
  .search-modal-input-wrap:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240,103,36,0.1);
  }
  .search-modal-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    outline: none;
    min-width: 0;
  }
  .search-modal-input::placeholder { color: var(--ink-soft); opacity: 0.65; }
  .search-modal-submit {
    background: var(--orange);
    color: var(--cream);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
  }
  .search-modal-submit:hover { background: var(--orange-deep); }
  .search-modal-cancel {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--maroon);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .15s ease;
  }
  .search-modal-cancel:hover { color: var(--orange); }

  .search-modal-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 24px;
    -webkit-overflow-scrolling: touch;
  }

  body.search-modal-open { overflow: hidden; }

  /* ============================================================
     Category page — breadcrumb, header, sub-strip, filters,
     product grid, mobile drawer
     ============================================================ */

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── Breadcrumb ───────────────────────────────────────────── */
  .breadcrumb-wrap { padding: 20px 0 0; }
  .breadcrumb { display: flex; align-items: center; gap: 5px; list-style: none; font-size: 13px; color: var(--ink-soft); flex-wrap: wrap; }
  .breadcrumb li { display: flex; align-items: center; gap: 5px; }
  .breadcrumb a { color: var(--ink-soft); transition: color .15s ease; }
  .breadcrumb a:hover { color: var(--orange); }
  .breadcrumb .sep { color: var(--maroon); opacity: 0.3; font-size: 15px; }
  .bc-current { color: var(--ink); font-weight: 600; }

  /* ── Category header ──────────────────────────────────────── */
  .cat-header { padding: 28px 0 0; }
  .cat-header-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
  }
  .cat-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; color: var(--orange); margin-bottom: 14px;
  }
  .cat-eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(240,103,36,0.6); animation: pulse 1.8s infinite; }
  .cat-header h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(44px, 6.5vw, 80px); letter-spacing: -0.03em;
    line-height: 0.9; color: var(--ink); margin-bottom: 20px;
  }
  .cat-header h1 .editorial {
    font-family: var(--font-editorial); font-weight: 400;
    color: var(--maroon); font-style: italic; display: block; margin-bottom: 4px;
  }
  .cat-header-desc { font-size: 15px; color: var(--ink-soft); max-width: 480px; margin-bottom: 24px; line-height: 1.65; }
  .cat-header-stats { display: flex; align-items: center; flex-wrap: wrap; }
  .cat-stat {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--ink-soft);
    padding-right: 18px; margin-right: 18px;
    border-right: 1px solid rgba(123,51,49,0.15);
  }
  .cat-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
  .cat-stat strong { color: var(--ink); font-weight: 700; font-size: 15px; }
  .cat-stat .stat-ico { font-size: 15px; line-height: 1; }

  /* Collage */
  .cat-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
  .cat-coll-img { border-radius: var(--radius); overflow: hidden; }
  .cat-coll-img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .cat-coll-img:not(:first-child) { aspect-ratio: 4/3; }
  .cat-coll-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .cat-coll-img:hover img { transform: scale(1.05); }

  /* ── Subcategory strip ────────────────────────────────────── */
  .sub-strip { padding: 32px 0 0; }
  .sub-strip-inner { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; }
  .sub-strip-inner::-webkit-scrollbar { display: none; }
  .sub-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 18px; border-radius: 999px;
    background: var(--paper); border: 1.5px solid rgba(123,51,49,0.12);
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: var(--ink-soft); white-space: nowrap; cursor: pointer;
    transition: all .2s ease; flex-shrink: 0; line-height: 1;
  }
  .sub-pill:hover { border-color: var(--orange); color: var(--orange); background: rgba(240,103,36,0.04); }
  .sub-pill.active { background: var(--orange); border-color: var(--orange); color: var(--cream); }
  .sub-pill .pill-count { background: rgba(0,0,0,0.1); border-radius: 999px; padding: 1px 7px; font-size: 11px; }
  .sub-pill.active .pill-count { background: rgba(255,255,255,0.2); }

  /* ── Divider ──────────────────────────────────────────────── */
  .cat-divider { height: 1px; background: rgba(123,51,49,0.08); margin: 28px 0 0; }

  /* ── Main layout ──────────────────────────────────────────── */
  .cat-layout { display: grid; grid-template-columns: 264px 1fr; gap: 40px; padding: 32px 0 80px; align-items: start; }

  /* ── Filter sidebar ───────────────────────────────────────── */
  .filter-sidebar { position: sticky; top: 140px; overflow-y: auto; max-height: calc(100vh - 160px); scrollbar-width: none; }
  .filter-sidebar::-webkit-scrollbar { display: none; }
  .filter-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
  .filter-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
  .filter-clear-all { font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; transition: color .15s ease; display: none; background: none; border: none; font-family: inherit; }
  .filter-clear-all.visible { display: inline; }
  .filter-clear-all:hover { color: var(--orange-deep); }

  /* Filter sections */
  .filter-section { border-bottom: 1px solid rgba(123,51,49,0.08); }
  .filter-section:first-of-type { border-top: 1px solid rgba(123,51,49,0.08); }
  .filter-section-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; background: none; border: none; padding: 13px 0; }
  .filter-section-btn .f-chev { color: var(--maroon); transition: transform .22s ease; opacity: 0.55; flex-shrink: 0; }
  .filter-section.open .f-chev { transform: rotate(180deg); }
  .filter-section-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .filter-section.open .filter-section-body { max-height: 640px; }
  .filter-section-inner { padding-bottom: 16px; }

  /* Condition pills */
  .condition-pills { display: flex; flex-direction: column; gap: 7px; }
  .condition-pill { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; border: 1.5px solid rgba(123,51,49,0.1); cursor: pointer; transition: all .15s ease; }
  .condition-pill:hover { border-color: var(--orange); background: rgba(240,103,36,0.04); }
  .condition-pill.checked { border-color: var(--orange); background: rgba(240,103,36,0.08); }
  .condition-pill input[type="checkbox"] { accent-color: var(--orange); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
  .condition-pill input[type="radio"] { accent-color: var(--orange); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
  .condition-pill-name { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; }
  .condition-pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .cond-new .condition-pill-dot { background: #22c55e; }
  .cond-likenew .condition-pill-dot { background: var(--blue); }
  .cond-good .condition-pill-dot { background: var(--gold); }
  .cond-fair .condition-pill-dot { background: var(--maroon); }
  .condition-pill-count { font-size: 10px; color: var(--ink-soft); background: var(--cream-deep); padding: 2px 7px; border-radius: 999px; flex-shrink: 0; }

  /* Price range */
  .price-range-labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
  .price-range-wrap { position: relative; height: 6px; background: var(--cream-deep); border-radius: 999px; margin: 0 0 16px; }
  .price-range-fill { position: absolute; height: 100%; background: var(--orange); border-radius: 999px; }
  .price-range-wrap input[type="range"] { position: absolute; width: 100%; height: 6px; appearance: none; background: transparent; pointer-events: none; top: 0; left: 0; margin: 0; }
  .price-range-wrap input[type="range"]::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); border: 2.5px solid var(--orange); box-shadow: 0 2px 8px rgba(240,103,36,0.3); pointer-events: all; cursor: pointer; }
  .price-range-wrap input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--paper); border: 2.5px solid var(--orange); box-shadow: 0 2px 8px rgba(240,103,36,0.3); pointer-events: all; cursor: pointer; border: 2.5px solid var(--orange); }

  /* Size grid */
  .size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .size-pill { display: flex; align-items: center; justify-content: center; height: 36px; border: 1.5px solid rgba(123,51,49,0.12); border-radius: 9px; font-size: 12px; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: all .15s ease; user-select: none; }
  .size-pill:hover { border-color: var(--orange); color: var(--orange); }
  .size-pill.checked { border-color: var(--orange); background: var(--orange); color: var(--cream); }
  .size-pill.oos { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

  /* Brand */
  .brand-search { position: relative; margin-bottom: 10px; }
  .brand-search input { width: 100%; padding: 8px 12px 8px 34px; border: 1.5px solid rgba(123,51,49,0.12); border-radius: 9px; font-size: 13px; color: var(--ink); background: var(--paper); font-family: var(--font-body); outline: none; transition: border-color .15s ease; }
  .brand-search input:focus { border-color: var(--orange); }
  .brand-search-ico { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); opacity: 0.45; pointer-events: none; }
  .brand-list { display: flex; flex-direction: column; gap: 2px; max-height: 200px; overflow-y: auto; scrollbar-width: thin; }
  .brand-item { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 8px; cursor: pointer; transition: background .15s ease; }
  .brand-item:hover { background: var(--cream-deep); }
  .brand-item input[type="checkbox"] { accent-color: var(--orange); flex-shrink: 0; cursor: pointer; }
  .brand-item-name { flex: 1; font-size: 13px; color: var(--ink-soft); }
  .brand-item.checked .brand-item-name { color: var(--ink); font-weight: 600; }
  .brand-item-count { font-size: 11px; color: var(--ink-soft); }

  /* Color swatches */
  .color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
  .color-swatch { width: 26px; height: 26px; border-radius: 50%; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; border: 2px solid transparent; flex-shrink: 0; }
  .color-swatch:hover { transform: scale(1.15); }
  .color-swatch.checked { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,103,36,0.22); transform: scale(1.1); }

  /* ── Grid toolbar ─────────────────────────────────────────── */
  .grid-toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
  .grid-count { font-family: var(--font-display); font-size: 14px; color: var(--ink-soft); flex: 1; min-width: 0; }
  .grid-count strong { color: var(--ink); font-weight: 700; }

  /* Sort */
  .sort-wrap { position: relative; }
  .sort-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; background: var(--paper); border: 1.5px solid rgba(123,51,49,0.12); border-radius: 10px; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; white-space: nowrap; transition: border-color .15s ease; }
  .sort-btn:hover { border-color: var(--orange); }
  .sort-btn .s-chev { color: var(--maroon); opacity: 0.6; transition: transform .2s ease; }
  .sort-wrap.open .s-chev { transform: rotate(180deg); }
  .sort-panel { position: absolute; top: calc(100% + 8px); right: 0; min-width: 210px; background: var(--paper); border: 1px solid rgba(123,51,49,0.1); border-radius: var(--radius); box-shadow: 0 16px 48px rgba(26,17,16,0.12); z-index: 50; overflow: hidden; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .sort-wrap.open .sort-panel { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .sort-option { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 13px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: background .15s ease, color .15s ease; }
  .sort-option:hover { background: var(--cream-deep); color: var(--ink); }
  .sort-option.active { color: var(--orange); font-weight: 700; }
  .sort-check { margin-left: auto; color: var(--orange); display: none; }
  .sort-option.active .sort-check { display: block; }

  /* View toggle */
  .view-toggle { display: flex; border: 1.5px solid rgba(123,51,49,0.12); border-radius: 10px; overflow: hidden; }
  .view-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); cursor: pointer; transition: background .15s ease, color .15s ease; background: var(--paper); border: none; }
  .view-btn:hover { background: var(--cream-deep); color: var(--ink); }
  .view-btn.active { background: var(--orange); color: var(--cream); }

  /* Mobile filter button */
  .mobile-filter-btn { display: none; align-items: center; gap: 8px; padding: 8px 16px; background: var(--paper); border: 1.5px solid rgba(123,51,49,0.12); border-radius: 10px; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; }
  .mob-filter-badge { background: var(--orange); color: var(--cream); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center; }
  .mob-filter-badge.visible { display: flex; }

  /* Active chips */
  .active-bar { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
  .active-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px 5px 12px; background: rgba(240,103,36,0.1); border: 1px solid rgba(240,103,36,0.25); border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--orange-deep); }
  .active-chip-x { width: 15px; height: 15px; border-radius: 50%; background: rgba(240,103,36,0.2); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; line-height: 0; transition: background .15s ease; color: var(--orange-deep); }
  .active-chip-x:hover { background: var(--orange); color: var(--cream); }

  /* ── Product grid ─────────────────────────────────────────── */
  .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .product-grid.view-list { grid-template-columns: 1fr; gap: 12px; }

  .prod-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; position: relative; }
  .prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
  .product-grid.view-list .prod-card { display: flex; transform: none !important; border: 1px solid rgba(123,51,49,0.07); }
  .product-grid.view-list .prod-card:hover { box-shadow: var(--shadow-soft); border-color: rgba(240,103,36,0.2); }

  .prod-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream-deep); }
  .product-grid.view-list .prod-card-img { aspect-ratio: 1/1; width: 150px; flex-shrink: 0; }
  .prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .prod-card:hover .prod-card-img img { transform: scale(1.07); }

  .prod-badge { position: absolute; top: 10px; left: 10px; padding: 4px 8px; border-radius: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; z-index: 1; }
  .prod-badge.tag-new { background: var(--blue); color: var(--cream); }
  .prod-badge.tag-hot { background: var(--orange); color: var(--cream); }
  .prod-badge.tag-bid { background: var(--ink); color: var(--cream); }
  .prod-badge.tag-sale { background: var(--maroon); color: var(--cream); }

  .prod-fav { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--maroon); cursor: pointer; z-index: 1; transition: background .2s ease, color .2s ease; border: none; }
  .prod-fav:hover { background: var(--maroon); color: var(--cream); }
  .prod-fav.loved { background: var(--maroon); color: var(--cream); }

  .prod-cond-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 5px 10px; background: linear-gradient(to top, rgba(26,17,16,0.55), transparent); display: flex; align-items: center; gap: 5px; }
  .prod-cond-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .prod-cond-label { font-size: 10px; color: rgba(253,243,227,0.9); font-weight: 500; }

  .prod-body { padding: 13px 15px 15px; }
  .product-grid.view-list .prod-body { display: flex; flex-direction: column; justify-content: center; flex: 1; }
  .prod-meta { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 4px; }
  .prod-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
  .prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .prod-price { font-family: var(--font-display); font-weight: 700; color: var(--maroon); font-size: 15px; }
  .prod-price small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 500; }
  .prod-add { background: var(--orange); color: var(--cream); padding: 7px 12px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .2s ease; border: none; font-family: var(--font-display); position: relative; z-index: 1; }
  .prod-add:hover { background: var(--orange-deep); }
  .prod-add.bid-action { background: var(--ink); }
  .prod-add.bid-action:hover { background: var(--maroon); }

  /* Stretched link: prod-name link covers the entire card for PDP navigation */
  .prod-name-link { color: inherit; text-decoration: none; display: block; }
  .prod-name-link::after { content: ''; position: absolute; inset: 0; z-index: 0; border-radius: var(--radius); }
  /* Interactive elements sit above the overlay */
  .prod-foot { position: relative; z-index: 1; }
  /* .prod-fav and .prod-badge already carry z-index:1 from their existing rules ✓ */

  /* Load more */
  .load-more-wrap { display: flex; justify-content: center; margin-top: 40px; }
  .load-more-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; background: var(--paper); border: 2px solid rgba(123,51,49,0.15); border-radius: 999px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--ink); cursor: pointer; transition: all .2s ease; }
  .load-more-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

  /* ── Explore subcategories section ────────────────────────── */
  .explore-section { padding: 0 0 80px; }
  .explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .explore-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/4; cursor: pointer; background: var(--cream-deep); text-decoration: none; display: block; }
  .explore-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .explore-card:hover img { transform: scale(1.07); }
  .explore-card-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(26,17,16,0.84) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; transition: background .3s ease; }
  .explore-card:hover .explore-card-ov { background: linear-gradient(180deg, transparent 18%, rgba(26,17,16,0.88) 100%); }
  .explore-card-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--cream); margin-bottom: 3px; }
  .explore-card-count { font-size: 11px; color: rgba(253,243,227,0.7); }
  .explore-card-arr { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 14px; opacity: 0; transition: opacity .2s ease, background .2s ease; }
  .explore-card:hover .explore-card-arr { opacity: 1; background: var(--orange); }

  /* ── Mobile filter drawer ─────────────────────────────────── */
  .filter-drawer-backdrop { position: fixed; inset: 0; background: rgba(26,17,16,0.55); backdrop-filter: blur(4px); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .filter-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .filter-drawer { position: fixed; bottom: 0; left: 0; right: 0; max-height: 90vh; background: var(--cream); border-radius: 24px 24px 0 0; z-index: 301; transform: translateY(100%); transition: transform .35s cubic-bezier(0.32, 0.72, 0, 1); display: flex; flex-direction: column; }
  .filter-drawer.open { transform: translateY(0); }
  .filter-drawer-handle { width: 36px; height: 4px; border-radius: 2px; background: rgba(123,51,49,0.2); margin: 12px auto 0; flex-shrink: 0; }
  .filter-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid rgba(123,51,49,0.08); flex-shrink: 0; }
  .filter-drawer-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
  .filter-drawer-close { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--maroon); cursor: pointer; transition: background .2s ease; border: none; background: none; }
  .filter-drawer-close:hover { background: var(--cream-deep); }
  .filter-drawer-body { flex: 1; overflow-y: auto; padding: 0 20px; -webkit-overflow-scrolling: touch; }
  .filter-drawer-foot { padding: 14px 20px 24px; border-top: 1px solid rgba(123,51,49,0.08); display: flex; gap: 10px; flex-shrink: 0; }
  .filter-drawer-foot .btn { flex: 1; justify-content: center; padding: 13px 16px; font-size: 13px; }

  /* ── Responsive ───────────────────────────────────────────── */
  @media (max-width: 1100px) {
    .cat-layout { grid-template-columns: 240px 1fr; gap: 28px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-header-inner { grid-template-columns: 1fr 280px; gap: 32px; }
  }
  @media (max-width: 860px) {
    .cat-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; }
    .mobile-filter-btn { display: flex !important; }
    .cat-header-inner { grid-template-columns: 1fr; }
    .cat-collage { display: none; }
    .explore-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .product-grid.view-list { grid-template-columns: 1fr !important; }
    .product-grid.view-list .prod-card-img { width: 110px; }
    /* Narrow 2-col cards can't fit price + "Add to bag" on one line — stack
       them so the button is a clear, full-width tap target below the price. */
    .product-grid:not(.view-list) .prod-foot { flex-direction: column; align-items: stretch; gap: 8px; }
    .product-grid:not(.view-list) .prod-add { width: 100%; padding: 9px 12px; }
  }

  /* ============================================================
     Product Detail Page (PDP)
     ============================================================ */

  .pdp-breadcrumb { padding: 20px 0 0; }

  .pdp-wrap { padding: 28px 16px 64px; }
  .pdp-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: start;
  }

  /* Gallery */
  .pdp-gallery { position: sticky; top: 90px; }
  .gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream-deep);
    aspect-ratio: 3/4;
    cursor: zoom-in;
  }
  .gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
  .gallery-main:hover img { transform: scale(1.04); }
  .gallery-badge-tray { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; }
  .g-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 999px;
    font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .04em;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  }
  .g-badge-condition { background: rgba(34,197,94,.9); color: #fff; }
  .g-badge-discount  { background: rgba(240,103,36,.92); color: #fff; }
  .gallery-zoom-hint {
    position: absolute; bottom: 14px; right: 14px;
    background: rgba(26,17,16,.55); backdrop-filter: blur(6px);
    color: var(--cream); font-size: 11px; font-weight: 500;
    padding: 5px 10px; border-radius: 8px;
    display: flex; align-items: center; gap: 5px;
    opacity: 0; transition: opacity .2s; pointer-events: none;
  }
  .gallery-main:hover .gallery-zoom-hint { opacity: 1; }
  .gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 12px; }
  .gallery-thumb {
    border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1;
    cursor: pointer; border: 2px solid transparent;
    transition: border-color .15s, transform .15s; background: var(--cream-deep);
  }
  .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .gallery-thumb:hover { transform: translateY(-2px); border-color: rgba(240,103,36,.4); }
  .gallery-thumb.active { border-color: var(--orange); }

  /* Auction bid panel (PDP) */
  .pdp-bid-panel { display: flex; flex-direction: column; }
  .pdp-bid-winning {
    font-family: var(--font-display);
    font-size: 12.5px; font-weight: 700;
    color: #15803d;
    background: rgba(22,163,74,.08);
    border: 1px solid rgba(22,163,74,.22);
    border-radius: 10px;
    padding: 8px 13px;
    margin-bottom: 10px;
  }
  .pdp-bid-form { display: flex; gap: 10px; }
  .pdp-bid-input-wrap {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
  }
  .pdp-bid-currency {
    position: absolute; left: 14px;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    color: var(--ink-soft);
    pointer-events: none;
  }
  .pdp-bid-input {
    width: 100%;
    padding: 14px 14px 14px 52px;
    border: 1.5px solid rgba(123,51,49,.2);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 16px; font-weight: 700;
    color: var(--ink);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
  }
  .pdp-bid-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,103,36,.12); }
  .pdp-bid-form .pdp-btn-add { flex: 0 0 auto; width: auto; padding-left: 22px; padding-right: 22px; }
  .pdp-bid-hint { font-size: 12px; color: var(--ink-soft); margin-top: 8px; }
  .pdp-bid-feedback { font-size: 12.5px; font-weight: 600; margin-top: 6px; min-height: 16px; }
  .pdp-bid-feedback.ok { color: #15803d; }
  .pdp-bid-feedback.err { color: #dc2626; }
  @media (max-width: 560px) {
    .pdp-bid-form { flex-direction: column; }
  }

  /* Zoom / inspection modal */
  .zoom-modal {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(26,17,16,.95);
    opacity: 0; pointer-events: none; transition: opacity .22s;
  }
  .zoom-modal.open { opacity: 1; pointer-events: auto; }
  .zoom-viewport {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    touch-action: none;          /* we handle pinch + pan ourselves */
    cursor: zoom-in;
  }
  .zoom-viewport.is-zoomed { cursor: grab; }
  .zoom-viewport.is-panning { cursor: grabbing; }
  .zoom-viewport img {
    max-width: 92vw; max-height: 88vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
    will-change: transform;
  }
  .zoom-close {
    position: absolute; top: 20px; right: 20px; z-index: 2;
    width: 44px; height: 44px; background: rgba(253,243,227,.1);
    border: none; border-radius: 12px; color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
  }
  .zoom-close:hover { background: rgba(253,243,227,.2); }
  .zoom-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 46px; height: 46px;
    background: rgba(253,243,227,.1);
    border: none; border-radius: 50%; color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
  }
  .zoom-nav:hover { background: rgba(253,243,227,.22); }
  .zoom-prev { left: 18px; }
  .zoom-next { right: 18px; }
  .zoom-toolbar {
    position: absolute; bottom: 54px; left: 50%; transform: translateX(-50%); z-index: 2;
    display: flex; align-items: center; gap: 4px;
    background: rgba(26,17,16,.78);
    border: 1px solid rgba(253,243,227,.18);
    border-radius: 999px;
    padding: 6px 8px;
    backdrop-filter: blur(6px);
  }
  .zoom-toolbar button {
    min-width: 36px; height: 36px;
    background: transparent; border: none; border-radius: 999px;
    color: var(--cream);
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .15s;
    padding: 0 10px;
  }
  .zoom-toolbar button:hover { background: rgba(253,243,227,.14); }
  .zoom-toolbar #zoomResetBtn { font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
  .zoom-toolbar #zoomLevel {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    color: var(--cream); min-width: 52px; text-align: center;
  }
  .zoom-help {
    position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
    font-size: 12px; color: rgba(253,243,227,.55);
    white-space: nowrap; pointer-events: none;
  }
  @media (max-width: 560px) {
    .zoom-help { display: none; }
    .zoom-toolbar { bottom: 22px; }
    .zoom-nav { width: 40px; height: 40px; }
    .zoom-prev { left: 8px; }
    .zoom-next { right: 8px; }
  }

  /* Info column */
  .pdp-info { display: flex; flex-direction: column; gap: 22px; }
  .pdp-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .pdp-brand {
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--maroon); background: rgba(123,51,49,.08);
    padding: 4px 10px; border-radius: 6px;
  }
  .pdp-condition {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 6px;
  }
  .pdp-condition-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
  .pdp-condition.likenew { background: rgba(34,197,94,.1); color: #16a34a; }
  .pdp-condition.good    { background: rgba(15,158,218,.1); color: var(--blue); }
  .pdp-condition.fair    { background: rgba(218,161,91,.1); color: #b47a2e; }

  .pdp-title { font-family: var(--font-editorial); font-size: clamp(24px,3.5vw,34px); line-height: 1.1; color: var(--ink); }

  .pdp-social { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--ink-soft); }
  .pdp-social-item { display: inline-flex; align-items: center; gap: 4px; }
  .pdp-social-item svg { color: var(--orange); }
  .pdp-social-divider { width: 1px; height: 12px; background: rgba(123,51,49,.15); }

  /* Price */
  .pdp-price-block { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .pdp-price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1; }
  .pdp-price-orig { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; opacity: .6; }
  .pdp-discount-badge { background: var(--orange); color: var(--cream); font-family: var(--font-display); font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 6px; letter-spacing: .06em; }

  /* Urgency */
  .pdp-urgency {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 12px 16px;
    background: rgba(240,103,36,.06); border: 1px solid rgba(240,103,36,.15);
    border-radius: var(--radius-sm);
  }
  .pdp-urgency-stock { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--orange); }
  .urgency-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 1.8s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.75); } }
  .pdp-urgency-viewers { font-size: 12px; color: var(--ink-soft); margin-left: auto; }

  /* Size / Attr */
  .pdp-attr-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 8px; }
  .pdp-size-display { display: inline-flex; align-items: center; gap: 10px; }
  .pdp-size-pill { font-family: var(--font-display); font-size: 15px; font-weight: 700; padding: 10px 22px; border: 2px solid var(--orange); border-radius: var(--radius-sm); color: var(--orange); background: rgba(240,103,36,.06); }
  .pdp-size-guide { font-size: 12px; color: var(--blue); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
  .pdp-color-swatch { display: inline-flex; align-items: center; gap: 8px; }
  .pdp-color-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(26,17,16,.1); }

  /* CTA buttons */
  .pdp-cta-group { display: flex; flex-direction: column; gap: 10px; }
  .pdp-btn-add {
    width: 100%; padding: 18px 24px;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    border-radius: 999px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform .2s, box-shadow .2s, background .2s; letter-spacing: .02em;
  }
  .pdp-btn-add-primary { background: var(--orange); color: var(--cream); box-shadow: 0 8px 24px rgba(240,103,36,.35); }
  .pdp-btn-add-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(240,103,36,.45); }
  .pdp-btn-add-mpesa { background: var(--maroon); color: var(--cream); box-shadow: 0 6px 20px rgba(123,51,49,.2); }
  .pdp-btn-add-mpesa:hover { background: var(--maroon-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(123,51,49,.3); }
  .mpesa-logo { font-family: var(--font-display); font-size: 10px; font-weight: 900; background: #4caf50; color: white; padding: 2px 6px; border-radius: 4px; letter-spacing: .06em; }

  .pdp-actions-row { display: flex; gap: 10px; }
  .pdp-action-btn {
    flex: 1; padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid rgba(123,51,49,.15); background: transparent;
    font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink-soft);
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px;
    transition: all .18s;
  }
  .pdp-action-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(240,103,36,.04); }
  .pdp-action-btn.loved { color: var(--orange); border-color: var(--orange); background: rgba(240,103,36,.06); }

  /* Call to order / help */
  .pdp-help-card {
    background: linear-gradient(135deg,#dcfce7 0%,#f0fdf4 100%);
    border: 1.5px solid rgba(34,197,94,.25); border-radius: var(--radius);
    padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  }
  .pdp-help-icon { width: 46px; height: 46px; border-radius: 14px; background: #22c55e; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .pdp-help-text { flex: 1; }
  .pdp-help-text strong { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #14532d; display: block; margin-bottom: 2px; }
  .pdp-help-text span { font-size: 12px; color: #166534; }
  .pdp-help-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px; background: #22c55e; color: white;
    border-radius: 999px; font-family: var(--font-display); font-size: 12px; font-weight: 700;
    white-space: nowrap; text-decoration: none; flex-shrink: 0;
    transition: background .18s, transform .18s;
  }
  .pdp-help-cta:hover { background: #16a34a; transform: translateY(-1px); }
  .pdp-call-row { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--ink-soft); padding-top: 10px; }
  .pdp-call-row a { font-family: var(--font-display); font-weight: 700; color: var(--maroon); }
  .pdp-call-row a:hover { color: var(--orange); text-decoration: underline; }

  /* Delivery */
  .pdp-delivery { background: var(--paper); border: 1px solid rgba(123,51,49,.08); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
  .pdp-delivery-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; }
  .pdp-delivery-icon { width: 34px; height: 34px; background: rgba(240,103,36,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
  .pdp-delivery-row strong { font-weight: 600; color: var(--ink); display: block; margin-bottom: 1px; }
  .pdp-delivery-row span { color: var(--ink-soft); font-size: 12px; }

  /* Trust badges */
  .pdp-trust { display: flex; gap: 8px; flex-wrap: wrap; }
  .pdp-trust-badge { flex: 1; min-width: 100px; background: var(--cream-deep); border-radius: var(--radius-sm); padding: 12px 10px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
  .pdp-trust-badge svg { color: var(--maroon); }
  .pdp-trust-badge span { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--ink-soft); line-height: 1.2; }

  /* Below fold */
  .pdp-below { padding: 0 0 64px; }
  .pdp-below-inner { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }

  /* Accordion */
  .pdp-accordion { border: 1px solid rgba(123,51,49,.1); border-radius: var(--radius); overflow: hidden; }
  .pdp-acc-item { border-bottom: 1px solid rgba(123,51,49,.08); }
  .pdp-acc-item:last-child { border-bottom: none; }
  .pdp-acc-btn {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink);
    text-align: left; transition: background .15s, color .15s;
  }
  .pdp-acc-btn:hover { background: var(--cream-deep); color: var(--orange); }
  .pdp-acc-btn.open { color: var(--orange); background: rgba(240,103,36,.03); }
  .pdp-acc-chev { transition: transform .25s; color: var(--maroon); opacity: .6; flex-shrink: 0; }
  .pdp-acc-btn.open .pdp-acc-chev { transform: rotate(180deg); color: var(--orange); opacity: 1; }
  .pdp-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
  .pdp-acc-body.open { max-height: 900px; }
  .pdp-acc-inner { padding: 0 22px 22px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
  .pdp-acc-inner p { margin-bottom: 10px; }
  .pdp-acc-inner p:last-child { margin-bottom: 0; }
  .pdp-acc-inner ul { padding-left: 18px; margin-bottom: 10px; }
  .pdp-acc-inner li { margin-bottom: 6px; }
  .meas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 10px 0; }
  .meas-row { display: flex; justify-content: space-between; padding: 8px 12px; background: var(--cream-deep); border-radius: 8px; font-size: 13px; }
  .meas-row strong { color: var(--ink); }

  /* Condition bars */
  .cond-rating { display: flex; gap: 4px; margin-bottom: 12px; }
  .cond-star { color: var(--gold); font-size: 16px; }
  .cond-detail-list { display: flex; flex-direction: column; gap: 10px; }
  .cond-detail-row { display: flex; align-items: center; font-size: 13px; }
  .cond-detail-row .cond-label { width: 70px; flex-shrink: 0; color: var(--ink-soft); }
  .cond-bar-wrap { flex: 1; margin: 0 14px; height: 5px; background: rgba(123,51,49,.1); border-radius: 3px; overflow: hidden; }
  .cond-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg,var(--orange),var(--gold)); }
  .cond-detail-row .cond-val { font-weight: 600; color: var(--ink); width: 60px; text-align: right; flex-shrink: 0; }

  /* Curator card */
  .pdp-curator { background: var(--paper); border: 1px solid rgba(123,51,49,.08); border-radius: var(--radius); padding: 24px; position: sticky; top: 90px; }
  .curator-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .curator-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg,var(--maroon) 0%,var(--orange) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-editorial); font-size: 22px; color: var(--cream);
    flex-shrink: 0; border: 3px solid var(--cream-deep);
    box-shadow: 0 4px 12px rgba(123,51,49,.2);
  }
  .curator-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); }
  .curator-handle { font-size: 12px; color: var(--ink-soft); }
  .curator-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
  .curator-rating svg { color: var(--gold); }
  .curator-stats { display: flex; gap: 0; padding: 14px 0; border-top: 1px solid rgba(123,51,49,.07); border-bottom: 1px solid rgba(123,51,49,.07); margin-bottom: 16px; }
  .curator-stat { text-align: center; flex: 1; }
  .curator-stat-val { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); }
  .curator-stat-label { font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
  .curator-bio { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
  .curator-btns { display: flex; flex-direction: column; gap: 8px; }
  .curator-btn { width: 100%; padding: 11px; border-radius: 999px; font-family: var(--font-display); font-size: 13px; font-weight: 600; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; gap: 7px; transition: all .18s; text-decoration: none; }
  .curator-btn-primary { background: var(--orange); color: var(--cream); }
  .curator-btn-primary:hover { background: var(--orange-deep); }
  .curator-btn-outline { background: transparent; color: var(--maroon); box-shadow: inset 0 0 0 1.5px rgba(123,51,49,.3); }
  .curator-btn-outline:hover { background: rgba(123,51,49,.06); }

  /* Similar items */
  /* ── PDP product reviews ── */
  .pdp-reviews { padding: 24px 0 8px; border-top: 1px solid rgba(123,51,49,.08); }
  .pdp-reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
  .pdp-reviews-title { font-family: var(--font-editorial); font-size: 28px; color: var(--ink); }
  .pdp-reviews-title span { font-size: .6em; color: var(--ink-soft); font-family: var(--font-display); }
  .pdp-review-btn { padding: 9px 18px; font-size: 13px; }
  .pdp-reviews-done { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink-soft); }
  .pdp-reviews-empty { color: var(--ink-soft); font-size: 14px; padding: 8px 0 24px; }
  .pdp-reviews-layout { display: grid; grid-template-columns: 230px 1fr; gap: 36px; align-items: start; padding-bottom: 16px; }
  .pdp-reviews-summary { position: sticky; top: 20px; }
  .pdp-reviews-score { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--ink); line-height: 1; }
  .pdp-reviews-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin: 4px 0 2px; }
  .pdp-reviews-count { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
  .pdp-reviews-bars { display: grid; gap: 6px; }
  .pdp-reviews-bar-row { display: grid; grid-template-columns: 26px 1fr 24px; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft); }
  .pdp-reviews-bar { height: 7px; background: rgba(123,51,49,.1); border-radius: 999px; overflow: hidden; }
  .pdp-reviews-bar-fill { height: 100%; background: var(--gold); border-radius: 999px; }
  .pdp-reviews-bar-n { text-align: right; }
  .pdp-reviews-list { display: flex; flex-direction: column; }
  .pdp-review { padding: 18px 0; border-bottom: 1px solid rgba(123,51,49,.08); }
  .pdp-review:first-child { padding-top: 0; }
  .pdp-review:last-child { border-bottom: none; }
  .pdp-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; }
  .pdp-review-avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .pdp-review-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .pdp-review-name { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink); }
  .pdp-review-verified { font-size: 11px; color: #16a34a; font-weight: 600; }
  .pdp-review-stars { font-size: 13px; color: var(--gold); letter-spacing: 1px; }
  .pdp-review-date { font-size: 12px; color: var(--ink-soft); }
  .pdp-review-headline { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
  .pdp-review-body { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
  @media (max-width: 720px) {
    .pdp-reviews-layout { grid-template-columns: 1fr; gap: 22px; }
    .pdp-reviews-summary { position: static; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
    .pdp-reviews-bars { flex: 1; min-width: 200px; }
  }

  .pdp-similar { padding: 40px 0 80px; }
  .pdp-similar-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
  .pdp-similar-title { font-family: var(--font-editorial); font-size: 28px; color: var(--ink); }
  .pdp-similar-link { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 4px; }
  .pdp-similar-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

  /* Sticky mobile CTA */
  .pdp-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--cream); border-top: 1px solid rgba(123,51,49,.1);
    padding: 12px 16px 20px; z-index: 200; gap: 10px;
  }
  .pdp-sticky-price { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--ink); white-space: nowrap; }
  .pdp-sticky-price small { font-size: 12px; color: var(--ink-soft); text-decoration: line-through; margin-left: 4px; }

  /* Size guide modal */
  .size-modal-backdrop { position: fixed; inset: 0; z-index: 400; background: rgba(26,17,16,.7); opacity: 0; pointer-events: none; transition: opacity .22s; }
  .size-modal-backdrop.open { opacity: 1; pointer-events: auto; }
  .size-modal {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%,-48%) scale(.97);
    z-index: 401; background: var(--cream); border-radius: var(--radius-lg);
    width: min(520px,92vw); max-height: 80vh; overflow-y: auto; padding: 28px;
    opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s;
  }
  .size-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
  .size-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
  .size-modal-head h3 { font-family: var(--font-editorial); font-size: 22px; color: var(--ink); }
  .size-modal-close { width: 36px; height: 36px; border-radius: 10px; border: none; background: var(--cream-deep); color: var(--maroon); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
  .size-modal-close:hover { background: rgba(123,51,49,.12); }
  .size-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .size-table th { background: var(--maroon); color: var(--cream); padding: 10px 14px; text-align: left; font-family: var(--font-display); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .size-table td { padding: 9px 14px; border-bottom: 1px solid rgba(123,51,49,.07); color: var(--ink-soft); }
  .size-table tr.highlight td { background: rgba(240,103,36,.07); color: var(--ink); font-weight: 600; }
  .size-table tr:last-child td { border-bottom: none; }

  /* PDP responsive */
  @media (max-width: 1100px) {
    .pdp-layout { grid-template-columns: 1fr 380px; gap: 40px; }
    .pdp-below-inner { grid-template-columns: 1fr 300px; gap: 36px; }
    .pdp-similar-grid { grid-template-columns: repeat(3,1fr); }
  }
  @media (max-width: 860px) {
    .pdp-layout { grid-template-columns: 1fr; gap: 28px; }
    .pdp-gallery { position: static; }
    .pdp-below-inner { grid-template-columns: 1fr; }
    .pdp-curator { position: static; }
    .pdp-similar-grid { grid-template-columns: repeat(2,1fr); }
    .pdp-sticky-cta { display: flex; align-items: center; }
    .pdp-below { padding-bottom: 100px; }
    .pdp-similar { padding-bottom: 100px; }
  }
  @media (max-width: 560px) {
    .pdp-title { font-size: 24px; }
    .pdp-price { font-size: 28px; }
    .pdp-help-card { flex-wrap: wrap; }
    .pdp-help-cta { width: 100%; justify-content: center; }
    .pdp-similar-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  }

  /* ============================================================
     Cart Page
     ============================================================ */

  .cart-page { padding: 28px 0 80px; }

  /* Breadcrumb (reuse from PDP) */
  .cart-breadcrumb { padding: 20px 0 0; margin-bottom: 0; }

  /* ── Layout ─────────────────────────────────────────────── */
  .cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    margin-top: 28px;
  }

  /* ── Section headings ───────────────────────────────────── */
  .cart-section-title {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--ink-soft);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(123,51,49,.1);
    margin-bottom: 0;
    display: flex; align-items: center; justify-content: space-between;
  }
  .cart-count-badge {
    background: var(--orange); color: var(--cream);
    font-size: 11px; font-weight: 700;
    padding: 2px 8px; border-radius: 999px;
  }

  /* ── Delivery progress bar ──────────────────────────────── */
  .delivery-bar-wrap {
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
  }
  .delivery-bar-text {
    font-size: 13px; color: #166534; font-weight: 500;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
  }
  .delivery-bar-text strong { font-weight: 700; }
  .delivery-bar-track {
    height: 6px; background: rgba(34,197,94,.2);
    border-radius: 3px; overflow: hidden;
  }
  .delivery-bar-fill {
    height: 100%; border-radius: 3px;
    background: linear-gradient(90deg,#22c55e,#16a34a);
    transition: width .5s ease;
  }

  /* ── Cart item card ─────────────────────────────────────── */
  .cart-items-list { display: flex; flex-direction: column; gap: 0; }
  .cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(123,51,49,.07);
    align-items: start;
    transition: opacity .3s ease, transform .3s ease, max-height .4s ease;
    overflow: hidden;
  }
  .cart-item.removing {
    opacity: 0; transform: translateX(20px); max-height: 0; padding: 0;
  }
  .cart-item-img {
    width: 100px; height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden; flex-shrink: 0;
    background: var(--cream-deep);
  }
  .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
  .cart-item-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
  .cart-item-brand {
    font-family: var(--font-display); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; color: var(--maroon);
  }
  .cart-item-name {
    font-family: var(--font-display); font-size: 15px; font-weight: 600;
    color: var(--ink); line-height: 1.25;
    text-decoration: none;
  }
  .cart-item-name:hover { color: var(--orange); }
  .cart-item-attrs {
    display: flex; flex-wrap: wrap; gap: 6px;
    font-size: 12px; color: var(--ink-soft);
  }
  .cart-item-attr {
    background: var(--cream-deep); border-radius: 5px;
    padding: 2px 8px; font-weight: 500;
  }
  .cart-item-cond {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 600;
    padding: 2px 8px; border-radius: 5px;
  }
  .cart-item-cond-dot { width: 6px; height: 6px; border-radius: 50%; }
  .cond-likenew .cart-item-cond-dot { background: #22c55e; }
  .cart-item-cond.likenew { background: rgba(34,197,94,.1); color: #16a34a; }
  .cond-good .cart-item-cond-dot { background: var(--blue); }
  .cart-item-cond.good { background: rgba(15,158,218,.1); color: var(--blue); }
  .cart-item-cond.new { background: rgba(34,197,94,.12); color: #15803d; }
  .cart-item-cond-dot.new { background: #15803d; }
  .cart-item-viewers {
    font-size: 11px; color: var(--ink-soft);
    display: flex; align-items: center; gap: 4px;
  }
  .cart-item-viewers span { color: var(--orange); font-weight: 600; }
  .cart-item-price-row {
    display: flex; align-items: baseline; gap: 8px; margin-top: 4px;
  }
  .cart-item-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); }
  .cart-item-orig { font-size: 13px; color: var(--ink-soft); text-decoration: line-through; opacity: .6; }
  .cart-item-saving { font-size: 11px; font-weight: 700; color: var(--orange); background: rgba(240,103,36,.08); padding: 2px 7px; border-radius: 5px; }
  .cart-item-actions {
    display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
    flex-shrink: 0;
  }
  .cart-remove-btn {
    width: 32px; height: 32px; border-radius: 9px;
    border: 1.5px solid rgba(123,51,49,.12);
    background: none; color: var(--ink-soft);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .18s;
  }
  .cart-remove-btn:hover { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.06); }
  .cart-save-btn {
    font-family: var(--font-display); font-size: 11px; font-weight: 600;
    color: var(--blue); background: none; border: none;
    cursor: pointer; white-space: nowrap;
    text-decoration: underline; text-underline-offset: 2px;
    transition: color .15s;
  }
  .cart-save-btn:hover { color: var(--maroon); }

  /* ── Saved-for-later strip ──────────────────────────────── */
  .cart-saved { margin-top: 28px; }
  .cart-saved-title {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft);
    padding-bottom: 12px; border-bottom: 1px solid rgba(123,51,49,.1);
    margin-bottom: 14px;
  }
  .cart-saved-list { display: flex; flex-direction: column; gap: 0; }
  .cart-saved-item {
    display: grid; grid-template-columns: 68px 1fr auto;
    gap: 14px; padding: 14px 0;
    border-bottom: 1px solid rgba(123,51,49,.06);
    align-items: center;
  }
  .cart-saved-item img { width: 68px; height: 80px; object-fit: cover; border-radius: 10px; background: var(--cream-deep); }
  .cart-saved-item-name { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
  .cart-saved-item-price { font-size: 13px; font-weight: 700; color: var(--ink); margin-top: 4px; }
  .cart-move-btn {
    font-family: var(--font-display); font-size: 12px; font-weight: 600;
    padding: 7px 14px; border-radius: 999px;
    border: 1.5px solid rgba(240,103,36,.5); color: var(--orange);
    background: none; cursor: pointer; white-space: nowrap;
    transition: all .18s;
  }
  .cart-move-btn:hover { background: var(--orange); color: var(--cream); }

  /* ── Order summary ──────────────────────────────────────── */
  .cart-summary { position: sticky; top: 90px; }
  .summary-box {
    background: var(--paper);
    border: 1px solid rgba(123,51,49,.08);
    border-radius: var(--radius);
    padding: 24px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .summary-title {
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    color: var(--ink); padding-bottom: 16px;
    border-bottom: 1px solid rgba(123,51,49,.08);
    margin-bottom: 0;
  }
  .summary-line {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 14px; color: var(--ink-soft);
  }
  .summary-line strong { color: var(--ink); font-weight: 600; }
  .summary-line.total {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    color: var(--ink); padding-top: 14px;
    border-top: 1.5px solid rgba(123,51,49,.1);
    margin-top: 0;
  }
  .summary-line.total .price-big { font-size: 22px; color: var(--orange); }
  .summary-line.saving { color: #16a34a; font-size: 13px; font-weight: 600; }
  .summary-line.saving svg { color: #22c55e; }
  .delivery-select {
    display: flex; flex-direction: column; gap: 8px;
    background: var(--cream-deep); border-radius: var(--radius-sm);
    padding: 14px;
  }
  .delivery-option {
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer; font-size: 13px;
  }
  .delivery-option input[type="radio"] { margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; }
  .delivery-option-info strong { font-weight: 600; color: var(--ink); display: block; }
  .delivery-option-info span { color: var(--ink-soft); font-size: 12px; }
  .delivery-option-price { margin-left: auto; font-weight: 700; color: var(--ink); white-space: nowrap; }

  /* Promo */
  .promo-form { display: flex; gap: 8px; }
  .promo-input {
    flex: 1; padding: 11px 14px;
    border: 1.5px solid rgba(123,51,49,.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 14px;
    background: var(--paper); color: var(--ink);
    outline: none; transition: border-color .2s;
  }
  .promo-input::placeholder { color: var(--ink-soft); opacity: .6; }
  .promo-input:focus { border-color: var(--orange); }
  .promo-apply {
    padding: 11px 18px; border-radius: var(--radius-sm);
    background: var(--ink); color: var(--cream);
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    border: none; cursor: pointer; white-space: nowrap;
    transition: background .18s;
  }
  .promo-apply:hover { background: var(--maroon); }
  .promo-success { display: none; font-size: 13px; color: #16a34a; font-weight: 600; gap: 5px; align-items: center; }
  .promo-success.visible { display: flex; }

  /* CTA buttons */
  .checkout-btn {
    width: 100%; padding: 17px;
    background: var(--orange); color: var(--cream);
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    border: none; border-radius: 999px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(240,103,36,.35);
    transition: transform .2s, box-shadow .2s, background .2s;
    letter-spacing: .02em;
  }
  .checkout-btn:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(240,103,36,.45); }
  .mpesa-checkout-btn {
    width: 100%; padding: 14px;
    background: var(--maroon); color: var(--cream);
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    border: none; border-radius: 999px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 6px 18px rgba(123,51,49,.2);
    transition: transform .2s, background .2s;
  }
  .mpesa-checkout-btn:hover { background: var(--maroon-deep); transform: translateY(-1px); }
  .mpesa-logo { font-family: var(--font-display); font-size: 10px; font-weight: 900; background: #4caf50; color: white; padding: 2px 6px; border-radius: 4px; letter-spacing: .06em; }

  /* Security note */
  .summary-secure {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 12px; color: var(--ink-soft);
  }

  /* Summary help */
  .summary-help {
    background: linear-gradient(135deg,#dcfce7,#f0fdf4);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .summary-help:hover { border-color: rgba(34,197,94,.4); }
  .summary-help-icon { width: 36px; height: 36px; border-radius: 10px; background: #22c55e; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .summary-help strong { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #14532d; display: block; }
  .summary-help span { font-size: 11px; color: #166534; }

  /* Trust badges */
  .summary-trust {
    display: flex; gap: 6px;
  }
  .summary-trust-item {
    flex: 1; background: var(--cream-deep); border-radius: 8px;
    padding: 9px 6px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
  }
  .summary-trust-item svg { color: var(--maroon); }
  .summary-trust-item span { font-family: var(--font-display); font-size: 9px; font-weight: 600; color: var(--ink-soft); line-height: 1.2; }

  /* ── Empty cart state ───────────────────────────────────── */
  .cart-empty {
    display: none;
    flex-direction: column; align-items: center;
    text-align: center; padding: 64px 24px 48px;
    gap: 20px;
  }
  .cart-empty.visible { display: flex; }
  .cart-empty-icon {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--cream-deep);
    display: flex; align-items: center; justify-content: center;
    color: rgba(123,51,49,.3);
    position: relative;
  }
  .cart-empty-icon::after {
    content: '';
    position: absolute; inset: -8px;
    border: 2px dashed rgba(123,51,49,.12);
    border-radius: 50%;
  }
  .cart-empty h2 {
    font-family: var(--font-editorial);
    font-size: 30px; color: var(--ink);
    line-height: 1.15;
  }
  .cart-empty p {
    font-size: 15px; color: var(--ink-soft);
    max-width: 360px; line-height: 1.6;
  }
  .cart-empty-actions {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    margin-top: 4px;
  }

  /* Category quick-links for empty state */
  .cart-empty-cats {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 10px; width: 100%; max-width: 560px;
  }
  .cart-empty-cat {
    background: var(--paper);
    border: 1px solid rgba(123,51,49,.08);
    border-radius: var(--radius-sm); padding: 14px 10px;
    text-align: center; text-decoration: none;
    transition: border-color .18s, transform .18s, box-shadow .18s;
  }
  .cart-empty-cat:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
  .cart-empty-cat-icon { font-size: 24px; display: block; margin-bottom: 5px; }
  .cart-empty-cat-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--ink); }

  /* Trending picks on empty state */
  .cart-trending { margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(123,51,49,.08); }
  .cart-trending-title {
    font-family: var(--font-editorial); font-size: 26px; color: var(--ink);
    margin-bottom: 24px;
  }
  .cart-trending-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  }

  /* ── Responsive ─────────────────────────────────────────── */
  @media (max-width: 980px) {
    .cart-layout { grid-template-columns: 1fr; gap: 28px; }
    .cart-summary { position: static; }
    .summary-box { order: -1; }
    .cart-empty-cats { grid-template-columns: repeat(4,1fr); }
    .cart-trending-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 640px) {
    .cart-item { grid-template-columns: 80px 1fr auto; gap: 12px; }
    .cart-item-img { width: 80px; height: 95px; }
    .cart-item-price { font-size: 16px; }
    .cart-empty-cats { grid-template-columns: repeat(2,1fr); }
    .cart-trending-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  }

  
/* ── Checkout page ─────────────────────────────────────────── */
.co-wrap {
  padding: 36px 0 80px;
  min-height: 60vh;
}
.co-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.co-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.co-back:hover { color: var(--orange); }
.co-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.co-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}
/* ── Step cards ─────────────────────────────────────────────── */
.co-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(123,51,49,0.07);
  overflow: hidden;
  margin-bottom: 16px;
}
.co-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(123,51,49,0.07);
}
.co-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.co-step-num.done {
  background: #16a34a;
}
.co-step-num.icon {
  background: var(--cream-deep);
  color: var(--ink);
  font-size: 16px;
}
.co-card-head h2 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.co-item-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
}
.co-change-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  transition: color .2s;
  text-decoration: none;
}
.co-change-btn:hover { color: var(--orange-deep); }
.co-card-body { padding: 20px 24px; }
/* ── Hidden / toggle ────────────────────────────────────────── */
.hidden { display: none !important; }
/* ── Address display ────────────────────────────────────────── */
.co-address-display strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.co-address-display p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
/* ── Form fields ────────────────────────────────────────────── */
.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.co-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.co-field label, .co-field > span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.co-field input, .co-field select {
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid rgba(123,51,49,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.co-field input:focus, .co-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,103,36,0.12);
}
.co-field-full { grid-column: 1 / -1; }
.co-field-hint {
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .75;
}
.co-form-actions {
  display: flex; gap: 12px;
}
.co-btn-primary {
  height: 44px;
  padding: 0 24px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.co-btn-primary:hover { background: var(--orange-deep); }
.co-btn-primary:active { transform: scale(.98); }
.co-btn-ghost {
  height: 44px;
  padding: 0 20px;
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid rgba(123,51,49,0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.co-btn-ghost:hover { border-color: var(--maroon); color: var(--maroon); }
/* ── Delivery summary ───────────────────────────────────────── */
.co-delivery-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.co-method-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.co-delivery-date {
  font-size: 13px;
  color: var(--ink-soft);
}
.co-delivery-fee {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-left: auto;
}
/* ── Option cards (delivery / payment) ─────────────────────── */
.co-delivery-options, .co-payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.co-option-card {
  display: block;
  border: 1.5px solid rgba(123,51,49,0.13);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: var(--cream);
}
.co-option-card:hover {
  border-color: var(--orange);
  background: rgba(240,103,36,0.03);
}
.co-option-card.selected {
  border-color: var(--orange);
  background: rgba(240,103,36,0.05);
  box-shadow: 0 0 0 3px rgba(240,103,36,0.1);
}
.co-option-card input[type="radio"] { display: none; }
.co-option-content {
  display: flex;
  align-items: center;
  gap: 14px;
}
.co-option-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.co-option-content > div:nth-child(2) {
  flex: 1;
}
.co-option-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.co-option-content p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.co-option-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.co-option-badge {
  font-size: 11px;
  font-weight: 600;
  background: var(--orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.co-pickup-selector {
  margin-top: 12px;
  padding: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(123,51,49,0.10);
}
.co-pickup-selector .co-field > span {
  margin-bottom: 4px;
  display: block;
}
/* ── M-Pesa phone input ─────────────────────────────────────── */
.co-mpesa-input {
  margin-top: 10px;
  padding: 14px;
  background: #f0fdf4;
  border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
}
.co-phone-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid rgba(123,51,49,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper);
}
.co-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--cream-deep);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border-right: 1.5px solid rgba(123,51,49,0.13);
  white-space: nowrap;
}
.co-phone-input input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
/* ── Pay logos ──────────────────────────────────────────────── */
.co-pay-logo {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}
.mpesa-logo {
  background: #16a34a;
  color: #fff;
}
.cod-logo {
  background: var(--cream-deep);
  font-size: 18px;
  padding: 4px 8px;
}
.pesapal-logo,
.paystack-logo {
  background: #011b33;
  color: #fff;
  font-size: 18px;
  padding: 4px 8px;
}
/* ── Cart items snippet ─────────────────────────────────────── */
.co-cart-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.co-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(123,51,49,0.07);
}
.co-cart-item:last-child { border-bottom: none; }
.co-cart-item img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(123,51,49,0.08);
}
.co-item-info {
  flex: 1;
  min-width: 0;
}
.co-item-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-item-meta, .co-item-condition {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.co-item-condition {
  display: inline-block;
  margin-top: 3px;
  background: var(--cream-deep);
  padding: 1px 7px;
  border-radius: 999px;
  font-weight: 500;
}
.co-item-right {
  text-align: right;
  flex-shrink: 0;
}
.co-item-price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.co-item-qty {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 2px;
}
/* ── Right summary sidebar ──────────────────────────────────── */
.co-summary { position: sticky; top: 100px; }
.co-voucher-card, .co-summary-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(123,51,49,0.07);
  padding: 22px;
  margin-bottom: 16px;
}
.co-voucher-card h3, .co-summary-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.co-voucher-input {
  display: flex;
  gap: 8px;
}
.co-voucher-input input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid rgba(123,51,49,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.co-voucher-input input::placeholder { text-transform: none; letter-spacing: 0; }
.co-voucher-input input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(240,103,36,0.12);
}
.co-apply-btn {
  height: 44px;
  padding: 0 18px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.co-apply-btn:hover { background: var(--maroon-deep); }
.co-voucher-feedback {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.co-voucher-feedback.valid {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.co-voucher-feedback.invalid {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
/* ── Summary lines ──────────────────────────────────────────── */
.co-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(123,51,49,0.08);
  margin-bottom: 14px;
}
.co-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.co-discount .co-discount-value {
  color: #16a34a;
  font-weight: 700;
}
.co-discount-label-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.co-voucher-tag {
  font-size: 10px;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.co-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
  margin-bottom: 18px;
}
.co-confirm-btn {
  width: 100%;
  height: 52px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(240,103,36,0.3);
  letter-spacing: 0.01em;
}
.co-confirm-btn:hover {
  background: var(--orange-deep);
  box-shadow: 0 6px 24px rgba(240,103,36,0.4);
}
.co-confirm-btn:active { transform: scale(.98); }
.co-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
  opacity: .75;
}
/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .co-layout {
    grid-template-columns: 1fr;
  }
  .co-summary { position: static; }
}
@media (max-width: 600px) {
  .co-form-grid { grid-template-columns: 1fr; }
  .co-card-body { padding: 16px; }
  .co-card-head { padding: 16px; }
}

/* ============================================================
   Promo Carousel  (.promo-carousel / .ac-*)
   Reusable promotional banner — see assets/js/carousel.js
   ============================================================ */

.promo-carousel {
  position: relative;
  overflow: hidden; /* clip the off-screen slides — stops page-wide horizontal scroll */
  background: var(--cream);
  border-bottom: 1px solid rgba(26,17,16,.07);
}

/* ── Track ──────────────────────────────────────────────────── */
.ac-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ── Slide: two-column grid, image fills right cell cleanly ── */
.ac-slide {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 420px;
  max-height: 500px;
  background: var(--cream);
}

/* ── Right-column photography — no masks, no filters ────────── */
.ac-visual {
  overflow: hidden;
}

.ac-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Left column ────────────────────────────────────────────── */
.ac-slide-inner {
  display: flex;
  align-items: center;
  padding: 48px 40px 48px 80px;
}

.ac-text {
  width: 100%;
  max-width: 460px;
  padding: 0;
}

/* ── Eyebrow — small branded label, no background ───────────── */
.ac-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--orange);
  margin-bottom: 14px;
}

.ac-slide[data-theme="drop"]    .ac-eyebrow { color: var(--maroon); }
.ac-slide[data-theme="vendor"]  .ac-eyebrow { color: var(--blue); }
.ac-slide[data-theme="product"] .ac-eyebrow { color: var(--orange); }
.ac-slide[data-theme="promo"]   .ac-eyebrow { color: #b07a38; }

/* ── Heading ────────────────────────────────────────────────── */
.ac-heading {
  font-family: var(--font-editorial);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 14px;
}

/* ── Supporting copy ────────────────────────────────────────── */
.ac-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 360px;
  font-family: var(--font-body);
}

/* ── CTA ────────────────────────────────────────────────────── */
.ac-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  letter-spacing: .01em;
  background: var(--ink);
  color: var(--cream);
  border: none;
  transition: background .2s, transform .18s;
}
.ac-cta:hover { background: var(--orange); transform: translateY(-1px); }
.ac-cta .ac-arr { display: inline-block; transition: transform .2s; }
.ac-cta:hover .ac-arr { transform: translateX(3px); }

.ac-slide[data-theme="drop"]    .ac-cta { background: var(--maroon); color: var(--cream); }
.ac-slide[data-theme="vendor"]  .ac-cta { background: var(--blue);   color: #fff; }
.ac-slide[data-theme="product"] .ac-cta { background: var(--orange); color: #fff; }

.ac-slide[data-theme="drop"]    .ac-cta:hover { background: var(--maroon-deep); }
.ac-slide[data-theme="vendor"]  .ac-cta:hover { background: #0080bb; }
.ac-slide[data-theme="product"] .ac-cta:hover { background: var(--orange-deep); }

/* ── Live indicator ─────────────────────────────────────────── */
.ac-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--ink-soft);
}
.ac-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: acLivePulse 2s ease-in-out infinite;
}
@keyframes acLivePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%       { box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* ── Prev / Next arrows — minimal bordered circles ───────────── */
.ac-prev,
.ac-next {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 22px));
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1.5px solid rgba(26,17,16,.2);
  color: var(--ink);
  transition: background .18s, border-color .18s, color .18s;
}
.ac-prev:hover, .ac-next:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.ac-prev { left: 18px; }
.ac-next { right: 18px; }

/* ── Dot indicators ─────────────────────────────────────────── */
.ac-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  background: var(--cream);
  border-top: 1px solid rgba(26,17,16,.06);
}

.ac-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(26,17,16,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .25s, width .25s, border-radius .25s;
}
.ac-dot.is-active {
  width: 20px;
  border-radius: 3px;
  background: var(--ink);
}

/* ── Progress bar ───────────────────────────────────────────── */
.ac-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--ink);
  opacity: .15;
  width: 0;
  pointer-events: none;
  z-index: 11;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ac-slide-inner { padding: 48px 40px 48px 60px; }
}
@media (max-width: 860px) {
  .ac-slide { grid-template-columns: 50fr 50fr; min-height: 340px; }
  .ac-slide-inner { padding: 40px 32px 40px 48px; }
  .ac-text { max-width: 100%; }
  .ac-heading { font-size: clamp(28px, 4.5vw, 44px); }
  .ac-sub { font-size: 14px; margin-bottom: 20px; max-width: 280px; }
  .ac-cta { padding: 11px 22px; font-size: 13px; }
}
@media (max-width: 640px) {
  /* Single full-bleed slide: image fills the card, text overlays it with a
     scrim so it stays legible (instead of hiding the image on phones). */
  .ac-slide { grid-template-columns: 1fr; min-height: 300px; position: relative; }
  .ac-visual { display: block; position: absolute; inset: 0; z-index: 0; }
  .ac-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,12,10,.30) 0%, rgba(20,12,10,.78) 100%);
  }
  .ac-slide-inner {
    position: relative; z-index: 1;
    align-items: flex-end;
    padding: 28px 22px 32px;
  }
  .ac-text { max-width: 100%; }
  .ac-eyebrow,
  .ac-slide[data-theme="drop"] .ac-eyebrow,
  .ac-slide[data-theme="vendor"] .ac-eyebrow,
  .ac-slide[data-theme="promo"] .ac-eyebrow { color: var(--orange); }
  .ac-heading { color: #fff; font-size: clamp(26px, 7vw, 36px); }
  .ac-sub { display: block; color: rgba(255,255,255,.92); max-width: 100%; margin-bottom: 18px; }
  .ac-cta { padding: 10px 18px; font-size: 12.5px; }
  .ac-live { display: none; }
  .ac-prev { left: 8px; }
  .ac-next { right: 8px; }
  .ac-prev, .ac-next { width: 32px; height: 32px; }
}
@media (max-width: 400px) {
  .ac-slide { min-height: 260px; }
  .ac-slide-inner { padding: 24px 18px 26px; }
}


/* ── Shop toast (add-to-cart / wishlist feedback) ─────────── */
.shop-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 16px);
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  padding: 12px 22px; border-radius: 999px;
  box-shadow: 0 12px 32px rgba(26,17,16,.28);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999; max-width: min(90vw, 420px); text-align: center;
}
.shop-toast.show { opacity: 1; transform: translate(-50%, 0); }
.shop-toast.error { background: var(--maroon); }
