:root {
    --blue:      #2563EB;
    --blue2:     #3B82F6;
    --blue3:     #60A5FA;
    --blue-dim:  rgba(37,99,235,0.07);
    --blue-mid:  rgba(37,99,235,0.14);
    --white:     #FFFFFF;
    --bg:        #F3F7FF;
    --bg2:       #FFFFFF;
    --bg3:       #EBF2FF;
    --text:      #0F172A;
    --textW:     #fff;
    --muted:     #64748B;
    --muted2:    #c1cdde;
    --border:    rgba(37,99,235,0.18);
    --border2:   rgba(0,0,0,0.07);
    --borderW:   rgba(255,255,255,0.15);
    --red:       #EF4444;
    --green:     #10B981;
    --radius:    8px;
    --rad-lg:    16px;
    --shadow:    0 4px 24px rgba(37,99,235,0.07);
    --shadow-hv: 0 20px 56px rgba(37,99,235,0.15);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.6; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  img { max-width: 100%; display: block; }
  input { font-family: inherit; }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #e8edf0; }
  ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* NOSCROLL */
.noscroll {
   overflow: hidden; scrollbar-gutter: stable;
}

body.nobodyscroll {
  overflow: hidden;
}

    /* ── TOPBAR ──────────────────────────────────────────────── */
    .topbar {
      background: #4287f5;
      color: #fff;
      text-align: center;
      padding: 8px 20px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.3px;
      position: relative;
    }
    .topbar span { opacity: 0.55; margin: 0 10px; }
    .topbar-close {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      color: rgba(255,255,255,.65); font-size: 18px; line-height: 1;
    }
    .topbar-close:hover { color: #fff; }

    /* ── HEADER ──────────────────────────────────────────────── */
    header{
    position:sticky;
    top:0;
    z-index:1000;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.25),
            rgba(255,255,255,0.18)
        );

    backdrop-filter:
        blur(16px)
        saturate(180%)
        brightness(1.04);

    -webkit-backdrop-filter:
        blur(16px)
        saturate(180%)
        brightness(1.04);

  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

    border-radius:0 0 24px 24px;

    box-shadow:
        0 12px 45px rgba(37,99,235,.12),
        inset 0 1px rgba(255,255,255,.65),
        inset 0 -1px rgba(255,255,255,.08);
}



header::before{
    content:"";
    position:absolute;
    inset:0;

    pointer-events:none;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.45),
            transparent 40%
        ),

        radial-gradient(
            circle at 80% -20%,
            rgba(255,255,255,.35),
            transparent 45%
        );

    mix-blend-mode:screen;
}

header::after{

    content:"";

    position:absolute;

    left:0;
    right:0;
    top:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.9),
            transparent
        );

    opacity:.9;
}

    .header-inner {
      max-width: 1440px; margin: 0 auto;
      padding: 0 28px;
      display: flex; align-items: center; gap: 24px; height: 68px;
    }
    .logo {
      flex-shrink: 0; display: flex; align-items: center; gap: 5px;
      box-shadow: none;
      background: none;

backdrop-filter:none;
-webkit-backdrop-filter:none;

border:1px solid rgba(255,255,255,.0);

box-shadow:
0 2px 12px rgba(0,0,0,.0),
inset 0 1px rgba(255,255,255,.0);
      border-radius: 200px; padding: 5px 10px;
    }

    .logo_dark {
      flex-shrink: 0; display: flex; align-items: center; gap: 5px;
      filter: brightness(0) invert(1); drop-shadow: 0 0 0 #000;
      /*background: #fff; border-radius: 200px; padding: 5px 10px;*/
    }
    .footerLogo {
      flex-shrink: 0; display: flex; align-items: center; gap: 5px; position: relative; bottom: 25px;
      /*background: #fff; border-radius: 200px; padding: 5px 10px;*/
    }
    .nav-main { display: flex; gap: 2px; }
    .nav-main a {
      background:
linear-gradient(
180deg,
rgba(255,255,255,.32),
rgba(255,255,255,.16)
);

backdrop-filter:blur(18px) saturate(170%);

-webkit-backdrop-filter:blur(18px) saturate(170%);

border:1px solid rgba(255,255,255,.25);

box-shadow:
0 2px 12px rgba(0,0,0,.08),
inset 0 1px rgba(255,255,255,.55);
        
      padding: 7px 14px; font-size: 13px; font-weight: 500;
      color: var(--muted); border-radius: 911px; transition: all .2s;
    }
    .nav-main a:hover { color: var(--text); background: var(--bg3); }
    .nav-main a.active {
      color: var(--blue); background: rgba(255, 255, 255, 0.5); border: 1px solid var(--blue); font-weight: 600;
    }

    .header-spacer { flex: 1; }
    .header-actions { display: flex; align-items: center; gap: 6px; }
    .search-bar { flex: 1; max-width: 420px; display: flex; align-items: center;
                 background:
linear-gradient(
180deg,
rgba(255,255,255,.32),
rgba(255,255,255,.16)
);

backdrop-filter:blur(18px) saturate(170%);

-webkit-backdrop-filter:blur(18px) saturate(170%);

border:1px solid rgba(255,255,255,.25);

box-shadow:
0 2px 12px rgba(0,0,0,.08),
inset 0 1px rgba(255,255,255,.55);
                 border: 1px solid var(--border2); border-radius: 100px; padding: 0 16px; gap: 8px; transition: border-color 0.2s; }
    .search-bar:focus-within { background: #fff; border: 1.5px solid #4287f5; }
    .search-bar input { background: none; border: none; outline: none; color: #000; font-size: 15px; font-weight: 600; flex: 1; padding: 9px 0; }
    .search-bar input::placeholder { color: rgba(0, 0, 0, 0.9); font-size: 14px; font-weight: 400; }
    .search-bar svg { width: 15px; height: 15px; fill: none; stroke: rgba(0, 0, 0, 0.7); stroke-width: 2; flex-shrink: 0; }

    .icon-btn {
      background:
linear-gradient(
180deg,
rgba(255,255,255,.32),
rgba(255,255,255,.16)
);

backdrop-filter:blur(18px) saturate(170%);

-webkit-backdrop-filter:blur(18px) saturate(170%);

border:1px solid rgba(255,255,255,.25);

box-shadow:
0 2px 12px rgba(0,0,0,.08),
inset 0 1px rgba(255,255,255,.55);
        
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid var(--border2); color: var(--muted);
    transition:
    transform .35s,
    box-shadow .35s,
    background .35s;
}
    .icon-btn:hover{
    transform:translateY(-2px);
    background:
    linear-gradient(

        180deg,

        rgba(255,255,255,.55),

        rgba(255,255,255,.30)

    );

    box-shadow:

        0 12px 30px rgba(0,0,0,.12),

        inset 0 1px rgba(255,255,255,.8);

}
    .icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .hd-badge {
      position: absolute; top: 1px; right: 1px;
      min-width: 17px; height: 17px;
      background: var(--blue); color: #fff;
      font-size: 9px; font-weight: 700; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      padding: 0 2px;
    }

    .btn-account {
      background: var(--blue); color: #fff;
      padding: 8px 20px; border-radius: 100px;
      font-size: 12px; font-weight: 600;
      display: flex; align-items: center; gap: 6px; transition: all .2s;
    }
    .btn-account:hover { background: var(--blue2); transform: translateY(-1px); }

    .header-profile { 
      width: 40px;
      height: 40px;
      background: #fff;
      border: 1px solid var(--bg3, var(--blue3));
      overflow: hidden;
      cursor: pointer;
      color: var(--blue3); padding: 3px/*18px 7px 7px*/;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px; 
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .header-profile:hover { 
      background: rgba(0, 0, 225, 0.2); color: #fff;
      transform: scale(1.05);
      box-shadow: 0 0 5px rgba(0, 0, 215, 0.3);
    }
    .header-profile img { 
      width: 30px; height: 30px; border-radius: 50%;
      background: transparent; color: var(--blue);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; flex-shrink: 0;
      filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,.5));
    }
    .headerAvatar { width: 70%; height: auto; display: block; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,.5)); }
    .header-profile:hover .acc-avatar { color: var(--blue); }

    /*.header-profile {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--bg3, #fff);
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      background-color: var(--2bg, #f2f4f7);
    }
    .header-profile:hover {
      transform: scale(1.05);
      box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
    }
    .header-profile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }*/

    .hidden {
      display: none !important;
    }

header.dark-glass{

    color:white;

}

header.dark-glass a,

header.dark-glass svg,

header.dark-glass button,

header.dark-glass input,

header.dark-glass .logo{

    color:white;

}

header.dark-glass svg{

    stroke:white;

}

header.dark-glass input::placeholder{

    color:rgba(255,255,255,.7);

}

    /* ── KEYFRAMES ────────────────────────────────────────────── */
    @keyframes fadeInUp   { from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)} }
    @keyframes fadeIn     { from{opacity:0}to{opacity:1} }
    @keyframes scaleIn    { from{opacity:0;transform:scale(.86)}to{opacity:1;transform:scale(1)} }
    @keyframes pulse-ring { 0%{box-shadow:0 0 0 0 var(--red-glow)}100%{box-shadow:0 0 0 14px transparent} }
    @keyframes pulse-blue { 0%{box-shadow:0 0 0 0 var(--blue-glow)}100%{box-shadow:0 0 0 12px transparent} }
    @keyframes orb1       { 0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(45px,-35px) scale(1.1)}66%{transform:translate(-30px,25px) scale(.92)} }
    @keyframes orb2       { 0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(-35px,25px) scale(.92)}66%{transform:translate(35px,-20px) scale(1.1)} }
    @keyframes dotDrift   { 0%{background-position:0 0}100%{background-position:56px 56px} }
    @keyframes flameFlicker{ 0%,100%{transform:scale(1) rotate(0)}25%{transform:scale(1.06) rotate(-2deg)}50%{transform:scale(.97) rotate(2deg)}75%{transform:scale(1.03) rotate(-1deg)} }
    @keyframes digitFlip  { 0%{opacity:0;transform:translateY(-10px) rotateX(60deg)}100%{opacity:1;transform:translateY(0) rotateX(0)} }
    @keyframes shimmerBar { 0%{background-position:-300px 0}100%{background-position:300px 0} }
    @keyframes bounce-badge{ 0%,100%{transform:translateY(0)}50%{transform:translateY(-3px)} }
    @keyframes lightning  { 0%,100%{opacity:1}50%{opacity:.5} }
    @keyframes progressGrow{ from{width:0}to{width:var(--tw)} }
    @keyframes ribbonWave { 0%,100%{transform:skewX(0)}50%{transform:skewX(-2deg)} }
    @keyframes ticketPop  { 0%{transform:scale(0) rotate(-8deg);opacity:0}70%{transform:scale(1.1) rotate(2deg)}100%{transform:scale(1) rotate(0);opacity:1} }
    @keyframes float1     { 0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)} }

    /* ── OFFERS HERO ─────────────────────────────────────────── */
    .offers-hero { background: var(--white); position:relative; overflow:hidden; padding:64px 28px 0; }
    .oh-grid  { position:absolute; inset:0; background-image:radial-gradient(circle,rgba(0,0,0,.1) 1px,transparent 1px); background-size:26px 26px; animation:dotDrift 16s linear infinite; opacity:.45; }
    .oh-orb1  { position:absolute; width:520px; height:520px; top:-200px; right:-140px; border-radius:50%; background:radial-gradient(circle,rgba(239,68,68,.18),transparent 70%); filter:blur(50px); animation:orb1 18s ease-in-out infinite; }
    .oh-orb2  { position:absolute; width:360px; height:360px; bottom:-160px; left:8%; border-radius:50%; background:radial-gradient(circle,rgba(96,165,250,.16),transparent 70%); filter:blur(50px); animation:orb2 15s ease-in-out infinite; }
    .oh-inner { max-width:1440px; margin:0 auto; position:relative; z-index:1; color:#000; }
    .oh-top   { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; padding-bottom:36px; }
    .oh-tag   { display:inline-flex; align-items:center; gap:8px; background:rgba(0,0,0,.12); border:1px solid rgba(0,0,0,.25); font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:6px 16px; border-radius:100px; margin-bottom:18px; animation:fadeInUp .6s var(--ease) backwards; }
    .oh-tag .flame { animation:flameFlicker 1.4s ease-in-out infinite; display:inline-block; }

    .oh-top h1 { color: #000; font-family: 'Marck Script', serif; font-size: 64px; line-height: 1.05; font-weight: 400; margin-bottom: 20px; }
    .oh-top h1 em { color: var(--blue); font-style: italic; }
    .oh-top p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 440px; margin-bottom: 36px; }

    /* countdown */
    .oh-countdown { display:flex; align-items:center; gap:14px; animation:scaleIn .6s var(--ease) .2s backwards; }
    .cd-label { font-size:11px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color:rgba(0,0,0,.65); margin-right:4px; }
    .cd-unit { background:rgba(0,0,0,.1); border:1px solid rgba(0,0,0,.2); border-radius:12px; padding:12px 16px; text-align:center; min-width:64px; backdrop-filter:blur(6px); }
    .cd-num { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:700; display:block; line-height:1; }
    .cd-digit { display:inline-block; animation:digitFlip .4s var(--ease); }
    .cd-lbl { font-size:9px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:rgba(0,0,0,.6); margin-top:3px; }
    .cd-sep { font-size:24px; font-weight:700; color:rgba(0,0,0,.4); }

    /* deal type chips */
    .deal-chips { display:flex; gap:10px; padding-bottom:28px; flex-wrap:wrap; }
    .dchip { display:flex; align-items:center; gap:8px; background:rgba(0,0,0,.08); border:1px solid rgba(0,0,0,.18); color:rgba(0,0,0,.85); padding:9px 18px; border-radius:100px; font-size:12.5px; font-weight:600; transition:all .25s var(--ease); cursor:pointer; }
    .dchip:hover { background:rgba(0,0,0,.16); transform:translateY(-2px); }
    .dchip.active { background:var(--blue); color:var(--white); border-color:#000; }
    .dchip .em { font-size:14px; }

    /* stats mini row */
    .oh-stats { display:flex; gap:40px; padding:20px 0 32px; border-top:1px solid rgba(0,0,0,.12); flex-wrap:wrap; }
    .ohs-item { display:flex; align-items:center; gap:10px; }
    .ohs-item strong { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700; display:block; line-height:1; }
    .ohs-item span { font-size:11px; color:rgba(0,0,0,.6); }

    /* ── MAIN LAYOUT ─────────────────────────────────────────── */
    .main-wrap { max-width:1440px; margin:0 auto; padding:40px 28px 90px; }

    /* toolbar */
    .toolbar { display:flex; align-items:center; gap:14px; margin-bottom:26px; padding:16px 20px; background:#fff; border:1px solid var(--border2); border-radius:var(--rad-lg); box-shadow:var(--shadow); flex-wrap:wrap; }
    .tb-search { flex:1; min-width:220px; display:flex; align-items:center; gap:9px; background:var(--bg); border:1px solid var(--border2); border-radius:100px; padding:0 16px; transition:border-color .2s; }
    .tb-search:focus-within { border-color:var(--blue); }
    .tb-search svg { width:15px; height:15px; fill:none; stroke:var(--muted); stroke-width:2; flex-shrink:0; }
    .tb-search input { flex:1; background:none; border:none; outline:none; padding:10px 0; font-size:13px; color:var(--text); }
    .tb-count { background:var(--blue-dim); color:var(--blue); padding:2px 12px; border-radius:100px; font-size:12px; font-weight:700; border:1px solid var(--border); white-space:nowrap; }
    .tb-sel { background:var(--bg); border:1px solid var(--border2); color:var(--text); padding:9px 32px 9px 14px; border-radius:100px; font-size:12.5px; outline:none; cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748b'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; transition:border-color .2s; }
    .tb-sel:focus { border-color:var(--blue); }

    /* section title */
    .sec-title-row { display:flex; align-items:baseline; justify-content:space-between; margin:36px 0 18px; }
    .sec-title-row:first-child { margin-top:0; }
    .sec-title { font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:700; display:flex; align-items:center; gap:10px; }
    .sec-title .em { font-size:22px; }
    .sec-sub { font-size:12px; color:var(--muted); }

    /* ── PRODUCT GRID ────────────────────────────────────────── */
    .offers-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

    .ocard {
      background:#fff; border:1px solid var(--border2); border-radius:var(--rad-lg); overflow:hidden;
      transition:all .35s var(--ease); cursor:pointer; position:relative; display:flex; flex-direction:column;
      animation:fadeInUp .5s var(--ease) backwards;
    }
    .ocard:hover { border-color:var(--border); transform:translateY(-6px); box-shadow:var(--shadow-hv); }
    .ocard:hover .oc-img { transform:scale(1.1); }
    .ocard:hover .oc-actions { opacity:1; transform:translateY(0); }

    .oc-img-wrap { position:relative; aspect-ratio:1; overflow:hidden; background:var(--bg3); flex-shrink:0; }
    .oc-img { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:68px; transition:transform .4s var(--ease); }

    .oc-disc-badge {
      position:absolute; top:12px; left:12px; z-index:2;
      background:var(--red); color:#fff; font-weight:800; font-size:13px;
      padding:6px 11px; border-radius:8px; box-shadow:0 4px 14px rgba(239,68,68,.4);
      animation:bounce-badge 1.8s ease-in-out infinite;
      display:flex; flex-direction:column; align-items:center; line-height:1;
    }
    .oc-disc-badge small { font-size:8px; font-weight:700; letter-spacing:.5px; opacity:.85; margin-top:1px; }

    .oc-type-badge { position:absolute; top:12px; right:12px; z-index:2; font-size:9px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; padding:4px 9px; border-radius:100px; color:#fff; }
    .oc-type-badge.flash { background:var(--red); display:flex; align-items:center; gap:4px; }
    .oc-type-badge.flash .lg { animation:lightning 1s ease-in-out infinite; }
    .oc-type-badge.daily { background:var(--amber); }
    .oc-type-badge.combo { background:var(--blue); }

    .oc-wish { position:absolute; bottom:12px; right:12px; z-index:2; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.9); border:1px solid var(--border2); display:flex; align-items:center; justify-content:center; transition:all .2s; backdrop-filter:blur(4px); }
    .oc-wish:hover, .oc-wish.on { background:#FEE2E2; border-color:var(--red); }
    .oc-wish svg { width:13px; height:13px; fill:none; stroke:var(--muted); stroke-width:2; }
    .oc-wish.on svg { stroke:var(--red); fill:var(--red); }

    .oc-actions { position:absolute; bottom:0; left:0; right:0; padding:12px; background:linear-gradient(transparent,rgba(235,242,255,.97)); opacity:0; transform:translateY(8px); transition:all .3s; display:flex; gap:7px; }
    .btn-oc-cart { flex:1; background:var(--blue); color:#fff; padding:9px; border-radius:var(--radius); font-weight:700; font-size:12px; display:flex; align-items:center; justify-content:center; gap:6px; transition:all .15s; }
    .btn-oc-cart:hover { background:var(--blue2); }
    .btn-oc-cart svg { width:12px; height:12px; fill:none; stroke:currentColor; stroke-width:2.5; }

    .oc-info { padding:14px; flex:1; display:flex; flex-direction:column; }
    .oc-cat { font-size:9.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--blue); margin-bottom:5px; }
    .oc-name { font-weight:500; font-size:13.5px; line-height:1.4; margin-bottom:8px; flex:1; }
    .oc-rating { display:flex; align-items:center; gap:5px; margin-bottom:9px; }
    .oc-stars { color:var(--amber); font-size:11px; }
    .oc-rcount { font-size:11px; color:var(--muted); }
    .oc-price-row { display:flex; align-items:baseline; gap:7px; margin-bottom:10px; }
    .oc-price { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:700; color:var(--red); }
    .oc-old { font-size:11.5px; color:var(--muted); text-decoration:line-through; }

    /* mini countdown per card */
    .oc-cd { display:flex; align-items:center; gap:5px; font-size:10.5px; color:var(--red); font-weight:700; margin-bottom:10px; }
    .oc-cd svg { width:11px; height:11px; fill:none; stroke:currentColor; stroke-width:2.5; }
    .oc-cd .oc-cd-time { font-variant-numeric:tabular-nums; }

    /* stock progress */
    .oc-stock-wrap { margin-top:auto; }
    .oc-stock-track { height:5px; background:var(--bg3); border-radius:100px; overflow:hidden; margin-bottom:5px; }
    .oc-stock-fill { height:100%; border-radius:100px; background:linear-gradient(90deg,var(--red),#F87171); width:0; animation:progressGrow 1.2s var(--ease) forwards; }
    .oc-stock-fill.warm { background:linear-gradient(90deg,var(--amber),#FBBF24); }
    .oc-stock-txt { font-size:10px; color:var(--muted); display:flex; justify-content:space-between; }
    .oc-stock-txt strong { color:var(--red); }

    /* empty state */
    .empty { grid-column:1/-1; text-align:center; padding:70px 20px; }
    .empty-ico { font-size:56px; margin-bottom:16px; }
    .empty h3 { font-family:'Cormorant Garamond',serif; font-size:26px; margin-bottom:8px; }
    .empty p { color:var(--muted); }
    .btn-clear { color:var(--blue); background:none; border:none; cursor:pointer; text-decoration:underline; font-size:13px; }

    /* ── NEWSLETTER / DEAL ALERT ─────────────────────────────── */
    .alert-section { margin-top:64px; background:linear-gradient(135deg,var(--blue) 0%,#1D4ED8 100%); border-radius:var(--rad-lg); padding:48px 40px; text-align:center; position:relative; overflow:hidden; color:#fff; }
    .alert-section::before { content:'⚡'; position:absolute; font-size:220px; opacity:.08; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; }
    .alert-section h2 { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:700; margin-bottom:10px; position:relative; z-index:1; }
    .alert-section p { font-size:14px; opacity:.85; max-width:440px; margin:0 auto 26px; line-height:1.7; position:relative; z-index:1; }
    .alert-form { display:flex; max-width:440px; margin:0 auto; border-radius:100px; overflow:hidden; background:#fff; position:relative; z-index:1; }
    .alert-form input { flex:1; border:none; outline:none; padding:14px 20px; font-size:13.5px; color:var(--text); }
    .alert-form button { background:var(--text); color:#fff; padding:14px 26px; font-weight:700; font-size:13px; white-space:nowrap; transition:background .2s; }
    .alert-form button:hover { background:#1E293B; }

    /* ── MODAL ───────────────────────────────────────────────── */
    .modal-ov { position:fixed; inset:0; background:rgba(0,0,0,.75); z-index:2500; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; pointer-events:none; transition:opacity .3s; backdrop-filter:blur(8px); }
    .modal-ov.on { opacity:1; pointer-events:all; }
    .modal { background:#fff; border-radius:var(--rad-lg); max-width:820px; width:100%; max-height:88vh; overflow-y:auto; display:grid; grid-template-columns:1fr 1fr; }
    .modal-img { background:var(--bg3); border-radius:var(--rad-lg) 0 0 var(--rad-lg); display:flex; align-items:center; justify-content:center; min-height:380px; position:relative; font-size:96px; }
    .mcls { position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:var(--radius); background:rgba(255,255,255,.9); border:1px solid var(--border2); display:flex; align-items:center; justify-content:center; color:var(--text); z-index:10; }
    .mcls:hover { border-color:var(--red); color:var(--red); }
    .mcls svg { width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; }
    .modal-info { padding:32px; display:flex; flex-direction:column; }
    .m-cat { font-size:10px; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
    .m-name { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:700; margin-bottom:14px; line-height:1.2; }
    .m-price-row { display:flex; align-items:baseline; gap:10px; margin-bottom:16px; }
    .m-price { font-family:'Cormorant Garamond',serif; font-size:34px; font-weight:700; color:var(--red); }
    .m-old { font-size:14px; color:var(--muted); text-decoration:line-through; }
    .m-disc { font-size:11px; font-weight:700; color:#fff; background:var(--red); padding:3px 8px; border-radius:4px; }
    .m-btns { display:flex; gap:10px; margin-top:auto; }
    .btn-madd { flex:1; background:var(--blue); color:#fff; padding:13px; border-radius:100px; font-weight:700; font-size:13px; display:flex; align-items:center; justify-content:center; gap:8px; transition:all .2s; }
    .btn-madd:hover { background:var(--blue2); }

    /* ── BTT ─────────────────────────────────────────────────── */
    .btt { position:fixed; bottom:28px; right:28px; width:44px; height:44px; background:var(--blue); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; z-index:500; opacity:0; transform:translateY(20px); transition:all .3s; }
    .btt.on { opacity:1; transform:translateY(0); }
    .btt:hover { background:var(--blue2); }
    .btt svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2.5; }
    
    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media(max-width:1280px){ .offers-grid{grid-template-columns:repeat(5,1fr);} }
    @media(max-width:1100px){ .oh-stats{gap:24px;} }
    @media(max-width:900px) { .offers-grid{grid-template-columns:repeat(4,1fr);} .oh-countdown{flex-wrap:wrap;} }
    @media(max-width:768px) { .offers-grid{grid-template-columns:repeat(3,1fr);} .oh-countdown{flex-wrap:wrap;}
      .nav-main{display:none;}
      .oh-top{flex-direction:column;align-items:flex-start;}
      .oh-top h1{font-size:36px;}
      .cd-unit{min-width:52px;padding:9px 11px;}
      .cd-num{font-size:22px;}
      .main-wrap{padding:24px 16px 70px;}
      .toolbar{padding:12px 14px;}
      .modal{grid-template-columns:1fr;max-height:85vh;}
      .modal-img{min-height:240px;border-radius:var(--rad-lg) var(--rad-lg) 0 0;}
      .cart-sb{width:100%;}
      .ft-inner{flex-direction:column;text-align:center;}
      .ft-links{justify-content:center;}
      .alert-form{flex-direction:column;border-radius:16px;}
      .alert-form input{text-align:center;}
    }
    @media(max-width:480px) { .offers-grid{grid-template-columns:1fr;} }
    @media(pointer:coarse) { .ocard:hover{transform:none;} .oc-actions{opacity:1;transform:none;position:static;background:none;padding:8px 0 0;} }

    /* ── SEARCH BOX ──────────────────────────────────────────── */
    .search-wrap { max-width: 700px; margin: 0 auto 22px; }
    .search-box {
      display: flex; align-items: center;
      background: #fff;
      border: 2px solid var(--border); border-radius: 100px;
      padding: 0 8px 0 24px; gap: 10px;
      transition: all .25s;
      box-shadow: 0 6px 28px rgba(37,99,235,.09);
    }
    .search-box:focus-within {
      border-color: var(--blue);
      box-shadow: 0 6px 36px rgba(37,99,235,.2);
    }
    .search-box svg {
      width: 18px; height: 18px; fill: none;
      stroke: var(--muted); stroke-width: 2; flex-shrink: 0;
      transition: stroke .2s;
    }
    .search-box:focus-within svg { stroke: var(--blue); }
    .search-box input {
      flex: 1; background: none; border: none; outline: none;
      font-size: 15px; color: var(--text); padding: 16px 0;
    }
    .search-box input::placeholder { color: var(--muted); }
    .btn-search {
      background: var(--blue); color: #fff;
      padding: 10px 26px; border-radius: 100px;
      font-weight: 600; font-size: 13px; white-space: nowrap;
      transition: all .2s; flex-shrink: 0;
    }
    .btn-search:hover { background: var(--blue2); }

    .quick-tags {
      display: flex; align-items: center; justify-content: center;
      gap: 8px; flex-wrap: wrap;
    }
    .qt-label { font-size: 12px; color: var(--muted); }
    .qt {
      background: var(--bg3); border: 1px solid var(--border);
      color: var(--blue); padding: 4px 13px; border-radius: 100px;
      font-size: 11px; font-weight: 500; cursor: pointer; transition: all .2s;
    }
    .qt:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

    /* ── CART SIDEBAR ────────────────────────────────────────── */
    .overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.5); z-index: 1999;
      opacity: 0; pointer-events: none;
      transition: opacity .3s; backdrop-filter: blur(4px);
    }
    .overlay.on { opacity: 1; pointer-events: all; }

    .cart-sb {
      position: fixed; right: 0; top: 0; bottom: 0; width: 420px;
      background: rgba(255, 255, 255, 0.75); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-left: 0px solid var(--border2);
      border-top-left-radius: 25px; border-bottom-left-radius: 25px;
      z-index: 2000; transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
    }
    .cart-sb.on { transform: translateX(0); }

    .cart-hd {
      padding: 24px; border-bottom: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: space-between;
    }
    .cart-hd h3 { font-family: 'Outfit'; font-size: 22px; font-weight: 500; }
    .cart-cls {
      width: 34px; height: 34px; border-radius: var(--radius);
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center; color: var(--muted);
    }
    .cart-cls:hover { border-color: var(--red); color: var(--red); }
    .cart-cls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

    .cart-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
    .cart-empty-st { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted); gap: 12px; }
    .cart-empty-st span { font-size: 48px; }

    .ci {
      background: rgba(255, 255, 255, 0.0); border: 1px solid rgba(0, 0, 0, 0.0);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border-radius: 12px; padding: 14px; display: flex; gap: 12px;
    }
    .ci-img {
      width: 60px; height: 60px; border-radius: 8px;
      background: rgba(0, 0, 0, 0.0); border: 1px solid rgba(0,0,0,0.0);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      display: flex; align-items: center;
      justify-content: center; font-size: 26px; flex-shrink: 0;
    }
    .ci-info { color: #000; flex: 1; min-width: 0; }
    .ci-name { color: #000; font-size: 13px; font-weight: 500; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .ci-price { font-family: 'Outfit', serif; font-size: 17px; font-weight: 500; color: var(--blue); }
    .ci-qty { color: #000; display: flex; align-items: center; gap: 8px; margin-top: 8px; }
    .qb {
      color: #000; width: 26px; height: 26px; border-radius: 6px;
      border: 1px solid rgba(0,0,0,0.5);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 600; transition: all .15s;
    }
    .qb:hover { border-color: var(--blue); color: var(--blue); }
    .qn { font-size: 13px; font-weight: 600; min-width: 22px; text-align: center; }
    .del {
      width: 28px; height: 28px; border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); align-self: flex-start;
    }
    .del:hover { color: var(--red); }
    .del svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

    .cart-ft { padding: 20px; border-top: 1px solid var(--border2); }
    .cart-tots { margin-bottom: 16px; }
    .ct-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
    .ct-row .lbl { color: var(--muted); }
    .ct-row.ttl { font-size: 15px; font-weight: 600; padding-top: 10px; border-top: 1px solid var(--border2); margin-top: 10px; }
    .ct-row.ttl .amt { font-family: 'Outfit', serif; font-size: 22px; color: var(--blue); }

    .btn-ckout {
      width: 100%; background: var(--blue); color: #fff;
      padding: 14px; border-radius: 100px;
      font-weight: 700; font-size: 14px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: all .2s; margin-bottom: 10px;
    }
    .btn-ckout:hover { background: var(--blue2); }
    .btn-cont {
      width: 100%; background: none; border: 1px solid rgba(0,0,0,0.1);
      color: var(--muted); padding: 11px; border-radius: 100px; font-size: 12px;
    }
    .btn-cont:hover { border-color: var(--blue); color: var(--blue); }

    .cart-item-towish {
      width: 28px; height: 28px; border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); align-self: flex-start;
    }
    .cart-item-towish:hover { color: var(--red); }
    .cart-item-towish svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; transition: all 0.2s; }
    .cart-item-towish.on svg { fill: var(--red); stroke: var(--red); }


    /* ── FAV SIDEBAR ─────────────────────────────────────────── */
    .fav-sb {
      position: fixed; right: 0; top: 0; bottom: 0; width: 420px;
      background: rgba(255, 255, 255, 0.75); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-left: 0px solid var(--border2);
      border-top-left-radius: 25px; border-bottom-left-radius: 25px;
      z-index: 2000; transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
    }
    .fav-sb.on { transform: translateX(0); }

    .fav-hd {
      padding: 24px; border-bottom: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: space-between;
    }
    .fav-hd h3 { font-family: 'Outfit'; font-size: 22px; font-weight: 500; }
    .fav-cls {
      width: 34px; height: 34px; border-radius: var(--radius);
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center; color: var(--muted);
    }
    .fav-cls:hover { border-color: var(--red); color: var(--red); }
    .fav-cls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

    .fav-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
    .fav-empty-st { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted); gap: 12px; }
    .fav-empty-st span { font-size: 48px; }


    .fav-ft { padding: 20px; border-top: 1px solid #fff; }
    .fav-tots { margin-bottom: 16px; }
    .ct-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
    .ct-row .lbl { color: var(--muted); }
    .ct-row.ttl { font-size: 15px; font-weight: 600; padding-top: 10px; border-top: 1px solid var(--border2); margin-top: 10px; }
    .ct-row.ttl .amt { font-family: 'Outfit', serif; font-size: 22px; color: var(--blue); }

    .btn-ckout {
      width: 100%; background: var(--blue); color: #fff;
      padding: 14px; border-radius: 100px;
      font-weight: 700; font-size: 14px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      transition: all .2s; margin-bottom: 10px;
    }
    .btn-ckout:hover { background: var(--blue2); }
    .btn-cont {
      width: 100%; background: none; border: 1px solid var(--border2);
      color: var(--muted); padding: 11px; border-radius: 100px; font-size: 12px;
    }
    .btn-cont:hover { border-color: var(--blue); color: var(--blue); }

    /* ── NOTIFICATION SIDEBAR ────────────────────────────────── */
    .notif-sb {
      position: fixed; right: 0; top: 0; bottom: 0; width: 350px;
      background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
      border-left: 0px solid var(--border2); padding: 10px;
      border-top-left-radius: 25px; border-bottom-left-radius: 25px;
      z-index: 2000; transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
    }
    .notif-sb.on { transform: translateX(0); }

    .notif-hd {
      padding-bottom: 20px; margin-bottom: 16px;
      padding: 10px; border-bottom: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: space-between;
    }
    .notif-hd h3 { font-family: 'Outfit'; font-size: 18px; font-weight: 500; }
    .notif-cls {
      width: 34px; height: 34px; border-radius: var(--radius);
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center; color: var(--muted);
    }
    .notif-cls:hover { border-color: var(--red); color: var(--red); }
    .notif-cls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

    .notif-body { 
      flex: 1; overflow-y: auto; padding: 8px; 
      display: flex; flex-direction: column; 
      gap: 12px;
    }
    .notif-empty-st { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted); gap: 12px; }
    .notif-empty-st span { font-size: 48px; }
    .notif-ft { padding: 20px 0px; border-top: 1px solid rgba(0, 0, 0, 0.2); position: absolute; bottom: 0; width: 90%; }

    /* ── MENU SIDEBAR ────────────────────────────────────────── */
    .more-sb {
      position: fixed; right: 0; top: 0; bottom: 0; width: 350px;
      background: rgba(255, 255, 255, 0.9); box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
      border-left: 0px solid var(--border2); padding: 10px;
      border-top-left-radius: 25px; border-bottom-left-radius: 25px;
      z-index: 2000; transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
      display: flex; flex-direction: column;
    }
    .more-sb.on { transform: translateX(0); }

    .more-hd {
      padding-bottom: 20px; margin-bottom: 16px;
      padding: 10px; border-bottom: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: space-between;
    }
    .more-hd h3 { font-family: 'Outfit'; font-size: 18px; font-weight: 500; }
    .more-cls {
      width: 34px; height: 34px; border-radius: var(--radius);
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center; color: var(--muted);
    }
    .more-cls:hover { border-color: var(--red); color: var(--red); }
    .more-cls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

    .more-body { 
      flex: 1; overflow-y: auto; padding: 8px; 
      display: flex; flex-direction: column; 
      gap: 0px; min-height: 0;
    }
    .more-empty-st { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted); gap: 12px; }
    .more-empty-st span { font-size: 48px; }

.btn-menu3 {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 95%; 
  background: transparent; 
  color: rgba(0, 0, 0, 0.7); 
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 14px; 
  border-radius: 16px; 
  transition: all .3s; 
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  left: 5px;
  gap: 12px;
}
.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}
.btn-title {
  font-weight: 600;
  font-size: 14px;
}
.btn-txt {
  font-weight: 400; 
  font-size: 11px; 
  color: rgba(0, 0, 0, 0.5); 
  margin: 0; 
  text-align: left;
}
.btn-arrow {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, color 0.3s;
}
/* ─────────────────────────────────────────────────── */
.btn-menu3:hover { 
  box-shadow: 0 4px 15px rgba(0, 0, 120, 0.2); 
  transform: scale(1.02); 
  background: rgba(255, 255, 255, 0.2); 
  border: 1px solid var(--blue); 
  color: var(--blue); 
}
.btn-menu3:hover .btn-txt {
  color: var(--blue);
  opacity: 0.8;
}
.btn-menu3:hover .btn-arrow {
  color: var(--blue);
  transform: translateX(4px); 
}

  .more-sb, 
  .cart-sb, 
  .notif-sb {
    z-index: 9999;
  }

/* ── ACC SIDEBAR ── */
.acc-sb {
  position: fixed; right: 0; top: 0; bottom: 0; width: 360px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.acc-sb.on { transform: translateX(0); }

.acc-hd {
  padding: 24px; border-bottom: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: space-between;
}
.acc-hd h3 { font-family: 'Outfit'; font-size: 20px; font-weight: 600; color: var(--text); }
.acc-cls {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.2s;
}
.acc-cls:hover { background: var(--red); color: #fff; border-color: var(--red); }
.acc-cls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.acc-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 25px; }

.acc-profile-summary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  padding: 24px; border-radius: 20px; display: flex; align-items: center; gap: 15px; color: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}
.acc-avatar-large {
  width: 60px; height: 60px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.3);
  overflow: hidden; background: #fff; flex-shrink: 0;
}
.acc-avatar-large img { width: 100%; height: 100%; object-fit: cover; }
.acc-info { display: flex; flex-direction: column; min-width: 0; }
.acc-info strong { font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.acc-info span { font-size: 12px; opacity: 0.8; overflow: hidden; text-overflow: ellipsis; }

.acc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: 1px; margin-bottom: 10px; padding-left: 5px; }
.acc-menu-group { display: flex; flex-direction: column; gap: 4px; }
.btn-acc-option {
  width: 100%; padding: 12px 15px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  background: transparent; color: var(--text);
  font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.btn-acc-option i { font-size: 16px; color: var(--blue); width: 20px; text-align: center; }
.btn-acc-option:hover { background: var(--blue-dim); color: var(--blue); transform: translateX(5px); }

.acc-ft { margin-top: auto; padding-top: 10px; }
.btn-logout-sb {
  width: 100%; padding: 14px; border-radius: 12px;
  background: #fff; color: var(--red); border: 1.5px solid #fee2e2;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 14px; transition: all 0.2s;
}
.btn-logout-sb:hover { background: var(--red); color: #fff; border-color: var(--red); }

@media (max-width: 480px) { .acc-sb { width: 100%; } }

 /* BACK TO TOP */
  .back-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 500; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.3s; border: none; }
  .back-top.visible { opacity: 1; transform: translateY(0); }
  .back-top:hover { background: var(--blue2); }
  .back-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }

  /* TOAST */
  .toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(80px); background: #10141a; border: 1px solid rgba(255,255,255,0.1); color: #e8edf5; padding: 12px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; z-index: 11000; display: flex; align-items: center; gap: 8px; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .toast-icon { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; }

  /* ── FOOTER ──────────────────────────────────────────────── */
  footer { background: #fff; border-top: 1px solid var(--border2); padding: 60px 24px 0; }
  .footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border2); }
  .footer-brand .logo { font-size: 24px; margin-bottom: 14px; }
  .footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
  .social-links { display: flex; gap: 8px; }
  .social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; transition: all 0.2s; }
  .social-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
  .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue); }
  .footer-bottom { max-width: 1400px; margin: 0 auto; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: var(--muted); }
  .payment-icons { display: flex; gap: 8px; }
  .pay-icon { background: #fff; border: 1px solid var(--border2); border-radius: 10px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--muted); }
