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

    :root {
      --pink:      #c43f82;
      --rose:      #ff7ab8;
      --violet:    #8b5cf6;
      --gold:      #f6c76f;
      --mint:      #79e4c7;
      --pink-dim:  rgba(160,50,100,0.18);
      --pink-glow: 0 0 18px rgba(160,50,100,0.42);
      --pink-sm:   0 0 8px rgba(160,50,100,0.28);
      --glass:     linear-gradient(145deg, rgba(255,255,255,0.115), rgba(255,255,255,0.035));
      --glass-flat: rgba(255,255,255,0.065);
      --glass-strong: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.045));
      --border:    rgba(255,255,255,0.14);
      --border-hot: rgba(255,122,184,0.42);
      --bg:        #07070d;
      --text:      #e8e8f0;
      --muted:     rgba(232,232,240,0.56);
      --shadow-lg: 0 24px 70px rgba(0,0,0,0.52);
      --shadow-pink: 0 18px 48px rgba(196,63,130,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background:
        radial-gradient(circle at 18% -8%, rgba(255,122,184,0.16), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(139,92,246,0.12), transparent 30%),
        linear-gradient(180deg, #0b0911 0%, #07070d 42%, #090812 100%);
      color: var(--text);
      min-height: 100vh;
      display: flex; flex-direction: column;
      overflow-x: hidden;
    }
    img    { display: block; }
    button { font-family: inherit; cursor: pointer; }
    a      { text-decoration: none; color: inherit; }

    .amb {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        radial-gradient(ellipse 55% 38% at 8% 0%, rgba(196,63,130,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 45% 28% at 92% 100%, rgba(139,92,246,0.10) 0%, transparent 65%);
      background-size: 44px 44px, 44px 44px, auto, auto;
      mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.75) 42%, transparent 100%);
    }

    /* ════════════════════════════
       NAV
    ════════════════════════════ */
    nav {
      position: sticky; top: 0; z-index: 200;
      min-height: 68px;
      display: flex; align-items: center; gap: 10px;
      padding: 10px clamp(12px, 2.5vw, 36px);
      background: linear-gradient(180deg, rgba(12,10,20,0.82), rgba(12,10,20,0.58));
      backdrop-filter: blur(28px) saturate(150%); -webkit-backdrop-filter: blur(28px) saturate(150%);
      border-bottom: 1px solid rgba(255,255,255,0.13);
      box-shadow: 0 12px 38px rgba(0,0,0,0.26);
      flex-shrink: 0;
    }
    nav::after {
      content: ''; position: absolute; left: clamp(14px,3vw,42px); right: clamp(14px,3vw,42px); bottom: -1px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,122,184,0.48), rgba(246,199,111,0.26), transparent);
      pointer-events: none;
    }

    .logo {
      font-family: 'Syne', sans-serif;
      font-size: 18px; font-weight: 800;
      color: #fff; white-space: nowrap; flex-shrink: 0;
      margin-right: 10px; letter-spacing: 0;
      padding: 8px 12px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 12px 26px rgba(0,0,0,0.18);
    }
    .logo .p { color: var(--pink); }
    .logo .d { color: rgba(255,255,255,0.3); font-size: 11px; font-weight: 700; }

    .nav-links {
      display: flex; align-items: center; gap: 5px;
      flex: 1; overflow-x: auto; scrollbar-width: none; min-width: 0;
      padding: 4px; border-radius: 16px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links::-webkit-scrollbar { display: none; }

    .nl {
      padding: 8px 12px; border-radius: 12px;
      font-size: 12.5px; font-weight: 500; color: var(--muted);
      background: none; border: none; white-space: nowrap; flex-shrink: 0;
      transition: color .18s, background .18s, transform .18s, box-shadow .18s;
    }
    .nl:hover  { color: var(--text); background: rgba(255,255,255,0.08); transform: translateY(-1px); }
    .nl.active { color: #fff; background: linear-gradient(135deg, rgba(196,63,130,0.34), rgba(139,92,246,0.20)); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 8px 22px rgba(196,63,130,0.13); }

    /* Repgirls widget — compact, especially on mobile */
    .rgw { position: relative; flex-shrink: 0; margin-left: 6px; }

    .rgb {
      display: flex; align-items: center; gap: 4px;
      padding: 8px 10px; border-radius: 14px;
      font-size: 11px; font-weight: 600; color: var(--muted);
      background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
      border: 1px solid rgba(255,255,255,0.12);
      opacity: 0.7;
      transition: color .18s, border-color .18s, opacity .18s, transform .18s, box-shadow .18s;
    }
    .rgb:hover, .rgb.open {
      color: var(--rose); border-color: rgba(255,122,184,0.35); opacity: 1;
      transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,0.24);
    }
    /* On desktop: full size */
    @media (min-width: 600px) {
      .rgb { padding: 5px 11px; font-size: 12px; opacity: 0.8; gap: 5px; }
    }
    @media (min-width: 900px) {
      .rgb { padding: 6px 13px; font-size: 12.5px; opacity: 1; gap: 6px; }
    }

    .rg-label { display: none; }
    @media (min-width: 480px) { .rg-label { display: inline; } }

    .chev { transition: transform .22s; font-size: 8px; flex-shrink: 0; }
    .rgb.open .chev { transform: rotate(180deg); }

    .rgdd {
      position: absolute; right: 0; top: calc(100% + 6px); width: 218px;
      background: rgba(12,12,22,0.97); backdrop-filter: blur(20px);
      border: 1px solid rgba(160,50,100,0.28); border-radius: 14px;
      padding: 9px; display: none; flex-direction: column; gap: 6px;
      z-index: 300; box-shadow: 0 12px 44px rgba(0,0,0,0.6);
    }
    .rgdd.open { display: flex; }

    .rgm {
      display: flex; align-items: center; gap: 9px; padding: 7px 9px;
      border-radius: 10px; background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06); transition: border-color .18s;
    }
    .rgm:hover { border-color: rgba(160,50,100,0.3); }
    .av {
      width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: #fff;
    }
    .mi { flex: 1; min-width: 0; }
    .mn { font-size: 12px; font-weight: 600; }
    .mh { font-size: 10px; color: var(--muted); }
    .ttb {
      font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 6px;
      background: rgba(160,50,100,0.12); border: 1px solid rgba(160,50,100,0.25);
      color: var(--pink); flex-shrink: 0; transition: background .15s;
    }
    .ttb:hover { background: rgba(160,50,100,0.22); }

    /* ════════════════════════════
       SITE CONTENT — flex-grow pushes footer down
    ════════════════════════════ */
    .site-content {
      flex: 1; display: flex; flex-direction: column;
      position: relative; z-index: 1;
    }

    .pg { display: none; flex: 1; flex-direction: column; }
    .pg.active { display: flex; }

    /* ════════════════════════════
       HOME
    ════════════════════════════ */
    .hero-wrap {
      max-width: 940px; width: 100%; margin: 0 auto;
      padding: 66px clamp(20px,5vw,64px) 44px;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 18px;
      position: relative;
    }
    .hero-wrap::before {
      content: ''; position: absolute; inset: 28px max(12px, 8%) 0;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), var(--shadow-lg);
      z-index: -1;
    }
    .eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: .13em;
      text-transform: uppercase; color: #ffd6ea;
      background: linear-gradient(135deg, rgba(196,63,130,0.20), rgba(246,199,111,0.10));
      border: 1px solid rgba(255,122,184,0.30);
      padding: 5px 14px; border-radius: 999px;
      box-shadow: 0 10px 30px rgba(196,63,130,0.15);
    }
    .hero-wrap h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(24px, 4vw, 46px);
      font-weight: 800; line-height: 1.15; color: #fff;
    }
    .hero-wrap h1 span {
      color: transparent;
      background: linear-gradient(90deg, #ff8ec7, #f6c76f, #bba1ff);
      -webkit-background-clip: text; background-clip: text;
    }
    .finds-badge {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 12.5px; font-weight: 600; color: rgba(232,232,240,0.7);
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
      padding: 6px 16px; border-radius: 999px;
      backdrop-filter: blur(18px);
    }
    .fdot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--pink); box-shadow: 0 0 8px rgba(160,50,100,0.7); flex-shrink: 0;
    }
    .hero-sub { font-size: 15px; color: var(--muted); max-width: 480px; line-height: 1.7; }
    .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
    .btn-primary {
      padding: 14px 36px; border-radius: 12px; font-size: 15px; font-weight: 600;
      background: linear-gradient(135deg, rgba(196,63,130,0.88), rgba(139,92,246,0.62));
      border: 1px solid rgba(255,180,218,0.44);
      color: #fff; box-shadow: 0 18px 40px rgba(196,63,130,0.25);
      transition: transform .18s, box-shadow .18s, filter .18s;
    }
    .btn-primary:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 24px 54px rgba(196,63,130,0.32); }
    .btn-outline {
      padding: 14px 30px; border-radius: 12px; font-size: 15px; font-weight: 600;
      background: transparent; border: 1px solid rgba(255,255,255,0.14); color: var(--text);
      backdrop-filter: blur(18px);
      transition: background .18s, border-color .18s, transform .18s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.26); transform: translateY(-2px); }

    /* Feature cards — fully clickable */
    .feat-outer {
      width: 100%; max-width: 1280px; margin: 0 auto;
      padding: 0 clamp(20px,3vw,40px) 56px;
    }
    .feat-grid {
      display: grid; gap: 12px;
      grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
    }
    @media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(6,1fr); } }

    /* Each card is now an <a> tag */
    .fc {
      background: var(--glass); border: 1px solid var(--border); border-radius: 16px;
      padding: 18px 16px; display: flex; flex-direction: column; gap: 8px;
      backdrop-filter: blur(18px) saturate(145%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.11);
      transition: border-color .2s, transform .18s, box-shadow .2s, background .2s;
      cursor: pointer; text-decoration: none; color: inherit;
    }
    .fc:hover {
      border-color: rgba(255,122,184,0.45);
      transform: translateY(-5px);
      box-shadow: var(--shadow-pink), 0 16px 32px rgba(0,0,0,0.26);
      background: var(--glass-strong);
    }
    .fc-icon {
      width: 38px; height: 38px; border-radius: 9px;
      background: linear-gradient(135deg, rgba(196,63,130,0.24), rgba(246,199,111,0.10));
      border: 1px solid rgba(255,255,255,0.10);
      display: flex; align-items: center; justify-content: center; font-size: 18px;
    }
    .fc-label { font-size: 13px; font-weight: 600; }
    .fc-desc  { font-size: 11.5px; color: var(--muted); line-height: 1.55; }

    /* ════════════════════════════
       CURRENCY TOGGLE
    ════════════════════════════ */
    .currency-row {
      display: flex; align-items: center; gap: 10px;
      padding: 0 clamp(16px,3vw,40px);
      max-width: 1280px; margin: 0 auto; width: 100%;
    }
    .currency-label { font-size: 12px; font-weight: 500; color: var(--muted); }
    .currency-toggle {
      display: flex; border-radius: 9px; overflow: hidden;
      border: 1px solid var(--border); background: rgba(255,255,255,0.055);
      backdrop-filter: blur(16px);
    }
    .ct-btn {
      padding: 6px 14px; font-size: 12px; font-weight: 600;
      border: none; background: transparent; color: var(--muted);
      transition: background .18s, color .18s;
    }
    .ct-btn.active { background: linear-gradient(135deg, rgba(196,63,130,0.34), rgba(139,92,246,0.18)); color: #ffd6ea; }

    /* ════════════════════════════
       PRODUCTS
    ════════════════════════════ */
    .prod-top {
      padding: 24px clamp(16px,3vw,40px) 12px;
      display: flex; align-items: center; gap: 10px;
      max-width: 1280px; margin: 0 auto; width: 100%;
    }
    .sw { position: relative; flex: 1; max-width: 400px; }
    .si {
      position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
      color: var(--muted); pointer-events: none;
    }
    .sw input {
      width: 100%; padding: 12px 14px 12px 38px;
      background: rgba(255,255,255,0.065); border: 1px solid var(--border); border-radius: 14px;
      color: var(--text); font-size: 13.5px; font-family: inherit; outline: none;
      backdrop-filter: blur(18px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
      transition: border-color .2s, box-shadow .2s, background .2s;
    }
    .sw input::placeholder { color: var(--muted); }
    .sw input:focus { border-color: rgba(255,122,184,0.48); box-shadow: 0 0 0 3px rgba(196,63,130,0.10), inset 0 1px 0 rgba(255,255,255,0.14); background: rgba(255,255,255,0.085); }
    .fav-dock {
      margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
      min-height: 42px; padding: 0 14px; border-radius: 14px;
      background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035));
      border: 1px solid rgba(255,255,255,0.13); color: #ffd6ea;
      font-size: 12.5px; font-weight: 700; white-space: nowrap;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.11);
      transition: transform .18s, border-color .18s, box-shadow .18s;
    }
    .fav-dock:hover { transform: translateY(-2px); border-color: rgba(255,122,184,0.38); box-shadow: var(--shadow-pink); }
    .fav-dock svg { color: var(--rose); fill: rgba(255,122,184,0.20); }
    .fav-dock-count {
      min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,122,184,0.16); border: 1px solid rgba(255,122,184,0.28);
      color: #fff; font-size: 11px;
    }

    /* Category pills — wrap on mobile, no infinite scroll */
    .cats-row {
      display: flex; align-items: flex-start;
      padding: 4px clamp(16px,3vw,40px) 14px;
      max-width: 1280px; margin: 0 auto;
      /* wrap so buttons flow to next line on small screens */
    }
    .cats-inner { display: flex; gap: 7px; flex-wrap: wrap; }

    .cp {
      flex-shrink: 0; padding: 6px 16px; border-radius: 999px;
      font-size: 12.5px; font-weight: 500; white-space: nowrap;
      background: rgba(255,255,255,0.055); border: 1px solid var(--border); color: var(--muted);
      backdrop-filter: blur(16px);
      transition: all .18s;
    }
    .cp:hover { color: var(--text); border-color: rgba(255,255,255,0.24); transform: translateY(-1px); }
    .cp.active { color: #ffd6ea; border-color: rgba(255,122,184,0.48); background: linear-gradient(135deg, rgba(196,63,130,0.28), rgba(139,92,246,0.14)); box-shadow: var(--pink-sm); }

    /* Product grid — larger cards: minmax(240px) */
    .prod-grid {
      padding: 4px clamp(16px,3vw,40px) 24px;
      display: grid; gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
      max-width: 1280px; margin: 0 auto; width: 100%;
    }
    .card {
      position: relative;
      background: var(--glass); border: 1px solid var(--border);
      border-radius: 22px; overflow: hidden; display: flex; flex-direction: column;
      backdrop-filter: blur(20px) saturate(145%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 16px 40px rgba(0,0,0,0.24);
      transition: border-color .22s, transform .2s, box-shadow .22s, background .22s;
    }
    .card::before {
      content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
      opacity: .8; pointer-events: none;
    }
    .card:hover {
      border-color: rgba(255,122,184,0.48); transform: translateY(-7px);
      box-shadow: var(--shadow-pink), 0 22px 54px rgba(0,0,0,0.42);
      background: var(--glass-strong);
    }
    /* Taller image — 1:1 square feels more prominent */
    .card-img {
      width: 100%; aspect-ratio: 1/1; overflow: hidden;
      position: relative; flex-shrink: 0; background: #100c1a;
    }
    .card-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(7,7,13,0.48), transparent 46%);
      pointer-events: none;
    }
    .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
    .card:hover .card-img img { transform: scale(1.045); filter: saturate(1.08) contrast(1.04); }
    .fav-toggle {
      position: absolute; top: 12px; right: 12px; z-index: 3;
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(10,8,16,0.50); color: rgba(255,255,255,0.78);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(18px) saturate(150%);
      box-shadow: 0 10px 24px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.16);
      transition: transform .18s, color .18s, border-color .18s, background .18s, box-shadow .18s;
    }
    .fav-toggle:hover { transform: translateY(-2px) scale(1.04); color: #fff; border-color: rgba(255,122,184,0.42); box-shadow: var(--shadow-pink); }
    .fav-toggle.active {
      color: #fff; background: linear-gradient(135deg, rgba(196,63,130,0.86), rgba(255,122,184,0.68));
      border-color: rgba(255,203,226,0.55);
    }
    .fav-toggle.active svg { fill: currentColor; }
    .fav-toggle.pulse { animation: fav-pop .28s cubic-bezier(.22,1,.36,1); }
    @keyframes fav-pop {
      0% { transform: scale(1); }
      48% { transform: scale(1.16); }
      100% { transform: scale(1); }
    }
    .img-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 10px;
      background: linear-gradient(135deg, #15101e, #0d0a16);
    }
    .img-ph span { font-size: 12px; color: rgba(255,255,255,0.28); text-align: center; padding: 0 12px; }
    .card-body { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .cn { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .crow { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
    .cprice { font-size: 16px; font-weight: 800; color: #ff8ec7; }
    .badge {
      font-size: 10px; font-weight: 500; padding: 2px 9px; border-radius: 999px;
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
      color: var(--muted); white-space: nowrap;
    }
    .cbtns { display: grid; grid-template-columns: 1fr 42px; gap: 8px; margin-top: 2px; }
    .btn-buy {
      padding: 10px 12px; border-radius: 10px;
      background: linear-gradient(135deg, rgba(196,63,130,0.74), rgba(139,92,246,0.36));
      border: 1px solid rgba(255,180,218,0.34);
      color: rgba(255,255,255,0.96); font-size: 13px; font-weight: 700;
      text-align: center; transition: transform .18s, filter .18s, box-shadow .18s;
    }
    .btn-buy:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 12px 24px rgba(196,63,130,0.22); }
    .btn-qc {
      min-width: 42px; padding: 10px 0; border-radius: 10px; background: rgba(255,255,255,0.045);
      border: 1px solid rgba(160,50,100,0.36); color: var(--pink);
      font-size: 0; font-weight: 600; text-align: center;
      display: flex; align-items: center; justify-content: center;
      transition: background .15s, border-color .15s, transform .15s;
    }
    .btn-qc svg { width: 16px; height: 16px; }
    .btn-qc:hover { background: var(--pink-dim); border-color: var(--pink); transform: translateY(-1px); }
    .empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px; }

    /* ════════════════════════════
       OUTFITS — larger cards
    ════════════════════════════ */
    .out-pg { position: relative; min-height: 500px; flex: 1; }
    .out-inner {
      padding: 24px clamp(16px,3vw,40px) 52px;
      max-width: 1280px; margin: 0 auto;
    }
    .section-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
    .section-sub   { font-size: 13px; color: var(--muted); margin-top: 3px; margin-bottom: 16px; }

    /* Larger outfit cards: minmax(260px), taller 2:3 ratio */
    .ogrid {
      display: grid; gap: 20px;
      grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    }
    .ocard {
      background: var(--glass); border: 1px solid var(--border); border-radius: 22px;
      overflow: hidden; cursor: pointer;
      backdrop-filter: blur(18px) saturate(145%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 16px 40px rgba(0,0,0,0.24);
      transition: border-color .22s, transform .2s, box-shadow .22s, background .22s;
    }
    .ocard:hover {
      border-color: rgba(255,122,184,0.48); transform: translateY(-7px);
      box-shadow: var(--shadow-pink), 0 22px 54px rgba(0,0,0,0.42);
      background: var(--glass-strong);
    }
    /* Taller outfit image */
    .ocard-img {
      width: 100%; aspect-ratio: 2/3; position: relative;
      overflow: hidden; background: #100c1a;
    }
    .ocard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .48s ease, filter .3s ease; }
    .ocard:hover .ocard-img img { transform: scale(1.045); filter: saturate(1.08) contrast(1.04); }
    .ocard-ph {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #1a0e28, #0e0a1a);
    }
    .ocard-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(9,9,18,0.88) 0%, transparent 55%);
    }
    .ocard-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
    .ocard-name  { font-size: 15px; font-weight: 700; color: #fff; }
    .ocard-count { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

    /* ── Outfit detail modal — fixed, centred on viewport ── */
    /* Dark overlay that sits behind the modal */
    .odetail-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 490;
      background: rgba(0,0,0,0.72);
      /* No backdrop-filter — it creates a stacking context that traps the modal */
    }
    .odetail-overlay.open { display: block; }

    /* Blur the page when modal is open. Modal lives outside .site-content so stays sharp. */
    body.modal-open nav,
    body.modal-open .site-content {
      filter: blur(5px);
      pointer-events: none;
      user-select: none;
    }

    .odetail {
      /* Fixed, centred regardless of scroll position */
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 500;
      width: min(700px, 94vw);
      max-height: 88vh;
      border-radius: 20px;
      background: linear-gradient(145deg, rgba(16,13,26,0.96), rgba(9,8,16,0.92));
      backdrop-filter: blur(26px) saturate(150%);
      border: 1px solid rgba(255,122,184,0.28);
      box-shadow: 0 24px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.11);
      padding: 24px clamp(16px,3vw,32px);
      display: none; flex-direction: column; gap: 18px; overflow-y: auto;
    }
    .odetail.open { display: flex; }
    .oback {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 7px 14px; border-radius: 9px;
      background: rgba(255,255,255,0.06); border: 1px solid var(--border);
      font-size: 13px; font-weight: 500; color: var(--muted); width: fit-content;
      transition: color .18s, border-color .18s;
    }
    .oback:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
    .odetail-header { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; }

    /* Detail cover — shows real image, not emoji */
    .od-cover {
      width: 140px; height: 175px; border-radius: 14px;
      overflow: hidden; flex-shrink: 0; background: #1a0e28;
      position: relative;
    }
    /* Real image fills the cover */
    .od-cover-img {
      width: 100%; height: 100%; object-fit: cover;
      position: absolute; inset: 0;
    }
    /* Emoji fallback — shown only when image fails or is absent */
    .od-cover-fallback {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, #1a0e28, #0e0a1a);
      position: absolute; inset: 0;
      /* hidden by default; JS shows it only when image errors */
      visibility: hidden;
    }
    .od-cover-fallback.show { visibility: visible; }

    .od-meta { flex: 1; min-width: 180px; }
    .od-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
    .od-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
    .od-total { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--pink); background: var(--pink-dim); border: 1px solid rgba(160,50,100,0.3); padding: 5px 14px; border-radius: 999px; }
    .items-hdr { font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--border); padding-bottom: 11px; }
    .items-list { display: flex; flex-direction: column; gap: 9px; }
    .item-row {
      display: flex; align-items: center; gap: 13px; padding: 12px 14px;
      border-radius: 14px; background: rgba(255,255,255,0.055); border: 1px solid var(--border);
      transition: border-color .18s, transform .18s, background .18s;
    }
    .item-row:hover { border-color: rgba(255,122,184,0.34); transform: translateX(3px); background: rgba(255,255,255,0.075); }
    .item-icon { width: 40px; height: 40px; border-radius: 9px; background: rgba(160,50,100,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .item-info { flex: 1; min-width: 0; }
    .item-name  { font-size: 13.5px; font-weight: 600; }
    .item-price { font-size: 12px; color: var(--muted); margin-top: 2px; }
    .item-buy {
      padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
      background: rgba(140,45,90,0.55); border: 1px solid rgba(190,80,130,0.4);
      color: rgba(255,215,235,0.95); white-space: nowrap; flex-shrink: 0;
      transition: background .18s;
    }
    .item-buy:hover { background: rgba(160,50,100,0.7); }

    /* ════════════════════════════
       GUIDE — taller image slots, fixed overlap bug
    ════════════════════════════ */
    .gwrap {
      padding: 30px clamp(16px,3vw,40px) 52px;
      max-width: 720px; margin: 0 auto; width: 100%;
    }
    .cs-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      color: var(--pink); background: rgba(160,50,100,0.1);
      border: 1px solid rgba(160,50,100,0.22); padding: 4px 12px; border-radius: 999px;
      margin-bottom: 12px;
    }
    .guide-section {
      margin: 28px 0 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .guide-section-line  { flex: 1; height: 1px; background: var(--border); }
    .guide-section-label {
      font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--pink); white-space: nowrap;
      background: rgba(160,50,100,0.08); border: 1px solid rgba(160,50,100,0.2);
      padding: 4px 12px; border-radius: 999px;
    }
    .gstep {
      background: var(--glass); border: 1px solid var(--border); border-radius: 16px;
      padding: 20px; display: grid;
      grid-template-columns: 32px 1fr; column-gap: 14px; row-gap: 18px;
      transition: border-color .2s;
    }
    .gstep + .gstep { margin-top: 10px; }
    .gstep:hover { border-color: rgba(160,50,100,0.32); }
    .snum {
      width: 30px; height: 30px; border-radius: 7px;
      background: var(--pink-dim); border: 1px solid rgba(160,50,100,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 12.5px; font-weight: 700; color: var(--pink);
    }
    .stxt h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
    .stxt p  { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
    .stxt a  { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
    .stxt a:hover { opacity: 0.8; }

    /*
      GUIDE IMAGE SLOT — FIXED
      ─────────────────────────
      • Position relative container, taller (200px)
      • The <img> is position:absolute, fills container completely
      • The placeholder (.step-img-ph) is also absolute, fully replaced when image loads
      • onerror hides img and shows placeholder; onload hides placeholder
    */
    .step-img-wrap {
      grid-column: 1 / -1;
      position: relative;
      border-radius: 12px; overflow: hidden;
      background: rgba(255,255,255,0.03);
      border: 1px dashed rgba(255,255,255,0.1);
      height: 200px; /* taller slot */
    }
    /* Real image — hidden until loaded */
    .step-img-wrap .step-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%; object-fit: cover;
      display: none; /* shown by JS onload */
      border-radius: inherit;
    }
    .step-img-wrap .step-img.loaded { display: block; }

    /* Placeholder — shown by default, hidden when image loads */
    .step-img-ph {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
      /* visible by default */
    }
    .step-img-ph.hidden { display: none; }
    .step-img-ph-icon { font-size: 32px; opacity: .28; }
    .step-img-ph-text { font-size: 11px; color: rgba(255,255,255,0.2); font-style: italic; }

    /* Guide images are clickable — show pointer and a subtle zoom hint */
    .step-img-wrap .step-img.loaded {
      display: block;
      cursor: zoom-in;
      transition: filter .2s;
    }
    .step-img-wrap .step-img.loaded:hover { filter: brightness(1.08); }

    /* ── Lightbox ── */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 900;
      background: rgba(0,0,0,0.88);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-img {
      max-width: 92vw; max-height: 88vh;
      border-radius: 14px;
      box-shadow: 0 0 80px rgba(0,0,0,0.9);
      object-fit: contain;
      cursor: zoom-out;
      animation: lb-in .22s ease;
    }
    @keyframes lb-in {
      from { opacity: 0; transform: scale(0.92); }
      to   { opacity: 1; transform: scale(1); }
    }
    .lightbox-close {
      position: absolute; top: 18px; right: 20px;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      color: #fff; font-size: 18px; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .18s;
    }
    .lightbox-close:hover { background: rgba(160,50,100,0.45); }

    /* ════════════════════════════
       COUPONS
    ════════════════════════════ */
    .cwrap { padding: 30px clamp(16px,3vw,40px) 52px; max-width: 520px; margin: 0 auto; width: 100%; }
    .chero { text-align: center; padding: 32px 24px; margin-bottom: 20px; background: var(--glass); border: 1px solid var(--border); border-radius: 18px; position: relative; overflow: hidden; }
    .chero::before { content: '%'; position: absolute; font-size: 120px; font-weight: 800; color: rgba(160,50,100,0.06); right: -10px; top: -20px; font-family: 'Syne',sans-serif; line-height: 1; pointer-events: none; }
    .cheading { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
    .cdesc    { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
    .btn-kk {
      display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 11px;
      background: rgba(140,45,90,0.55); border: 1px solid rgba(190,80,130,0.4);
      color: rgba(255,215,235,0.95); font-size: 14px; font-weight: 600; transition: background .18s;
    }
    .btn-kk:hover { background: rgba(160,50,100,0.7); }
    .clist { display: flex; flex-direction: column; gap: 11px; }
    .ccard { background: var(--glass); border: 1px solid var(--border); border-radius: 13px; padding: 14px 15px; display: flex; align-items: center; gap: 14px; transition: border-color .2s; }
    .ccard:hover { border-color: rgba(160,50,100,0.3); }
    .ctag { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--pink); flex-shrink: 0; min-width: 50px; }
    .cinfo h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
    .cinfo p  { font-size: 11.5px; color: var(--muted); }
    .ccopy { margin-left: auto; flex-shrink: 0; padding: 5px 13px; border-radius: 7px; background: rgba(160,50,100,0.1); border: 1px solid rgba(160,50,100,0.25); color: var(--pink); font-size: 11px; font-weight: 600; transition: background .15s; }
    .ccopy:hover { background: rgba(160,50,100,0.22); }
    .ccopy.ok { color: #7dd3a8; border-color: rgba(100,200,150,0.3); background: rgba(100,200,150,0.08); }

    /* ════════════════════════════
       FOOTER
    ════════════════════════════ */
    footer {
      flex-shrink: 0; position: relative; z-index: 1;
      padding: 28px clamp(16px,3vw,40px);
      border-top: 1px solid var(--border);
      background: rgba(9,9,18,0.6);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }
    .footer-logo { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: #fff; }
    .footer-logo span { color: var(--pink); }
    .footer-copy { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
    .discord-link {
      display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 11px;
      background: rgba(88,101,242,0.13); border: 1px solid rgba(88,101,242,0.32);
      color: #9ea8f7; font-size: 13px; font-weight: 600;
      transition: background .2s, border-color .2s, box-shadow .2s;
    }
    .discord-link:hover { background: rgba(88,101,242,0.22); border-color: rgba(88,101,242,0.58); box-shadow: 0 0 16px rgba(88,101,242,0.28); }

    /* Product filters */
    .filter-dock {
      min-height: 42px; padding: 0 13px; border-radius: 14px;
      display: inline-flex; align-items: center; justify-content: center; gap: 7px;
      background: rgba(255,255,255,0.055); border: 1px solid var(--border);
      color: #ddd8e8; font: inherit; font-size: 12.5px; font-weight: 700; white-space: nowrap;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
      transition: transform .18s, border-color .18s, background .18s, box-shadow .18s;
    }
    .filter-dock:hover { transform: translateY(-2px); border-color: rgba(255,122,184,0.42); background: rgba(255,255,255,0.085); box-shadow: var(--pink-sm); }
    .filter-dock svg { color: var(--rose); }
    .filter-dock-count {
      min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(196,63,130,0.75); color: #fff; font-size: 10px; line-height: 1;
    }
    .filter-summary {
      max-width: 1280px; width: 100%; min-height: 0; margin: -4px auto 10px; padding: 0 clamp(16px,3vw,40px);
      display: flex; flex-wrap: wrap; align-items: center; gap: 7px;
    }
    .filter-summary:empty { display: none; }
    .filter-summary-chip {
      display: inline-flex; align-items: center; min-height: 26px; padding: 4px 10px; border-radius: 999px;
      background: rgba(196,63,130,0.12); border: 1px solid rgba(255,122,184,0.22);
      color: #f3c4dc; font-size: 11.5px; font-weight: 600;
    }
    .filter-summary-results { color: var(--muted); font-size: 11.5px; padding-left: 2px; }
    .filter-overlay {
      position: fixed; inset: 0; z-index: 120; padding: 18px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(3,3,8,0); opacity: 0; pointer-events: none;
      transition: opacity .2s ease, background .2s ease;
    }
    .filter-overlay.open { opacity: 1; pointer-events: auto; background: rgba(3,3,8,0.58); }
    .filter-sheet {
      width: min(420px, 100%); max-height: min(700px, calc(100svh - 36px)); overflow: hidden;
      display: flex; flex-direction: column; border-radius: 20px;
      background: linear-gradient(160deg, rgba(28,24,39,0.98), rgba(12,11,20,0.99));
      border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 24px 72px rgba(0,0,0,0.54), inset 0 1px 0 rgba(255,255,255,0.1);
      transform: translateY(18px) scale(.985); transition: transform .24s cubic-bezier(.22,1,.36,1);
    }
    .filter-overlay.open .filter-sheet { transform: translateY(0) scale(1); }
    .filter-sheet-head { padding: 19px 20px 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.09); }
    .filter-eyebrow { margin-bottom: 4px; color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
    .filter-sheet h2 { color: #fff; font-family: 'Syne', sans-serif; font-size: 19px; line-height: 1.2; }
    .filter-close {
      width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.055); color: #edeaf4; font-size: 25px; line-height: 1; flex: 0 0 auto;
      transition: background .18s, border-color .18s, transform .18s;
    }
    .filter-close:hover { transform: scale(1.05); border-color: rgba(255,122,184,0.46); background: rgba(196,63,130,0.16); }
    .filter-sheet-body { overflow-y: auto; overscroll-behavior: contain; padding: 18px 20px 20px; }
    .filter-field, .filter-section { display: block; }
    .filter-field > span, .filter-label { display: block; margin-bottom: 9px; color: #efedf4; font-size: 12.5px; font-weight: 700; }
    .filter-field select, .filter-price-row input {
      width: 100%; height: 45px; border-radius: 12px; outline: none;
      background: rgba(255,255,255,0.065); border: 1px solid rgba(255,255,255,0.13);
      color: #eeeaf4; font: inherit; font-size: 13px;
      transition: border-color .18s, background .18s, box-shadow .18s;
    }
    .filter-field select { padding: 0 13px; }
    .filter-field select option { color: #16111e; }
    .filter-field select:focus, .filter-price-row input:focus { border-color: rgba(255,122,184,0.55); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px rgba(196,63,130,0.12); }
    .filter-section { margin-top: 22px; }
    .filter-category-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .filter-cat {
      min-height: 38px; padding: 8px 12px; border-radius: 11px;
      background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.12);
      color: var(--muted); font: inherit; font-size: 12px; font-weight: 600;
      transition: background .16s, border-color .16s, color .16s, transform .16s;
    }
    .filter-cat:hover { transform: translateY(-1px); color: #fff; border-color: rgba(255,255,255,0.27); }
    .filter-cat.active { color: #ffe2f1; border-color: rgba(255,122,184,0.5); background: linear-gradient(135deg, rgba(196,63,130,0.35), rgba(139,92,246,0.18)); }
    .filter-price-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
    .filter-price-row label span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 600; }
    .filter-price-row input { padding: 0 12px; }
    .filter-price-row input::placeholder { color: #777281; }
    .filter-sheet-actions { padding: 14px 20px calc(16px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: auto minmax(0,1fr); gap: 10px; border-top: 1px solid rgba(255,255,255,0.09); }
    .filter-reset, .filter-apply { min-height: 45px; border-radius: 12px; font: inherit; font-size: 12.5px; font-weight: 800; }
    .filter-reset { padding: 0 15px; background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.13); color: #d6d2df; }
    .filter-apply { padding: 0 18px; background: linear-gradient(135deg, rgba(196,63,130,0.86), rgba(139,92,246,0.56)); border: 1px solid rgba(255,180,218,0.37); color: #fff; box-shadow: 0 12px 26px rgba(196,63,130,0.22); }
    .filter-reset:hover, .filter-apply:hover { filter: brightness(1.08); transform: translateY(-1px); }
    body.filter-open { overflow: hidden; }

    /* One-time Kakobuy offer */
    .welcome-offer {
      position: fixed; z-index: 110; right: 22px; bottom: 22px; width: min(336px, calc(100vw - 32px));
      padding: 17px 46px 17px 18px; border-radius: 17px;
      background: linear-gradient(145deg, rgba(37,23,43,0.97), rgba(15,13,25,0.98)); border: 1px solid rgba(255,122,184,0.34);
      box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 26px rgba(196,63,130,0.16), inset 0 1px 0 rgba(255,255,255,0.12);
      opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity .32s ease, transform .32s cubic-bezier(.22,1,.36,1);
    }
    .welcome-offer.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .welcome-offer-kicker { margin-bottom: 5px; color: var(--rose); font-size: 10px; letter-spacing: .1em; font-weight: 800; text-transform: uppercase; }
    .welcome-offer-title { color: #fff; font-size: 14px; font-weight: 800; }
    .welcome-offer p { margin: 5px 0 12px; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .welcome-offer p strong { color: #f4c7de; }
    .welcome-offer a { display: inline-flex; align-items: center; gap: 7px; color: #ffd6ea; font-size: 12px; font-weight: 800; }
    .welcome-offer a span { color: var(--rose); font-size: 15px; transition: transform .18s; }
    .welcome-offer a:hover span { transform: translateX(3px); }
    .welcome-offer-close { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.12); color: #e7e2ed; font-size: 20px; line-height: 1; }
    .welcome-offer-close:hover { background: rgba(196,63,130,0.22); border-color: rgba(255,122,184,0.42); }

    /* ════════════════════════════
       RESPONSIVE
    ════════════════════════════ */
    @media (max-width: 600px) {
      nav { min-height: 62px; padding: 8px 10px; }
      .logo { font-size: 15px; padding: 7px 9px; }
      .nav-links { gap: 3px; }
      .nl { padding: 7px 9px; font-size: 12px; }
      .hero-cta { flex-direction: column; }
      .hero-cta .btn-primary, .hero-cta .btn-outline { width: 100%; text-align: center; }
      .prod-top { flex-direction: column; align-items: stretch; }
      .sw { max-width: none; width: 100%; }
      .fav-dock { width: 100%; justify-content: center; margin-left: 0; }
      .odetail-header { flex-direction: column; }
      .od-cover { width: 100%; height: 220px; }
      footer { flex-direction: column; align-items: flex-start; }
      .prod-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 14px; }
      .ogrid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 14px; }
    }

    /* ══════════════════════════════════
       SWIPE / ODKRYJ
    ══════════════════════════════════ */
    #pg-swipe {
      align-items: center; padding: 20px 16px 48px;
      min-height: calc(100vh - 56px); gap: 0;
    }
    .sw-header { width:100%; max-width:420px; text-align:center; margin-bottom:18px; }
    .sw-header h2 { font-family:'Syne',sans-serif; font-size:clamp(19px,4vw,26px); font-weight:800; color:#fff; margin-bottom:5px; }
    .sw-header p { font-size:12.5px; color:var(--muted); line-height:1.5; }

    .sw-cats { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; width:100%; max-width:440px; margin-bottom:22px; }
    .sw-cat { padding:6px 14px; border-radius:999px; font-size:12px; font-weight:600; background:rgba(255,255,255,0.055); border:1px solid var(--border); color:var(--muted); transition:all .18s; backdrop-filter:blur(16px); }
    .sw-cat:hover { color:var(--text); border-color:rgba(255,255,255,0.24); transform:translateY(-1px); }
    .sw-cat.active { color:#ffd6ea; border-color:rgba(255,122,184,0.48); background:linear-gradient(135deg, rgba(196,63,130,0.28), rgba(139,92,246,0.14)); box-shadow:var(--pink-sm); }

    .sw-stage { position:relative; width:100%; max-width:340px; height:500px; flex-shrink:0; margin-bottom:22px; }
    @media (max-height:720px) { .sw-stage { height:430px; } }
    .sw-stage::before, .sw-stage::after { content:''; position:absolute; bottom:-8px; left:50%; width:90%; height:100%; transform:translateX(-50%); background:rgba(255,255,255,0.045); border:1px solid rgba(255,255,255,0.10); border-radius:22px; z-index:0; backdrop-filter:blur(16px); }
    .sw-stage::after { bottom:-16px; width:82%; background:rgba(255,255,255,0.015); border-color:rgba(255,255,255,0.04); }

    .sw-card { position:absolute; inset:0; z-index:2; background:linear-gradient(145deg, rgba(255,255,255,0.14), rgba(18,12,26,0.92)); border:1px solid rgba(255,255,255,0.16); border-radius:22px; overflow:hidden; display:flex; flex-direction:column; box-shadow:0 22px 62px rgba(0,0,0,0.58), inset 0 1px 0 rgba(255,255,255,0.12); will-change:transform; backdrop-filter:blur(20px) saturate(145%); }
    .sw-card.ready { cursor:grab; }
    .sw-card.ready:active { cursor:grabbing; }

    .sw-img { flex:1; position:relative; overflow:hidden; background:linear-gradient(135deg,#16102a,#0d0a18); min-height:0; }
    .sw-img img { width:100%; height:100%; object-fit:cover; pointer-events:none; user-select:none; }
    .sw-img-ph { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; }

    .sw-stamp { position:absolute; top:18px; font-family:'Syne',sans-serif; font-size:20px; font-weight:800; letter-spacing:.08em; padding:5px 14px; border-radius:7px; border:3px solid; opacity:0; pointer-events:none; transition:opacity .1s; }
    .sw-stamp-like { right:18px; color:#4ade80; border-color:#4ade80; transform:rotate(10deg); }
    .sw-stamp-nope { left:18px; color:#f87171; border-color:#f87171; transform:rotate(-10deg); }
    .show-like .sw-stamp-like { opacity:1; }
    .show-nope .sw-stamp-nope { opacity:1; }

    .sw-info { padding:14px 15px 15px; background:rgba(9,7,16,0.86); border-top:1px solid rgba(255,255,255,0.10); flex-shrink:0; backdrop-filter:blur(16px); }
    .sw-name  { font-size:14.5px; font-weight:700; color:#fff; margin-bottom:5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .sw-row   { display:flex; align-items:center; justify-content:space-between; gap:8px; }
    .sw-price { font-size:15px; font-weight:800; color:var(--pink); }
    .sw-badge { font-size:10px; font-weight:600; padding:2px 9px; border-radius:999px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.09); color:var(--muted); }

    .sw-actions { display:flex; align-items:center; justify-content:center; gap:18px; width:100%; flex-shrink:0; }
    .sw-btn { border:none; border-radius:50%; display:flex; align-items:center; justify-content:center; transition:transform .15s, box-shadow .18s; }
    .sw-btn:hover:not(:disabled) { transform:scale(1.1); }
    .sw-btn:active:not(:disabled) { transform:scale(0.93); }
    .sw-btn:disabled { opacity:0.35; cursor:not-allowed; }

    .sw-skip { width:54px; height:54px; background:rgba(248,113,113,0.13); border:2px solid rgba(248,113,113,0.3); color:#f87171; }
    .sw-skip:hover:not(:disabled) { box-shadow:0 0 16px rgba(248,113,113,0.3); }
    .sw-buy  { width:62px; height:62px; background:rgba(140,45,90,0.55); border:2px solid rgba(190,80,130,0.4); color:rgba(255,215,235,0.95); box-shadow:0 0 14px rgba(140,45,90,0.28); }
    .sw-buy:hover:not(:disabled) { box-shadow:0 0 24px rgba(160,50,100,0.55); }
    .sw-fav  { width:54px; height:54px; background:rgba(255,122,184,0.12); border:2px solid rgba(255,122,184,0.30); color:#ff8ec7; }
    .sw-fav:hover:not(:disabled) { box-shadow:0 0 18px rgba(255,122,184,0.28); }

    .sw-empty { position:absolute; inset:0; border-radius:20px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; background:rgba(18,12,26,0.97); border:1px solid rgba(255,255,255,0.07); text-align:center; padding:24px; z-index:2; }
    .sw-empty-icon { font-size:40px; opacity:.35; }
    .sw-empty h3 { font-size:15px; font-weight:600; color:var(--text); }
    .sw-empty p  { font-size:12.5px; color:var(--muted); }
    .sw-empty-reset { margin-top:4px; padding:8px 20px; border-radius:999px; background:var(--pink-dim); border:1px solid rgba(160,50,100,0.35); color:var(--pink); font-size:12.5px; font-weight:600; transition:background .18s; }
    .sw-empty-reset:hover { background:rgba(160,50,100,0.28); }

    .sw-fav-section { width:100%; max-width:420px; margin-top:26px; flex-shrink:0; }
    #pg-swipe .sw-fav-section { display:none; }
    .sw-fav-hdr { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
    .sw-fav-title { font-size:13px; font-weight:700; color:var(--text); display:flex; align-items:center; gap:6px; }
    .sw-fav-count { font-size:10px; font-weight:600; padding:2px 8px; border-radius:999px; background:rgba(255,122,184,0.14); border:1px solid rgba(255,122,184,0.28); color:#ffd6ea; }
    .sw-fav-clear { font-size:11px; font-weight:600; color:var(--muted); background:none; border:none; padding:4px 8px; border-radius:6px; transition:color .15s; }
    .sw-fav-clear:hover { color:#f87171; }
    .sw-fav-list { display:flex; flex-direction:column; gap:8px; }
    .sw-fav-empty { font-size:12px; color:var(--muted); text-align:center; padding:16px; }
    .sw-fav-item { display:flex; align-items:center; gap:11px; padding:10px 13px; background:rgba(255,255,255,0.06); border:1px solid var(--border); border-radius:14px; transition:border-color .18s, transform .18s, background .18s; backdrop-filter:blur(16px); }
    .sw-fav-item:hover { border-color:rgba(255,122,184,0.32); transform:translateY(-2px); background:rgba(255,255,255,0.08); }
    .sw-fav-thumb { width:40px; height:40px; border-radius:8px; object-fit:cover; background:rgba(255,255,255,0.06); flex-shrink:0; }
    .sw-fav-thumb-ph { width:40px; height:40px; border-radius:8px; flex-shrink:0; background:rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; font-size:18px; }
    .sw-fav-info { flex:1; min-width:0; }
    .sw-fav-name  { font-size:12.5px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .sw-fav-price { font-size:11px; color:var(--pink); margin-top:1px; }
    .sw-fav-open { padding:6px 12px; border-radius:8px; font-size:11px; font-weight:600; background:rgba(140,45,90,0.5); border:1px solid rgba(190,80,130,0.35); color:rgba(255,215,235,0.95); flex-shrink:0; transition:background .15s; }
    .sw-fav-open:hover { background:rgba(160,50,100,0.68); }
    .sw-fav-remove { width:26px; height:26px; border-radius:50%; flex-shrink:0; background:rgba(248,113,113,0.1); border:1px solid rgba(248,113,113,0.2); color:#f87171; font-size:13px; display:flex; align-items:center; justify-content:center; transition:background .15s; }
    .sw-fav-remove:hover { background:rgba(248,113,113,0.25); }

    .sw-toast { position:fixed; bottom:26px; left:50%; transform:translateX(-50%) translateY(70px); background:rgba(12,10,22,0.97); border:1px solid rgba(74,222,128,0.4); color:#4ade80; padding:9px 20px; border-radius:999px; font-size:13px; font-weight:600; box-shadow:0 8px 28px rgba(0,0,0,0.55); z-index:999; pointer-events:none; transition:transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s; opacity:0; white-space:nowrap; }
    .sw-toast.show { transform:translateX(-50%) translateY(0); opacity:1; }

    @keyframes sw-fly-left  { to { transform:translateX(-140%) rotate(-25deg); opacity:0; } }
    @keyframes sw-fly-right { to { transform:translateX(140%)  rotate(25deg);  opacity:0; } }
    @keyframes sw-card-in   { from { transform:scale(0.86) translateY(22px); opacity:0; } to { transform:scale(1) translateY(0); opacity:1; } }
    @keyframes premium-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    @keyframes premium-glow { 0%,100% { opacity: .46; } 50% { opacity: .82; } }

    .hero-wrap::after {
      content:''; position:absolute; top:42px; right:12%; width:120px; height:120px; border-radius:50%;
      background: radial-gradient(circle, rgba(246,199,111,0.20), transparent 64%);
      filter: blur(2px); animation: premium-float 7s ease-in-out infinite, premium-glow 5s ease-in-out infinite;
      pointer-events:none; z-index:-1;
    }
    .finds-badge, .sw-stage::after { animation: premium-float 8s ease-in-out infinite; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
      }
    }

    /* Premium landing rebuild */
    #pg-home > .hero-wrap,
    #pg-home > .feat-outer { display: none; }

    body {
      background:
        radial-gradient(circle at 50% -10%, rgba(167,82,255,0.16), transparent 28%),
        radial-gradient(circle at 12% 18%, rgba(255,46,146,0.14), transparent 26%),
        radial-gradient(circle at 86% 36%, rgba(88,101,242,0.12), transparent 26%),
        linear-gradient(180deg, #07070b 0%, #0a0a10 45%, #0d0d14 100%);
    }

    .amb {
      opacity: .95;
      background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        radial-gradient(circle at 18% 8%, rgba(255,46,146,0.18), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(139,92,246,0.14), transparent 30%);
      background-size: 48px 48px, 48px 48px, auto, auto;
    }

    nav {
      width: min(1180px, calc(100% - 32px));
      margin: 14px auto 0;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.13);
      background: linear-gradient(180deg, rgba(22,20,32,0.78), rgba(12,12,20,0.62));
      box-shadow: 0 22px 70px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.12);
    }

    .site-content { margin-top: -82px; padding-top: 82px; }

    .premium-hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 128px clamp(20px, 5vw, 72px) 96px;
      position: relative;
      overflow: hidden;
    }

    .premium-hero::before {
      content: '';
      position: absolute;
      inset: 92px clamp(16px, 4vw, 58px) 44px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.025)),
        radial-gradient(circle at 76% 20%, rgba(255,46,146,0.16), transparent 36%);
      border: 1px solid #2a2a35;
      box-shadow: 0 30px 110px rgba(0,0,0,0.58), inset 0 1px 0 rgba(255,255,255,0.13);
      pointer-events: none;
    }

    .hero-grid {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
      align-items: center;
      gap: clamp(42px, 7vw, 96px);
      position: relative;
      z-index: 1;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 22px;
      text-align: left;
    }

    .hero-copy .eyebrow,
    .section-kicker,
    .card-tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      border-radius: 999px;
      color: #ffd7ed;
      background: linear-gradient(135deg, rgba(255,46,146,0.18), rgba(139,92,246,0.13));
      border: 1px solid rgba(255,122,184,0.28);
      box-shadow: 0 0 34px rgba(255,46,146,0.13);
    }

    .hero-copy h1 {
      max-width: 760px;
      font-family: 'Syne', sans-serif;
      font-size: clamp(46px, 8vw, 98px);
      line-height: .94;
      letter-spacing: 0;
      color: #fff;
      text-wrap: balance;
    }

    .hero-copy h1::after {
      content: '';
      display: block;
      width: 190px;
      height: 5px;
      margin-top: 24px;
      border-radius: 999px;
      background: linear-gradient(90deg, #ff2e92, #8b5cf6, transparent);
      box-shadow: 0 0 28px rgba(255,46,146,0.45);
    }

    .premium-hero .hero-sub {
      max-width: 610px;
      font-size: 18px;
      line-height: 1.75;
      color: rgba(244,244,250,0.68);
    }

    .premium-hero .hero-cta { justify-content: flex-start; gap: 14px; margin-top: 4px; }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      width: min(590px, 100%);
      margin-top: 18px;
    }

    .hero-stats div {
      padding: 18px;
      border-radius: 22px;
      background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.03));
      border: 1px solid #2a2a35;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
    }

    .hero-stats strong {
      display: block;
      font-size: 24px;
      color: #fff;
    }

    .hero-stats span {
      display: block;
      margin-top: 5px;
      font-size: 12px;
      color: rgba(244,244,250,0.56);
    }

    .hero-visual {
      min-height: 620px;
      position: relative;
      perspective: 900px;
    }

    .visual-orbit {
      position: absolute;
      inset: 62px 24px 48px;
      border-radius: 36px;
      background:
        radial-gradient(circle at 50% 20%, rgba(255,46,146,0.30), transparent 34%),
        radial-gradient(circle at 65% 78%, rgba(88,101,242,0.28), transparent 32%),
        linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.13);
      box-shadow: 0 28px 90px rgba(0,0,0,0.56), inset 0 1px 0 rgba(255,255,255,0.14);
      transform: rotateX(6deg) rotateY(-7deg);
    }

    .hero-product {
      position: absolute;
      overflow: hidden;
      border-radius: 24px;
      background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.035));
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 28px 90px rgba(0,0,0,0.52), 0 0 46px rgba(255,46,146,0.16);
      backdrop-filter: blur(24px) saturate(150%);
    }

    .hero-product img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-product-main {
      left: 50%;
      top: 50%;
      width: min(390px, 72vw);
      aspect-ratio: 4 / 5;
      transform: translate(-50%, -50%) rotate(-4deg);
    }

    .hero-product-meta {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 14px;
      border-radius: 18px;
      background: rgba(7,7,11,0.68);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(18px);
    }

    .hero-product-meta b { color: #ff7ab8; }

    .hero-product-float {
      width: 170px;
      height: 210px;
    }

    .hero-product-float span {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 8px 10px;
      border-radius: 14px;
      background: rgba(7,7,11,0.66);
      border: 1px solid rgba(255,255,255,0.10);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      backdrop-filter: blur(14px);
    }

    .hero-product-float.one { right: 0; top: 82px; transform: rotate(8deg); }
    .hero-product-float.two { left: 0; bottom: 72px; transform: rotate(-8deg); }

    .discord-chip,
    .stock-chip {
      position: absolute;
      z-index: 3;
      padding: 11px 15px;
      border-radius: 999px;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      background: rgba(17,17,26,0.72);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 18px 45px rgba(0,0,0,0.32);
      backdrop-filter: blur(18px);
    }

    .discord-chip { top: 36px; left: 22px; color: #cfd4ff; }
    .stock-chip { right: 34px; bottom: 28px; color: #ffd7ed; }

    .landing-section {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 112px 0;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .section-head.left {
      margin: 0;
      text-align: left;
    }

    .section-head h2,
    .culture-card h2 {
      margin-top: 16px;
      font-family: 'Syne', sans-serif;
      font-size: clamp(30px, 4.4vw, 58px);
      line-height: 1.02;
      color: #fff;
      text-wrap: balance;
    }

    .section-head p,
    .culture-card p {
      margin-top: 18px;
      color: rgba(244,244,250,0.62);
      font-size: 16px;
      line-height: 1.7;
    }

    .command-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 18px;
    }

    .command-card {
      min-height: 320px;
      padding: 28px;
      border-radius: 24px;
      text-align: left;
      color: #fff;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.028)),
        radial-gradient(circle at 80% 10%, rgba(255,46,146,0.16), transparent 34%);
      border: 1px solid #2a2a35;
      box-shadow: 0 22px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.10);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 13px;
      transition: transform .22s, border-color .22s, box-shadow .22s;
    }

    .command-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255,122,184,0.44);
      box-shadow: 0 28px 84px rgba(0,0,0,0.44), 0 0 50px rgba(255,46,146,0.14);
    }

    .command-card h3 {
      font-size: 24px;
      color: #fff;
    }

    .command-card p {
      color: rgba(244,244,250,0.62);
      line-height: 1.65;
    }

    .command-card.wide {
      min-height: 390px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)),
        radial-gradient(circle at 12% 12%, rgba(88,101,242,0.25), transparent 34%),
        radial-gradient(circle at 90% 12%, rgba(255,46,146,0.22), transparent 35%);
    }

    .split-section {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      align-items: center;
      gap: clamp(34px, 6vw, 86px);
    }

    .drop-rail {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .drop-card {
      min-height: 360px;
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      background: #11111a;
      border: 1px solid #2a2a35;
      box-shadow: 0 22px 70px rgba(0,0,0,0.34);
    }

    .drop-card:nth-child(2) { transform: translateY(-34px); }

    .drop-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.08) contrast(1.02);
      transition: transform .5s ease;
    }

    .drop-card:hover img { transform: scale(1.06); }

    .drop-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7,7,11,0.86), transparent 52%);
    }

    .drop-card span {
      position: absolute;
      left: 16px;
      bottom: 16px;
      z-index: 1;
      padding: 9px 12px;
      border-radius: 999px;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      background: rgba(7,7,11,0.62);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(14px);
    }

    .culture-section { padding-bottom: 130px; }

    .culture-card {
      min-height: 430px;
      padding: clamp(34px, 6vw, 72px);
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.025)),
        radial-gradient(circle at 18% 18%, rgba(255,46,146,0.22), transparent 34%),
        radial-gradient(circle at 86% 60%, rgba(88,101,242,0.18), transparent 34%);
      border: 1px solid #2a2a35;
      box-shadow: 0 30px 110px rgba(0,0,0,0.52), inset 0 1px 0 rgba(255,255,255,0.12);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .culture-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    #pg-products,
    #pg-outfits,
    #pg-guide,
    #pg-coupons,
    #pg-swipe {
      padding-top: 70px;
    }

    .prod-top,
    .currency-row,
    .cats-row,
    .prod-grid,
    .out-inner,
    .gwrap,
    .cwrap {
      max-width: 1180px;
    }

    .prod-top { padding-top: 70px; }
    .prod-grid { padding-bottom: 96px; }
    .out-inner, .gwrap, .cwrap { padding-top: 90px; padding-bottom: 112px; }

    @media (max-width: 980px) {
      .hero-grid,
      .split-section,
      .command-grid {
        grid-template-columns: 1fr;
      }
      .premium-hero { padding-top: 126px; }
      .hero-visual { min-height: 560px; }
      .command-card,
      .command-card.wide { min-height: 260px; }
    }

    @media (max-width: 640px) {
      nav { width: calc(100% - 18px); margin-top: 9px; border-radius: 20px; }
      .site-content { margin-top: -76px; padding-top: 76px; }
      .premium-hero { padding: 116px 16px 70px; min-height: auto; }
      .premium-hero::before { inset: 86px 10px 28px; border-radius: 26px; }
      .hero-copy h1 { font-size: clamp(38px, 13vw, 58px); }
      .premium-hero .hero-sub { font-size: 15px; }
      .hero-stats { grid-template-columns: 1fr; }
      .hero-visual { min-height: 470px; }
      .visual-orbit { inset: 56px 8px 40px; }
      .hero-product-main { width: min(310px, 74vw); }
      .hero-product-float { width: 126px; height: 158px; }
      .discord-chip, .stock-chip { display: none; }
      .landing-section { width: calc(100% - 28px); padding: 82px 0; }
      .drop-rail { grid-template-columns: 1fr; }
      .drop-card { min-height: 270px; }
      .drop-card:nth-child(2) { transform: none; }
      .culture-card { min-height: 360px; border-radius: 24px; }
    }

    .gstep,
    .guide-section,
    .chero,
    .ccard,
    .odetail,
    .lightbox-content {
      border-color: #2a2a35 !important;
      background: linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.026)) !important;
      box-shadow: 0 22px 70px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.10);
      backdrop-filter: blur(22px) saturate(145%);
    }

    .gstep,
    .ccard { border-radius: 24px !important; }

    .gstep:hover,
    .ccard:hover {
      border-color: rgba(255,122,184,0.40) !important;
      transform: translateY(-4px);
      box-shadow: 0 28px 84px rgba(0,0,0,0.44), 0 0 44px rgba(255,46,146,0.12);
    }

    .gstep,
    .ccard,
    .btn-kk,
    .ccopy,
    .item-row {
      transition: transform .22s, border-color .22s, box-shadow .22s, background .22s;
    }

    .section-title,
    .cheading,
    .sw-header h2 {
      letter-spacing: 0;
      background: linear-gradient(90deg, #fff, #ffd7ed 58%, #bba1ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
    }

    .btn-kk,
    .ccopy,
    .item-buy,
    .sw-buy {
      background: linear-gradient(135deg, rgba(255,46,146,0.76), rgba(139,92,246,0.58)) !important;
      border-color: rgba(255,180,218,0.35) !important;
      color: #fff !important;
      box-shadow: 0 16px 36px rgba(255,46,146,0.18);
    }

    .btn-kk:hover,
    .ccopy:hover,
    .item-buy:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 52px rgba(255,46,146,0.26);
    }

    footer {
      border-top: 1px solid #2a2a35;
      background: rgba(7,7,11,0.68);
      backdrop-filter: blur(22px);
    }

    /* Calm reset: return Home/Nav closer to the original design, keep favourites + product UI */
    .premium-hero,
    .landing-section,
    .split-section,
    .culture-section {
      display: none !important;
    }

    #pg-home > .hero-wrap {
      display: flex !important;
    }

    #pg-home > .feat-outer {
      display: block !important;
    }

    body {
      background:
        radial-gradient(ellipse 70% 42% at 50% -10%, rgba(196,63,130,0.105), transparent 62%),
        radial-gradient(ellipse 50% 32% at 100% 24%, rgba(139,92,246,0.055), transparent 62%),
        linear-gradient(180deg, #090912 0%, #08080f 48%, #090912 100%) !important;
    }

    .amb {
      opacity: 1 !important;
      background:
        radial-gradient(ellipse 56% 38% at 8% 0%, rgba(196,63,130,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 46% 30% at 92% 100%, rgba(100,30,170,0.06) 0%, transparent 68%) !important;
      background-size: auto !important;
      mask-image: none !important;
    }

    nav {
      width: 100% !important;
      min-height: 56px !important;
      height: 56px !important;
      margin: 0 !important;
      border-radius: 0 !important;
      padding: 0 clamp(12px, 2.5vw, 36px) !important;
      gap: 8px !important;
      background: rgba(9,9,18,0.86) !important;
      border: 0 !important;
      border-bottom: 1px solid rgba(255,255,255,0.08) !important;
      box-shadow: none !important;
    }

    nav::after {
      display: none !important;
    }

    .site-content {
      margin-top: 0 !important;
      padding-top: 0 !important;
    }

    .logo {
      padding: 0 !important;
      margin-right: 12px !important;
      border: 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      font-size: 17px !important;
    }

    .logo .p {
      color: #ff2e9f !important;
    }

    .nav-links {
      gap: 4px !important;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
    }

    .nl {
      padding: 7px 12px !important;
      border-radius: 999px !important;
      font-size: 12.5px !important;
      font-weight: 600 !important;
      color: rgba(232,232,240,0.56) !important;
      background: transparent !important;
      box-shadow: none !important;
    }

    .nl:hover {
      color: rgba(255,255,255,0.86) !important;
      background: rgba(255,255,255,0.045) !important;
      transform: none !important;
    }

    .nl.active {
      color: #ff7ab8 !important;
      background: rgba(196,63,130,0.17) !important;
      box-shadow: none !important;
    }

    .rgb {
      padding: 6px 12px !important;
      border-radius: 999px !important;
      background: transparent !important;
      border: 1px solid rgba(255,255,255,0.09) !important;
      box-shadow: none !important;
      opacity: .78 !important;
    }

    .rgb:hover,
    .rgb.open {
      transform: none !important;
      box-shadow: none !important;
      color: #ff7ab8 !important;
      border-color: rgba(255,122,184,0.25) !important;
    }

    .hero-wrap {
      max-width: 980px !important;
      padding: clamp(58px, 10vw, 104px) clamp(18px, 5vw, 64px) 48px !important;
      gap: 18px !important;
    }

    .hero-wrap::before,
    .hero-wrap::after {
      display: none !important;
    }

    .eyebrow {
      color: #ff5bae !important;
      background: rgba(196,63,130,0.10) !important;
      border: 1px solid rgba(196,63,130,0.28) !important;
      box-shadow: none !important;
      letter-spacing: .12em !important;
    }

    .hero-wrap h1 {
      max-width: 760px !important;
      font-size: clamp(34px, 7vw, 72px) !important;
      line-height: 1.02 !important;
      letter-spacing: 0 !important;
      text-wrap: balance;
    }

    .hero-wrap h1 span {
      color: #ff2e9f !important;
      background: none !important;
      -webkit-background-clip: initial !important;
      background-clip: initial !important;
      text-shadow: 0 0 22px rgba(255,46,159,0.22);
    }

    .finds-badge {
      animation: none !important;
      background: rgba(255,255,255,0.045) !important;
      border-color: rgba(255,255,255,0.09) !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    .hero-sub {
      max-width: 540px !important;
      color: rgba(232,232,240,0.55) !important;
      font-size: 15px !important;
    }

    .hero-cta {
      margin-top: 8px !important;
    }

    .btn-primary {
      background: #ff2e9f !important;
      border-color: rgba(255,255,255,0.08) !important;
      box-shadow: 0 14px 34px rgba(255,46,159,0.22) !important;
      border-radius: 16px !important;
    }

    .btn-primary:hover {
      transform: translateY(-1px) !important;
      box-shadow: 0 18px 40px rgba(255,46,159,0.28) !important;
    }

    .btn-outline {
      border-radius: 16px !important;
      background: rgba(255,255,255,0.018) !important;
      border-color: rgba(255,255,255,0.10) !important;
    }

    .feat-outer {
      padding: 16px clamp(16px, 3vw, 40px) 64px !important;
    }

    .feat-grid {
      gap: 12px !important;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
    }

    .fc {
      min-height: 142px;
      border-radius: 18px !important;
      background: rgba(255,255,255,0.035) !important;
      border-color: rgba(255,255,255,0.08) !important;
      box-shadow: none !important;
      backdrop-filter: blur(14px);
    }

    .fc:hover {
      transform: translateY(-3px) !important;
      border-color: rgba(255,122,184,0.30) !important;
      box-shadow: 0 18px 40px rgba(0,0,0,0.24) !important;
    }

    .fc-icon {
      background: rgba(196,63,130,0.12) !important;
      border-color: rgba(196,63,130,0.16) !important;
    }

    #pg-products,
    #pg-outfits,
    #pg-guide,
    #pg-coupons,
    #pg-swipe {
      padding-top: 0 !important;
    }

    .prod-top {
      padding-top: 22px !important;
    }

    .out-inner,
    .gwrap,
    .cwrap {
      padding-top: 32px !important;
    }

    @media (max-width: 760px) {
      nav {
        padding: 0 10px !important;
        gap: 6px !important;
      }

      .logo {
        font-size: 14px !important;
        margin-right: 4px !important;
      }

      .logo .d {
        display: none !important;
      }

      .nav-links {
        gap: 2px !important;
      }

      .nl {
        padding: 7px 9px !important;
        font-size: 12px !important;
      }

      .rgw {
        margin-left: 2px !important;
      }

      .rgb {
        width: 34px !important;
        height: 34px !important;
        padding: 0 !important;
        justify-content: center !important;
      }

      .rg-label,
      .chev {
        display: none !important;
      }

      .hero-wrap {
        align-items: flex-start !important;
        text-align: left !important;
        padding: 48px 18px 34px !important;
      }

      .hero-wrap h1 {
        font-size: clamp(37px, 13vw, 58px) !important;
      }

      .hero-sub {
        max-width: 100% !important;
        font-size: 14.5px !important;
      }

      .hero-cta {
        width: 100% !important;
      }

      .hero-cta .btn-primary,
      .hero-cta .btn-outline {
        width: 100% !important;
      }

      .feat-outer {
        padding: 8px 14px 46px !important;
      }

      .feat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
      }

      .fc {
        min-height: 132px !important;
        padding: 14px !important;
        border-radius: 16px !important;
      }

      .fc-icon {
        width: 34px !important;
        height: 34px !important;
      }

      .fc-desc {
        font-size: 11px !important;
      }

      .prod-top {
        padding-top: 16px !important;
      }
    }

    /* Current tuning: calmer brand hero, mobile-first nav, favourites drawer, guide fixes */
    .top-fav-btn {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
      color: rgba(255,255,255,0.78);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.09);
      transition: color .18s, border-color .18s, background .18s;
    }

    .top-fav-btn:hover {
      color: #ff7ab8;
      border-color: rgba(255,122,184,0.28);
      background: rgba(196,63,130,0.08);
    }

    .top-fav-count {
      position: absolute;
      right: -3px;
      top: -4px;
      min-width: 17px;
      height: 17px;
      padding: 0 5px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 800;
      color: #fff;
      background: #ff2e9f;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .fav-drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 430;
      background: rgba(0,0,0,0.52);
      opacity: 0;
      pointer-events: none;
      transition: opacity .22s;
    }

    .fav-drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .fav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 440;
      width: min(380px, calc(100vw - 22px));
      height: 100vh;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background: rgba(10,10,18,0.96);
      border-left: 1px solid rgba(255,255,255,0.10);
      box-shadow: none;
      transform: translateX(104%);
      transition: transform .26s cubic-bezier(.22,1,.36,1);
      backdrop-filter: blur(22px);
      pointer-events: none;
    }

    .fav-drawer.open {
      transform: translateX(0);
      box-shadow: -24px 0 70px rgba(0,0,0,0.55);
      pointer-events: auto;
    }

    .fav-drawer-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .fav-drawer-title {
      color: #fff;
      font-size: 18px;
      font-weight: 800;
    }

    .fav-drawer-sub {
      margin-top: 4px;
      color: rgba(232,232,240,0.50);
      font-size: 12px;
      line-height: 1.45;
    }

    .fav-drawer-close {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.72);
      font-size: 20px;
      line-height: 1;
    }

    .fav-drawer-actions {
      margin-bottom: 0 !important;
    }

    .fav-drawer .sw-fav-list {
      overflow-y: auto;
      padding-right: 4px;
    }

    .brand-hero-title {
      font-size: clamp(42px, 9vw, 86px) !important;
      line-height: .96 !important;
      text-shadow: none !important;
    }

    .home-search-card {
      width: min(520px, 100%);
      min-height: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 16px;
      border-radius: 14px;
      color: rgba(232,232,240,0.60);
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow: 0 14px 34px rgba(0,0,0,0.22);
      cursor: pointer;
      transition: border-color .18s, background .18s, color .18s;
    }

    .home-search-card:hover {
      color: rgba(255,255,255,0.86);
      border-color: rgba(255,122,184,0.22);
      background: rgba(255,255,255,0.05);
    }

    .home-search-card svg {
      color: #ff7ab8;
      flex-shrink: 0;
    }

    .hero-wrap {
      padding-top: clamp(48px, 8vw, 78px) !important;
      padding-bottom: 24px !important;
    }

    .eyebrow {
      color: rgba(255,122,184,0.86) !important;
      background: rgba(196,63,130,0.075) !important;
      border-color: rgba(196,63,130,0.20) !important;
    }

    .feat-outer {
      padding-top: 4px !important;
    }

    .fc {
      min-height: 164px !important;
      padding: 20px 18px !important;
    }

    .prod-grid {
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
      gap: 22px !important;
    }

    .card-img {
      aspect-ratio: 1 / 1.04 !important;
    }

    .btn-qc.copied {
      color: #7dd3a8 !important;
      border-color: rgba(125,211,168,0.45) !important;
      background: rgba(125,211,168,0.12) !important;
    }

    .btn-qc.copied svg {
      stroke: #7dd3a8;
    }

    .copy-toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      z-index: 999;
      transform: translateX(-50%) translateY(70px);
      opacity: 0;
      padding: 10px 18px;
      border-radius: 999px;
      color: #d8ffe8;
      background: rgba(20,32,26,0.94);
      border: 1px solid rgba(125,211,168,0.34);
      box-shadow: 0 14px 42px rgba(0,0,0,0.38);
      font-size: 13px;
      font-weight: 700;
      pointer-events: none;
      transition: transform .24s, opacity .2s;
    }

    .copy-toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .gwrap {
      max-width: 860px !important;
    }

    .cs-badge {
      color: #ff8ec7 !important;
      background: rgba(196,63,130,0.085) !important;
      border-color: rgba(196,63,130,0.20) !important;
    }

    .gstep {
      display: grid !important;
      grid-template-columns: 46px minmax(0, 1fr);
      gap: 14px !important;
      align-items: start !important;
      padding: 18px !important;
    }

    .gstep .step-img-wrap {
      grid-column: 1 / -1;
      width: 100%;
      max-height: none !important;
      aspect-ratio: auto !important;
      min-height: 0 !important;
      padding: 10px;
      background: rgba(0,0,0,0.20);
      border-radius: 16px;
    }

    .step-img-wrap .step-img,
    .step-img-wrap .step-img.loaded {
      position: relative !important;
      width: 100% !important;
      height: auto !important;
      max-height: 520px !important;
      object-fit: contain !important;
      border-radius: 12px;
      background: #0c0c14;
    }

    .step-img-ph {
      position: relative !important;
      min-height: 220px;
      border-radius: 12px;
    }

    @media (min-width: 1100px) {
      .prod-grid {
        grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)) !important;
      }
    }

    @media (max-width: 760px) {
      .brand-hero-title {
        font-size: clamp(44px, 15vw, 66px) !important;
      }

      .home-search-card {
        min-height: 46px;
        font-size: 13px;
      }

      .fc {
        min-height: 150px !important;
      }

      .prod-grid {
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)) !important;
        gap: 14px !important;
      }

      .gstep {
        padding: 15px !important;
      }

      .step-img-wrap .step-img,
      .step-img-wrap .step-img.loaded {
        max-height: none !important;
      }
    }

    /* Final tuning after mobile review */
    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      background-color: #090912 !important;
    }

    body {
      background:
        radial-gradient(ellipse 70% 42% at 50% -10%, rgba(196,63,130,0.08), transparent 62%),
        radial-gradient(ellipse 46% 32% at 95% 20%, rgba(139,92,246,0.035), transparent 64%),
        #090912 !important;
    }

    .site-content,
    .pg,
    footer {
      background-color: transparent !important;
    }

    .amb {
      background:
        radial-gradient(ellipse 56% 38% at 8% 0%, rgba(196,63,130,0.065) 0%, transparent 65%),
        radial-gradient(ellipse 46% 30% at 92% 100%, rgba(100,30,170,0.035) 0%, transparent 68%) !important;
    }

    .logo.logo-mark {
      width: 38px !important;
      height: 38px !important;
      padding: 0 !important;
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border-radius: 12px !important;
      overflow: hidden;
    }

    .logo.logo-mark img {
      width: 32px;
      height: 32px;
      display: block;
    }

    .hero-wrap {
      padding-top: clamp(78px, 13vh, 126px) !important;
      padding-bottom: 20px !important;
    }

    .brand-hero-title {
      max-width: 100% !important;
      font-size: clamp(40px, 8vw, 74px) !important;
      line-height: .96 !important;
      white-space: nowrap;
      letter-spacing: 0 !important;
      text-shadow: none !important;
    }

    .home-search-card {
      width: min(500px, 100%) !important;
    }

    .btn-primary {
      background: linear-gradient(135deg, rgba(196,63,130,0.72), rgba(139,92,246,0.34)) !important;
      border-color: rgba(255,180,218,0.26) !important;
      box-shadow: 0 12px 26px rgba(196,63,130,0.16) !important;
    }

    .btn-primary:hover {
      filter: none !important;
      box-shadow: 0 16px 34px rgba(196,63,130,0.22) !important;
    }

    .prod-grid {
      grid-template-columns: repeat(auto-fill, minmax(245px, 1fr)) !important;
      gap: 20px !important;
    }

    .card-img {
      aspect-ratio: 1 / 1 !important;
    }

    .fav-dock {
      cursor: pointer;
    }

    @media (min-width: 1120px) {
      .prod-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
      }
    }

    @media (max-width: 760px) {
      .logo.logo-mark {
        width: 34px !important;
        height: 34px !important;
        margin-right: 4px !important;
      }

      .logo.logo-mark img {
        width: 29px;
        height: 29px;
      }

      .hero-wrap {
        padding-top: 62px !important;
        align-items: center !important;
        text-align: center !important;
      }

      .brand-hero-title {
        font-size: clamp(34px, 11vw, 48px) !important;
        white-space: nowrap;
        transform: scaleX(.94);
        transform-origin: center;
      }

      .home-search-card {
        font-size: 12.5px;
      }

      .prod-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
        gap: 13px !important;
      }

      .top-fav-btn {
        width: 34px;
        height: 34px;
      }
    }

    @media (max-width: 380px) {
      .brand-hero-title {
        font-size: 33px !important;
        transform: scaleX(.9);
      }
    }

    /* Fix mobile title clipping and right-edge background strip */
    :root,
    html,
    body {
      min-width: 0 !important;
      background: #090912 !important;
    }

    body {
      position: relative;
      overflow-x: clip;
    }

    @supports not (overflow-x: clip) {
      body { overflow-x: hidden; }
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(ellipse 70% 42% at 50% -10%, rgba(196,63,130,0.08), transparent 62%),
        radial-gradient(ellipse 46% 32% at 95% 20%, rgba(139,92,246,0.035), transparent 64%),
        #090912;
      pointer-events: none;
    }

    .amb {
      right: 0 !important;
      width: 100vw !important;
      max-width: 100vw !important;
      overflow: hidden !important;
    }

    nav,
    .site-content,
    footer {
      max-width: 100vw !important;
    }

    .brand-hero-title {
      display: block;
      width: 100%;
      max-width: calc(100vw - 28px) !important;
      overflow: visible !important;
      white-space: nowrap !important;
      text-align: center;
    }

    @media (max-width: 760px) {
      .brand-hero-title {
        font-size: clamp(29px, 10.4vw, 44px) !important;
        transform: none !important;
        letter-spacing: 0 !important;
      }
    }

    @media (max-width: 390px) {
      .brand-hero-title {
        font-size: clamp(27px, 9.7vw, 38px) !important;
      }
    }

    @media (max-width: 340px) {
      .brand-hero-title {
        font-size: 26px !important;
      }
    }

    /* Final mobile edge/title fix */
    html {
      scrollbar-width: none;
      background: #090912 !important;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
      width: 0;
      height: 0;
      background: #090912;
    }

    body {
      background: #090912 !important;
    }

    body::before {
      background:
        radial-gradient(ellipse 66% 38% at 48% -10%, rgba(196,63,130,0.065), transparent 62%),
        #090912 !important;
    }

    .amb {
      background:
        radial-gradient(ellipse 52% 34% at 8% 0%, rgba(196,63,130,0.045) 0%, transparent 66%) !important;
    }

    .nav-links {
      margin-right: 12px !important;
    }

    .top-fav-btn {
      margin-left: 8px !important;
    }

    .brand-hero-title {
      box-sizing: border-box;
      padding: 0 8px;
      margin-inline: auto;
      max-width: 100% !important;
      font-size: clamp(34px, 7.2vw, 68px) !important;
    }

    .brand-hero-title .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .brand-hero-svg {
      display: block;
      width: min(760px, calc(100vw - 36px));
      max-width: 100%;
      height: auto;
      margin: 0 auto;
      overflow: visible;
    }

    .brand-hero-title .brand-girls {
      color: transparent;
      background: linear-gradient(90deg, #ff7ab8 0%, #ff2e9f 56%, #c77dff 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    @media (max-width: 760px) {
      .brand-hero-title {
        position: relative;
        left: 50%;
        width: calc(100vw - 18px);
        max-width: calc(100vw - 18px) !important;
        padding: 0;
        text-align: center;
        transform: translateX(-50%) !important;
        transform-origin: center center;
        font-size: 0 !important;
        line-height: 1 !important;
      }

      .brand-hero-svg {
        width: 100%;
        max-width: 100%;
      }

      .nav-links {
        margin-right: 10px !important;
      }
    }

    @media (max-width: 390px) {
      .brand-hero-title {
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px) !important;
        transform: translateX(-50%) !important;
        font-size: 0 !important;
      }

      .brand-hero-svg {
        width: 100%;
        max-width: 100%;
      }
    }

    /* Product statuses, liked collection and shipping calculator */
    .top-calc-btn {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
      color: rgba(255,255,255,0.76);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.09);
      transition: color .18s, border-color .18s, background .18s, transform .18s;
    }

    .top-calc-btn:hover {
      color: #ffd37a;
      border-color: rgba(255,211,122,0.32);
      background: rgba(255,211,122,0.075);
      transform: translateY(-1px);
    }

    .top-ship-count {
      position: absolute;
      right: -3px;
      top: -4px;
      min-width: 17px;
      height: 17px;
      padding: 0 5px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 800;
      color: #090912;
      background: #ffd37a;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .ship-drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 430;
      background: rgba(0,0,0,0.52);
      opacity: 0;
      pointer-events: none;
      transition: opacity .22s;
    }

    .ship-drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .ship-drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 440;
      width: min(420px, calc(100vw - 22px));
      height: 100vh;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      background: rgba(10,10,18,0.97);
      border-left: 1px solid rgba(255,255,255,0.10);
      box-shadow: none;
      transform: translateX(104%);
      transition: transform .26s cubic-bezier(.22,1,.36,1);
      backdrop-filter: blur(22px);
      pointer-events: none;
      overflow: hidden;
    }

    .ship-drawer.open {
      transform: translateX(0);
      box-shadow: -24px 0 70px rgba(0,0,0,0.55);
      pointer-events: auto;
    }

    .ship-drawer-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .ship-drawer-title {
      color: #fff;
      font-size: 18px;
      font-weight: 850;
    }

    .ship-drawer-sub {
      margin-top: 4px;
      color: rgba(232,232,240,0.52);
      font-size: 12px;
      line-height: 1.45;
    }

    .ship-drawer-close {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      color: rgba(255,255,255,0.72);
      font-size: 20px;
      line-height: 1;
    }

    .ship-summary {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .ship-stat {
      min-width: 0;
      padding: 12px 10px;
      border-radius: 15px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .ship-stat-value {
      color: #fff;
      font-size: 15px;
      font-weight: 850;
      white-space: nowrap;
    }

    .ship-stat-label {
      margin-top: 3px;
      color: rgba(232,232,240,0.46);
      font-size: 10px;
      font-weight: 650;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .ship-note {
      padding: 11px 13px;
      border-radius: 14px;
      color: rgba(255,235,198,0.86);
      background: rgba(255,211,122,0.075);
      border: 1px solid rgba(255,211,122,0.16);
      font-size: 12px;
      line-height: 1.45;
    }

    .ship-note a {
      color: #ffe3a8;
      font-weight: 850;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .ship-search {
      width: 100%;
      min-height: 42px;
      padding: 0 13px;
      border-radius: 13px;
      color: var(--text);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      outline: none;
      font-size: 13px;
    }

    .ship-search:focus {
      border-color: rgba(255,211,122,0.30);
      box-shadow: 0 0 0 3px rgba(255,211,122,0.08);
    }

    .ship-mode-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .ship-mode {
      min-height: 36px;
      border-radius: 999px;
      color: rgba(232,232,240,0.56);
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 12px;
      font-weight: 750;
    }

    .ship-mode.active {
      color: #ffe3a8;
      background: rgba(255,211,122,0.11);
      border-color: rgba(255,211,122,0.24);
    }

    .ship-scroll {
      min-height: 0;
      overflow-y: auto;
      padding-right: 4px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .ship-scroll section {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ship-block-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 0;
      color: rgba(255,255,255,0.86);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .ship-mini-clear {
      color: rgba(255,122,184,0.82);
      background: transparent;
      border: 0;
      font-size: 11px;
      font-weight: 750;
    }

    .ship-picker-list,
    .ship-cart-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .ship-picker-item,
    .ship-cart-item {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px;
      border-radius: 14px;
      background: rgba(255,255,255,0.048);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text);
      text-align: left;
    }

    .ship-picker-item {
      cursor: pointer;
      transition: border-color .18s, background .18s, transform .18s;
    }

    .ship-picker-item:hover {
      transform: translateY(-1px);
      border-color: rgba(255,211,122,0.24);
      background: rgba(255,255,255,0.065);
    }

    .ship-thumb {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      object-fit: cover;
      flex-shrink: 0;
      background: rgba(255,255,255,0.06);
    }

    .ship-thumb-ph {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.34);
      background: rgba(255,255,255,0.06);
      font-size: 12px;
      font-weight: 800;
    }

    .ship-item-info {
      min-width: 0;
      flex: 1;
    }

    .ship-item-name {
      color: rgba(255,255,255,0.90);
      font-size: 12.5px;
      font-weight: 760;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ship-item-meta {
      margin-top: 2px;
      color: rgba(232,232,240,0.48);
      font-size: 11px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .ship-add-pill {
      flex-shrink: 0;
      padding: 6px 10px;
      border-radius: 999px;
      color: #ffe3a8;
      background: rgba(255,211,122,0.10);
      border: 1px solid rgba(255,211,122,0.20);
      font-size: 11px;
      font-weight: 800;
    }

    .ship-qty {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .ship-qty-btn {
      width: 27px;
      height: 27px;
      border-radius: 999px;
      color: rgba(255,255,255,0.82);
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.10);
      font-weight: 900;
    }

    .ship-qty-num {
      min-width: 18px;
      text-align: center;
      color: #fff;
      font-size: 12px;
      font-weight: 850;
    }

    .ship-empty {
      padding: 18px 14px;
      border-radius: 14px;
      color: rgba(232,232,240,0.46);
      background: rgba(255,255,255,0.035);
      border: 1px solid rgba(255,255,255,0.07);
      text-align: center;
      font-size: 12px;
      line-height: 1.5;
    }

    .ship-weight-note {
      color: rgba(232,232,240,0.42);
      font-size: 11px;
      line-height: 1.55;
    }

    .pack-toggle {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 3;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.78);
      background: rgba(10,8,16,0.50);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(18px) saturate(150%);
      box-shadow: 0 10px 24px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.16);
      transition: transform .18s, color .18s, border-color .18s, background .18s, box-shadow .18s;
    }

    .pack-toggle:hover {
      transform: translateY(-2px) scale(1.04);
      color: #ffd37a;
      border-color: rgba(255,211,122,0.36);
      box-shadow: 0 14px 30px rgba(255,211,122,0.10);
    }

    .product-status-row {
      position: absolute;
      left: 10px;
      bottom: 10px;
      z-index: 4;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      max-width: calc(100% - 20px);
      pointer-events: auto;
    }

    .sw-status-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 9px;
    }

    .product-status {
      position: relative;
      min-width: 28px;
      width: 28px;
      height: 28px;
      padding: 0;
      box-sizing: border-box;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      color: rgba(255,255,255,0.88);
      background: rgba(10,8,16,0.66);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 10px 22px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.12);
      backdrop-filter: blur(14px);
      font-size: 10px;
      font-weight: 900;
      line-height: 1;
      cursor: help;
      user-select: none;
      overflow: hidden;
      max-width: 28px;
      transition: max-width .22s cubic-bezier(.22,1,.36,1), padding .22s cubic-bezier(.22,1,.36,1), border-color .18s, background .18s, color .18s;
    }

    .product-status::after {
      content: attr(data-tip);
      position: absolute;
      left: 50%;
      bottom: calc(100% + 8px);
      transform: translateX(-50%) translateY(4px);
      opacity: 0;
      pointer-events: none;
      white-space: nowrap;
      padding: 7px 10px;
      border-radius: 9px;
      color: #fff;
      background: rgba(9,9,18,0.96);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 14px 34px rgba(0,0,0,0.42);
      font-size: 11px;
      font-weight: 800;
      transition: opacity .16s, transform .16s;
    }

    .product-status::after {
      display: none !important;
    }

    .status-icon {
      flex-shrink: 0;
      line-height: 1;
    }

    .status-text {
      display: inline-block;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      white-space: nowrap;
      transition: max-width .22s cubic-bezier(.22,1,.36,1), opacity .16s;
    }

    .product-status:hover::after,
    .product-status:focus-visible::after,
    .product-status.show-tip::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .product-status:hover,
    .product-status:focus-visible,
    .product-status.show-tip {
      width: auto;
      max-width: 132px;
      padding: 0 9px;
    }

    .product-status:hover .status-text,
    .product-status:focus-visible .status-text,
    .product-status.show-tip .status-text {
      max-width: 94px;
      opacity: 1;
    }

    .status-best {
      color: #ffe3a8;
      background: linear-gradient(135deg, rgba(255,211,122,0.20), rgba(255,255,255,0.045));
      border-color: rgba(255,211,122,0.34);
    }

    .status-budget {
      color: #91f3b4;
      background: linear-gradient(135deg, rgba(74,222,128,0.16), rgba(255,255,255,0.04));
      border-color: rgba(74,222,128,0.28);
    }

    .status-popular {
      color: #ff9fd1;
      background: linear-gradient(135deg, rgba(255,46,159,0.17), rgba(139,92,246,0.08));
      border-color: rgba(255,122,184,0.30);
    }

    .status-verified {
      color: #a9d5ff;
      background: linear-gradient(135deg, rgba(96,165,250,0.14), rgba(255,255,255,0.04));
      border-color: rgba(96,165,250,0.24);
    }

    .liked-collection {
      max-width: 1280px;
      width: 100%;
      margin: 4px auto 18px;
      padding: 0 clamp(16px,3vw,40px);
    }

    .liked-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
    }

    .liked-nav {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .liked-arrow {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.74);
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
      transition: color .18s, border-color .18s, background .18s, transform .18s;
    }

    .liked-arrow:hover {
      color: #ff9fd1;
      border-color: rgba(255,122,184,0.28);
      background: rgba(196,63,130,0.10);
      transform: translateY(-1px);
    }

    .liked-kicker {
      color: rgba(255,122,184,0.84);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: .11em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .liked-title {
      color: #fff;
      font-size: 18px;
      font-weight: 850;
    }

    .liked-sub {
      margin-top: 4px;
      color: rgba(232,232,240,0.50);
      font-size: 12.5px;
    }

    .liked-list {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(178px, 210px);
      gap: 12px;
      overflow-x: auto;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
      padding-bottom: 4px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .liked-list::-webkit-scrollbar {
      display: none;
    }

    .liked-card {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
      padding: 10px;
      border-radius: 18px;
      color: var(--text);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
      cursor: pointer;
      transition: transform .18s, border-color .18s, background .18s;
    }

    .liked-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255,122,184,0.28);
      background: rgba(255,255,255,0.055);
    }

    .liked-img {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 14px;
      overflow: hidden;
      background: #100c1a;
    }

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

    .liked-name {
      color: #fff;
      font-size: 12.5px;
      font-weight: 760;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .liked-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      color: rgba(232,232,240,0.48);
      font-size: 11px;
    }

    .liked-actions {
      display: flex;
      gap: 7px;
      margin-top: 1px;
    }

    .liked-action {
      flex: 1;
      min-height: 31px;
      border-radius: 10px;
      color: rgba(255,255,255,0.86);
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: 11px;
      font-weight: 800;
    }

    .liked-action.primary {
      color: #ffd6ea;
      background: rgba(196,63,130,0.24);
      border-color: rgba(255,122,184,0.20);
    }

    .sw-fav-pack {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      flex-shrink: 0;
      color: #ffe3a8;
      background: rgba(255,211,122,0.10);
      border: 1px solid rgba(255,211,122,0.20);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 900px) {
      .liked-list {
        grid-auto-columns: minmax(184px, 214px);
      }
    }

    @media (max-width: 760px) {
      .top-calc-btn {
        width: 34px;
        height: 34px;
      }

      .ship-drawer {
        width: min(390px, calc(100vw - 16px));
        padding: 16px;
      }

      .ship-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .ship-stat {
        padding: 10px 8px;
      }

      .ship-stat-value {
        font-size: 13px;
      }

      .product-status-row {
        left: 8px;
        bottom: 8px;
      }

      .product-status {
        height: 25px;
        min-width: 25px;
        padding: 0 8px;
        font-size: 9px;
      }

      .pack-toggle,
      .fav-toggle {
        width: 35px;
        height: 35px;
      }

      .liked-collection {
        margin-top: 2px;
        margin-bottom: 16px;
      }

      .liked-head {
        align-items: flex-end;
        flex-direction: row;
        gap: 10px;
      }

      .liked-sub {
        max-width: 250px;
      }

      .liked-arrow {
        width: 34px;
        height: 34px;
      }

      .liked-list {
        grid-auto-columns: minmax(154px, 44vw);
      }
    }

    @media (max-width: 600px) {
      .prod-top {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 9px;
      }
      .prod-top .sw { grid-column: 1 / -1; }
      .prod-top .filter-dock,
      .prod-top .fav-dock { width: 100%; min-width: 0; margin-left: 0; padding: 0 10px; }
      .filter-overlay { align-items: flex-end; padding: 0; }
      .filter-sheet { width: 100%; max-height: min(83svh, 690px); border-radius: 22px 22px 0 0; transform: translateY(100%); }
      .filter-overlay.open .filter-sheet { transform: translateY(0); }
      .filter-sheet-head { padding: 18px 16px 15px; }
      .filter-sheet-body { padding: 16px 16px 18px; }
      .filter-categories-section { display: none; }
      .filter-sheet-actions { padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
      .filter-category-list { gap: 7px; }
      .filter-cat { min-height: 40px; padding: 8px 11px; }
      .filter-summary { margin-bottom: 8px; }
      .welcome-offer { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: calc(100vw - 32px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .filter-overlay, .filter-sheet, .welcome-offer, .filter-dock, .filter-cat, .filter-reset, .filter-apply { transition-duration: .01ms !important; }
    }
