@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

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

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-disp: 'Manrope', sans-serif;

  --bg:        #f6f7fb;
  --surface:   #ffffff;
  --surface2:  #f0f2f8;
  --surface3:  #e8ebf4;
  --border:    #e2e5ef;
  --border2:   #cdd0e0;

  --text:      #0f1117;
  --text2:     #4b5068;
  --text3:     #9299b0;

  --blue:      #2563eb;
  --blue-dark: #1d4ed8;
  --blue-bg:   #eff4ff;
  --blue-glow: rgba(37,99,235,.16);

  --green:     #059669;
  --green-bg:  #ecfdf5;
  --red:       #dc2626;
  --red-bg:    #fef2f2;
  --amber:     #d97706;
  --amber-bg:  #fffbeb;
  --purple:    #7c3aed;

  --r-sm: 6px;  --r-md: 10px; --r-lg: 14px;
  --r-xl: 18px; --r-2xl: 24px; --r-3xl: 32px; --r-full: 9999px;

  --sh-xs: 0 1px 2px rgba(0,0,0,.05);
  --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --sh-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --sh-lg: 0 10px 40px rgba(0,0,0,.1),  0 4px 8px rgba(0,0,0,.05);
  --sh-xl: 0 24px 64px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
}

/* ─────────────────────────────────────────
   DARK MODE
───────────────────────────────────────── */
[data-theme="dark"] {
  --bg:       #0d0f18;
  --surface:  #141722;
  --surface2: #1a1e2e;
  --surface3: #1f2438;
  --border:   #252a40;
  --border2:  #2e3450;
  --text:     #f0f2fc;
  --text2:    #8890b0;
  --text3:    #525870;
  --blue-bg:  #0f1a38;
  --green-bg: #052016;
  --red-bg:   #1a0808;
  --amber-bg: #1a1200;
}
[data-theme="dark"] .navbar      { background: rgba(13,15,24,.95); border-color: var(--border); }
[data-theme="dark"] .trust-bar   { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .chip        { background: var(--surface); }
[data-theme="dark"] .tbl th      { background: var(--surface2); }
[data-theme="dark"] input, [data-theme="dark"] select, [data-theme="dark"] textarea {
  background: var(--surface2); color: var(--text); border-color: var(--border2);
}
[data-theme="dark"] .page-hero   { background: linear-gradient(160deg, #060814, #0c1228); }
[data-theme="dark"] .pcard       { background: var(--surface); }

/* ─────────────────────────────────────────
   BASE
───────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.6; }
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
h1,h2,h3,h4 { line-height: 1.2; letter-spacing: -.02em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ─────────────────────────────────────────
   ANNOUNCE BAR
───────────────────────────────────────── */
.announce-bar {
  background: var(--blue-dark); color: #fff;
  text-align: center; font-size: 12.5px; font-weight: 500;
  padding: 9px 16px; letter-spacing: .01em;
}
.announce-bar a { color: #93c5fd; font-weight: 700; margin-left: 5px; }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,247,251,.95);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 60px; transition: background .2s;
}
.navbar-inner { display: flex; align-items: center; gap: 14px; height: 100%; }

.logo {
  font-family: var(--font-disp); font-size: 20px; font-weight: 800;
  letter-spacing: -.04em; color: var(--text); white-space: nowrap; flex-shrink: 0;
}
.logo span { color: var(--blue); }
.logo sup {
  font-size: 7px; font-weight: 700; font-family: var(--font);
  background: var(--blue); color: #fff;
  padding: 1px 4px; border-radius: 4px;
  vertical-align: super; letter-spacing: 0;
}

.nav-search { flex: 1; max-width: 400px; position: relative; }
.nav-search input {
  width: 100%; padding: 9px 14px 9px 38px;
  border: 1.5px solid var(--border2); border-radius: var(--r-full);
  font-family: var(--font); font-size: 13.5px;
  background: var(--surface); outline: none; transition: .2s; color: var(--text);
}
.nav-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.nav-search .ico {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text3); pointer-events: none; font-size: 15px;
}
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 6px 12px; border-radius: var(--r-md);
  font-size: 13.5px; font-weight: 500; color: var(--text2); transition: .15s;
}
.nav-link:hover { background: var(--surface2); color: var(--text); }
.nav-link.active { background: var(--blue-bg); color: var(--blue); font-weight: 600; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--r-lg); font-size: 14px; font-weight: 600;
  font-family: var(--font); border: none; cursor: pointer;
  transition: all .18s ease; text-decoration: none; letter-spacing: -.01em;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 1px 2px rgba(37,99,235,.3); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.btn-dark    { background: var(--text); color: #fff; }
.btn-dark:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text2); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }
.btn-green   { background: var(--green); color: #fff; }
.btn-green:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--text3); }
.btn-ghost:hover { background: var(--surface2); color: var(--text); }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: var(--r-md); }
.btn-xs { padding: 5px 10px; font-size: 12px; border-radius: var(--r-sm); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 24px;
}
.card-hover { transition: transform .2s, box-shadow .2s, border-color .2s; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); border-color: var(--border2); }

/* ─────────────────────────────────────────
   PRODUCT GRID + CARDS
───────────────────────────────────────── */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 16px;
}

.pcard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden; display: block;
  position: relative; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .18s;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(37,99,235,.2);
}

/* Image area */
.pcard-img {
  position: relative; aspect-ratio: 1;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pcard-img img {
  max-width: 75%; max-height: 75%; object-fit: contain;
  transition: transform .35s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.07); }
.pcard-no-img { font-size: 40px; opacity: .35; }

/* Badges */
.pcard-disc {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--r-full); letter-spacing: .02em;
}
.pcard-badge-new {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: var(--blue); color: #fff;
  font-size: 9px; font-weight: 700; padding: 3px 8px;
  border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .06em;
}
.pcard-oos-overlay {
  position: absolute; inset: 0; z-index: 4;
  background: rgba(255,255,255,.82); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
}
.pcard-oos-overlay span {
  font-size: 10px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .1em;
}

/* Wishlist / compare */
.pcard-wish {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; cursor: pointer; transition: .18s;
  opacity: 0; box-shadow: var(--sh-xs);
}
.pcard:hover .pcard-wish,
.pcard-wish.wishlisted { opacity: 1; }
.pcard-wish:hover { background: var(--red-bg); border-color: var(--red); transform: scale(1.12); }

.pcard-compare {
  position: absolute; bottom: 10px; right: 10px; z-index: 5;
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,.9); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; cursor: pointer; transition: .18s; opacity: 0;
}
.pcard:hover .pcard-compare,
.pcard-compare.in-compare { opacity: 1; }
.pcard-compare.in-compare { background: var(--blue-bg); border-color: var(--blue); }

/* Card body */
.pcard-body       { padding: 13px 14px 15px; }
.pcard-brand      { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 4px; }
.pcard-name       { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 11px; }
.pcard-foot       { display: flex; align-items: flex-end; justify-content: space-between; }
.pcard-price-lbl  { font-size: 9px; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.pcard-price      { font-size: 16px; font-weight: 700; color: var(--green); letter-spacing: -.03em; line-height: 1; }
.pcard-was        { font-size: 11px; color: var(--text3); text-decoration: line-through; margin-top: 2px; }
.pcard-stores     { font-size: 11px; color: var(--text3); background: var(--surface2); border: 1px solid var(--border); padding: 3px 9px; border-radius: var(--r-full); white-space: nowrap; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  background: #07091a;
  position: relative; overflow: hidden;
}
/* Subtle gradient background */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(37,99,235,.45) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 90%, rgba(124,58,237,.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 55% 50%, rgba(5,150,105,.14) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
/* Orbs — subtle, not distracting */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(72px); }
.hero-orb-1 { width: 420px; height: 420px; background: rgba(37,99,235,.2);  top: -160px; left: -80px;  animation: orb-float 14s ease-in-out infinite; }
.hero-orb-2 { width: 320px; height: 320px; background: rgba(124,58,237,.16); bottom:-100px; right:-60px; animation: orb-float 18s ease-in-out infinite reverse; }
.hero-orb-3 { display:none; }
.hero-grain, .hero-particles { display: none; }
@keyframes orb-float { 0%,100% { transform:translate(0,0); } 50% { transform:translate(20px,-16px); } }

.hero-inner { position: relative; z-index: 1; padding: 88px 0 96px; text-align: center; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full); padding: 6px 16px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 28px;
}
.hero-pill-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.5);} }

.hero-h1 {
  font-family: var(--font-disp);
  font-size: clamp(38px, 5.5vw, 72px);
  color: #fff; line-height: 1.05; font-weight: 800; letter-spacing: -.04em;
  margin-bottom: 20px;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #34d399 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.45);
  max-width: 500px; margin: 0 auto 38px; line-height: 1.75;
}
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-lg);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  text-decoration: none; transition: all .2s; letter-spacing: -.01em;
}
.hero-cta-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.4); }
.hero-cta-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,.5); }
.hero-cta-ghost { background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.hero-cta-ghost:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }

.hero-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.hero-tag {
  font-size: 12px; color: rgba(255,255,255,.4);
  padding: 5px 14px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-full); text-decoration: none; transition: .18s;
}
.hero-tag:hover { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }

/* Floating product cards in hero */
.hero-floats { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.hf-card {
  position: absolute;
  background: rgba(255,255,255,.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
  padding: 11px 13px; display: flex; align-items: center; gap: 10px;
  width: 192px; pointer-events: all; cursor: pointer;
  transition: transform .28s ease, box-shadow .28s;
  animation: hf-float 7s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hf-card:hover { transform: scale(1.05) translateY(-4px) !important; box-shadow: 0 16px 40px rgba(0,0,0,.4); z-index: 2; }
.hf-img-wrap { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.08); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hf-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.hf-img-ph { font-size: 22px; }
.hf-info { min-width: 0; }
.hf-name  { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.hf-price { font-size: 12px; font-weight: 700; color: #4ade80; display: flex; align-items: center; gap: 4px; }
.hf-disc  { background: rgba(220,38,38,.22); color: #fca5a5; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 4px; }
.hf-1 { top:12%; left:2%;  animation-duration:7s;   animation-delay:0s;    }
.hf-2 { top:56%; left:1%;  animation-duration:8.5s; animation-delay:-3s;   }
.hf-3 { top:8%;  right:2%; animation-duration:6.5s; animation-delay:-1.5s; }
.hf-4 { top:53%; right:1%; animation-duration:8s;   animation-delay:-4.5s; }
.hf-5 { bottom:7%; left:33%; animation-duration:9s; animation-delay:-6s;   }
@keyframes hf-float { 0%,100%{transform:translateY(0) rotate(0);} 40%{transform:translateY(-10px) rotate(.4deg);} 70%{transform:translateY(5px) rotate(-.3deg);} }
@media(max-width:900px){ .hf-1,.hf-2,.hf-3,.hf-4,.hf-5{display:none;} }

.hero-stats { display: flex; justify-content: center; border-top: 1px solid rgba(255,255,255,.07); padding-top: 40px; }
.hstat { flex: 0 1 150px; text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.07); }
.hstat:last-child { border-right: none; }
.hstat-num { font-family: var(--font-disp); font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1; }
.hstat-lbl { font-size: 11px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; }

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 13px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text2); }
.trust-item span { font-size: 16px; }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding: 52px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; gap: 12px; }
.section-title { font-family: var(--font-disp); font-size: 22px; font-weight: 800; letter-spacing: -.04em; }
.section-sub   { font-size: 13px; color: var(--text3); margin-top: 4px; }
.section-link  { font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ─────────────────────────────────────────
   CHIPS
───────────────────────────────────────── */
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { padding: 7px 16px; border: 1.5px solid var(--border2); border-radius: var(--r-full); font-size: 13px; font-weight: 500; color: var(--text2); background: var(--surface); cursor: pointer; white-space: nowrap; transition: .15s; flex-shrink: 0; }
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ─────────────────────────────────────────
   BADGES
───────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: var(--r-full); }
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
.badge-green  { background: var(--green-bg);  color: var(--green);  } .badge-green::before  { background: var(--green); }
.badge-red    { background: var(--red-bg);    color: var(--red);    } .badge-red::before    { background: var(--red); }
.badge-amber  { background: var(--amber-bg);  color: var(--amber);  } .badge-amber::before  { background: var(--amber); }
.badge-gray   { background: var(--surface2);  color: var(--text3);  } .badge-gray::before   { background: var(--text3); }
.badge-blue   { background: var(--blue-bg);   color: var(--blue);   } .badge-blue::before   { background: var(--blue); }
.badge-purple { background: #f5f3ff;          color: var(--purple); } .badge-purple::before { background: var(--purple); }

/* ─────────────────────────────────────────
   FORMS
───────────────────────────────────────── */
input[type=text], input[type=email], input[type=url], input[type=password],
input[type=number], input[type=search], select, textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border2);
  border-radius: var(--r-lg); font-family: var(--font); font-size: 14px;
  background: var(--surface); color: var(--text); outline: none; transition: .18s;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
select { cursor: pointer; }
label { display: block; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--text3); margin-bottom: 6px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.filter-select { padding: 7px 13px; border: 1.5px solid var(--border2); border-radius: var(--r-full); font-family: var(--font); font-size: 13px; background: var(--surface); color: var(--text); outline: none; cursor: pointer; transition: .15s; width: auto; }
.filter-select:focus { border-color: var(--blue); }

/* ─────────────────────────────────────────
   PAGINATION
───────────────────────────────────────── */
.pag { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pag-btn { width: 38px; height: 38px; border: 1.5px solid var(--border2); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--text2); background: var(--surface); cursor: pointer; transition: .15s; }
.pag-btn:hover { border-color: var(--blue); color: var(--blue); }
.pag-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ─────────────────────────────────────────
   SPINNER
───────────────────────────────────────── */
.spinner { display: flex; justify-content: center; align-items: center; padding: 64px 0; }
.spin { width: 28px; height: 28px; border: 2.5px solid var(--border); border-top-color: var(--blue); border-radius: 50%; animation: spin .65s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp .38s ease forwards; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.reveal { opacity:0; transform:translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────
   STORE CARDS
───────────────────────────────────────── */
.store-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 20px; text-align: center; transition: .2s; }
.store-card:hover { border-color: rgba(37,99,235,.25); box-shadow: var(--sh-md); transform: translateY(-2px); }
.store-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: #fff; margin: 0 auto 10px; }

/* ─────────────────────────────────────────
   COUPON
───────────────────────────────────────── */
.coupon-card { background: var(--blue-bg); border: 1.5px dashed rgba(37,99,235,.3); border-radius: var(--r-xl); padding: 14px 18px; display: flex; align-items: center; gap: 14px; }
.coupon-code { font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--blue); background: #fff; border: 1.5px solid var(--border); padding: 5px 12px; border-radius: var(--r-md); cursor: pointer; transition: .15s; font-family: monospace; }
.coupon-code:hover { background: var(--blue-bg); }

/* ─────────────────────────────────────────
   DEAL BANNER
───────────────────────────────────────── */
.deal-banner { border-radius: var(--r-2xl); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; overflow: hidden; position: relative; }

/* ─────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────── */
.empty { text-align: center; padding: 72px 20px; }
.empty-icon  { font-size: 52px; margin-bottom: 16px; }
.empty-title { font-family: var(--font-disp); font-size: 20px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.03em; }
.empty-sub   { font-size: 14px; color: var(--text3); margin-bottom: 24px; }

/* ─────────────────────────────────────────
   MODAL
───────────────────────────────────────── */
.modal-bg { position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .2s; pointer-events: none; }
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal { background: var(--surface); border-radius: var(--r-3xl); padding: 32px; width: 100%; max-width: 500px; box-shadow: var(--sh-xl); transform: translateY(14px) scale(.98); transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.modal-bg.open .modal { transform: translateY(0) scale(1); }
.modal-title  { font-family: var(--font-disp); font-size: 20px; font-weight: 800; margin-bottom: 22px; letter-spacing: -.04em; }
.modal-footer { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }

/* ─────────────────────────────────────────
   ALERTS
───────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--r-lg); font-size: 13.5px; margin-bottom: 14px; }
.alert-info    { background: var(--blue-bg);   color: #1e3a8a; border: 1px solid #bfdbfe; }
.alert-success { background: var(--green-bg);  color: #14532d; border: 1px solid #bbf7d0; }
.alert-warn    { background: var(--amber-bg);  color: #78350f; border: 1px solid #fde68a; }
.alert-err     { background: var(--red-bg);    color: #7f1d1d; border: 1px solid #fecaca; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: #0a0c16; color: #fff; margin-top: 72px; }
.footer-inner { padding: 56px 0 32px; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-logo  { font-family: var(--font-disp); font-size: 22px; font-weight: 800; letter-spacing: -.04em; margin-bottom: 12px; }
.footer-logo span { color: #60a5fa; }
.footer-desc  { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 9px; transition: .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.4); transition: .18s; }
.footer-social a:hover { background: rgba(255,255,255,.08); color: #fff; }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); color: #fff; font-size: 13px; padding: 10px 13px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.25); }
.newsletter-form input:focus { border-color: rgba(37,99,235,.5); }
.newsletter-form button { background: var(--blue); color: #fff; border: none; border-radius: var(--r-lg); padding: 10px 16px; font-weight: 600; cursor: pointer; font-size: 13px; transition: .15s; white-space: nowrap; font-family: var(--font); }
.newsletter-form button:hover { background: var(--blue-dark); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero { background: linear-gradient(160deg, #07091a, #0d1535); color: #fff; padding: 60px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(37,99,235,.28), transparent); pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 { font-family: var(--font-disp); font-size: 42px; font-weight: 800; letter-spacing: -.05em; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,.5); margin-top: 10px; max-width: 520px; line-height: 1.7; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r-xl); margin-bottom: 8px; overflow: hidden; background: var(--surface); }
.faq-q { padding: 16px 20px; font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.faq-q:hover { background: var(--surface2); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--text2); font-size: 13.5px; line-height: 1.75; }
.faq-item.open .faq-a { padding: 4px 20px 18px; max-height: 500px; }
.faq-icon { font-size: 20px; color: var(--text3); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }

/* ─────────────────────────────────────────
   ADMIN
───────────────────────────────────────── */
.admin-wrap  { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; padding-top: 60px; }
.admin-aside { position: fixed; left: 0; top: 60px; bottom: 0; width: 230px; background: var(--surface); border-right: 1px solid var(--border); overflow-y: auto; padding: 16px 10px; scrollbar-width: thin; }
.aside-group { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text3); padding: 14px 10px 6px; }
.aside-item  { display: flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: var(--r-lg); font-size: 13px; font-weight: 500; color: var(--text2); cursor: pointer; transition: .12s; margin-bottom: 1px; }
.aside-item:hover  { background: var(--surface2); color: var(--text); }
.aside-item.active { background: var(--blue-bg); color: var(--blue); font-weight: 600; }
.admin-main  { grid-column: 2; padding: 32px; overflow-y: auto; }
.admin-pg    { display: none; }
.admin-pg.active { display: block; animation: fadeUp .3s ease; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; gap: 12px; flex-wrap: wrap; }
.page-title { font-family: var(--font-disp); font-size: 24px; font-weight: 800; letter-spacing: -.04em; }

/* ─────────────────────────────────────────
   TABLES
───────────────────────────────────────── */
.tbl-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); overflow: hidden; }
.tbl { width: 100%; border-collapse: collapse; }
.tbl th { text-align: left; padding: 12px 18px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); background: var(--surface2); border-bottom: 1px solid var(--border); }
.tbl td { padding: 13px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 13.5px; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover { background: var(--surface2); }

/* ─────────────────────────────────────────
   STAT CARDS
───────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 22px; }
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 10px; }
.stat-val   { font-family: var(--font-disp); font-size: 32px; font-weight: 800; letter-spacing: -.04em; }
.stat-sub   { font-size: 12px; color: var(--text3); margin-top: 5px; }

/* ─────────────────────────────────────────
   SETTINGS
───────────────────────────────────────── */
.setting-section { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 26px; margin-bottom: 16px; }
.setting-section h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stabs  { display: flex; gap: 4px; background: var(--surface2); border-radius: var(--r-xl); padding: 4px; margin-bottom: 24px; border: 1px solid var(--border); flex-wrap: wrap; }
.stab   { padding: 8px 16px; border-radius: var(--r-lg); font-size: 13px; font-weight: 500; color: var(--text2); cursor: pointer; transition: .15s; }
.stab.active { background: var(--surface); color: var(--text); box-shadow: var(--sh-xs); }
.pw-wrap   { position: relative; }
.pw-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text3); font-size: 14px; padding: 4px; }

/* ─────────────────────────────────────────
   LOGIN PAGE
───────────────────────────────────────── */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #07091a; background-image: radial-gradient(ellipse 80% 60% at 30% -10%, rgba(37,99,235,.4), transparent), radial-gradient(ellipse 60% 50% at 80% 110%, rgba(124,58,237,.25), transparent); }
.login-box  { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-3xl); padding: 40px; width: 100%; max-width: 380px; box-shadow: 0 40px 100px rgba(0,0,0,.5); }

/* ─────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────── */
.cmp-row { display: grid; grid-template-columns: 2fr 1.5fr 1fr auto; gap: 16px; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); transition: background .12s; }
.cmp-row:hover { background: var(--surface2); }
.cmp-row:last-child { border-bottom: none; }
.cmp-row.best { background: var(--green-bg); border-left: 3px solid var(--green); }

/* ─────────────────────────────────────────
   NEWSLETTER POPUP
───────────────────────────────────────── */
.nl-popup { position: fixed; bottom: 20px; right: 20px; background: var(--text); color: #fff; border-radius: var(--r-2xl); padding: 24px; width: 300px; box-shadow: var(--sh-xl); z-index: 150; transform: translateY(120%); transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.nl-popup.show { transform: translateY(0); }
.nl-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: rgba(255,255,255,.5); cursor: pointer; font-size: 18px; line-height: 1; }

/* ─────────────────────────────────────────
   TOAST
───────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 999; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast { background: #0f1117; color: #fff; padding: 11px 20px; border-radius: var(--r-xl); font-size: 14px; font-weight: 500; pointer-events: all; box-shadow: var(--sh-lg); animation: fadeUp .25s ease; border: 1px solid rgba(255,255,255,.1); }
.toast.success { background: var(--green); }
.toast.error   { background: var(--red); }

/* ─────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav-mobile-menu { display: none; background: var(--surface); border-top: 1px solid var(--border); padding: 14px; }
.nav-mobile-menu a { display: block; padding: 9px 14px; border-radius: var(--r-md); font-size: 14px; font-weight: 500; color: var(--text2); }
.nav-mobile-menu a:hover { background: var(--surface2); color: var(--text); }
.nav-mobile-menu.open { display: block; }

/* ─────────────────────────────────────────
   PRICE HISTORY / ALERT
───────────────────────────────────────── */
.price-alert-box { background: var(--green-bg); border: 1px solid #a7f3d0; border-radius: var(--r-xl); padding: 18px; text-align: center; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .admin-wrap   { grid-template-columns: 1fr; }
  .admin-aside  { display: none; }
  .admin-main   { grid-column: 1; padding: 16px; }
  .hstat        { flex: 1; padding: 0 12px; }
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }
}
@media (max-width: 640px) {
  .form-row        { grid-template-columns: 1fr; }
  .settings-grid   { grid-template-columns: 1fr; }
  .cmp-row         { grid-template-columns: 1fr 1fr; }
  .trust-inner     { gap: 18px; }
  .hero-h1         { font-size: 34px; }
  .footer-grid     { grid-template-columns: 1fr; }
  .hstat           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 14px 0; }
  .grid-products   { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }
  .page-hero h1    { font-size: 32px; }
}

/* ─────────────────────────────────────────
   TRUST TICKER (scrolling marquee)
───────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0; overflow: hidden; height: 44px;
}
.trust-ticker {
  display: flex; align-items: center;
  gap: 0; white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content; height: 44px;
}
.trust-ticker:hover { animation-play-state: paused; }
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text2);
  padding: 0 28px; border-right: 1px solid var(--border);
  height: 44px;
}
.trust-item span { font-size: 15px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SECTION TITLE ACCENT
───────────────────────────────────────── */
.section-title-accent { color: var(--blue); }

/* ─────────────────────────────────────────
   FLASH DEALS DARK BG — timer badge
───────────────────────────────────────── */
.deal-timer {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(220,38,38,.15); border: 1px solid rgba(220,38,38,.25);
  color: #f87171; font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full); letter-spacing: .02em;
}
.deal-timer-dot { width: 6px; height: 6px; background: #f87171; border-radius: 50%; animation: pulse 1.2s ease infinite; }

/* ─────────────────────────────────────────
   PRICE DROP CARD — homepage widget
───────────────────────────────────────── */
.pdrop-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.pdrop-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.pdrop-img { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--surface2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pdrop-img img { width: 100%; height: 100%; object-fit: contain; }
.pdrop-info { flex: 1; min-width: 0; }
.pdrop-name { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdrop-prices { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.pdrop-new  { font-size: 15px; font-weight: 700; color: var(--green); }
.pdrop-old  { font-size: 12px; color: var(--text3); text-decoration: line-through; }
.pdrop-badge { font-size: 11px; font-weight: 700; background: var(--red-bg); color: var(--red); padding: 2px 7px; border-radius: var(--r-full); }

/* ─────────────────────────────────────────
   CATEGORY CARDS (visual grid)
───────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 20px 14px;
  text-align: center; cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(37,99,235,.2); }
.cat-card-icon { font-size: 32px; line-height: 1; }
.cat-card-name { font-size: 12px; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.cat-card-count { font-size: 11px; color: var(--text3); }

/* ─────────────────────────────────────────
   COMPARE BAR (sticky bottom)
───────────────────────────────────────── */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--text); color: #fff;
  padding: 12px 20px; display: none; align-items: center; gap: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.compare-bar.visible { display: flex; }
.compare-bar-items { display: flex; gap: 8px; flex: 1; }
.compare-bar-slot {
  width: 48px; height: 48px; border-radius: var(--r-md);
  border: 2px dashed rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; background: rgba(255,255,255,.06); overflow: hidden;
  position: relative;
}
.compare-bar-slot img { width: 100%; height: 100%; object-fit: contain; }
.compare-bar-slot .rm { position: absolute; top:-4px; right:-4px; width:16px; height:16px; background:var(--red); border-radius:50%; font-size:9px; display:flex; align-items:center; justify-content:center; cursor:pointer; }

/* ─────────────────────────────────────────
   PRICE ALERT WIDGET
───────────────────────────────────────── */
.alert-widget {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #86efac; border-radius: var(--r-2xl);
  padding: 28px 32px; position: relative; overflow: hidden;
}
[data-theme="dark"] .alert-widget { background: linear-gradient(135deg, #052016, #07301e); border-color: #14532d; }
.alert-widget::before {
  content: '🔔'; position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  font-size: 72px; opacity: .1; pointer-events: none;
}

/* ─────────────────────────────────────────
   SEARCH PAGE — sidebar filter layout
───────────────────────────────────────── */
.search-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 64px;
  align-items: start;
}
.filter-sidebar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 20px;
  position: sticky; top: 72px;
}
.filter-sidebar-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text3); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.filter-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); margin-bottom: 10px; }
.filter-check { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; font-size: 13px; color: var(--text2); transition: color .15s; }
.filter-check:hover { color: var(--text); }
.filter-check input { accent-color: var(--blue); width: 14px; height: 14px; cursor: pointer; }
.filter-check span { flex: 1; }
.filter-check small { font-size: 11px; color: var(--text3); }
.range-slider { width: 100%; accent-color: var(--blue); }
.range-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--text3); margin-top: 6px; }

@media (max-width: 768px) {
  .search-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: none; }
  .filter-sidebar.mobile-open { display: block; }
}

/* ─────────────────────────────────────────
   SEARCH — top bar (no hero)
───────────────────────────────────────── */
.search-topbar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.search-topbar-inner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.search-topbar-filters {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 10px;
}

/* ─────────────────────────────────────────
   PRODUCT SKELETON LOADER
───────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--surface2) 25%, var(--surface3) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.4s ease infinite;
  border-radius: var(--r-md);
}
@keyframes skeleton-pulse {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.pcard-skeleton {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.pcard-skeleton .sk-img  { aspect-ratio:1; }
.pcard-skeleton .sk-body { padding: 13px 14px; }
.pcard-skeleton .sk-line { height: 12px; margin-bottom: 8px; border-radius: 6px; }
.pcard-skeleton .sk-line.w80 { width: 80%; }
.pcard-skeleton .sk-line.w50 { width: 50%; }
.pcard-skeleton .sk-line.w60 { width: 60%; }

/* ─────────────────────────────────────────
   RESULTS INFO BAR
───────────────────────────────────────── */
.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding: 12px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); gap: 12px; flex-wrap: wrap;
}
.results-count { font-size: 14px; font-weight: 600; color: var(--text); }
.results-count span { color: var(--blue); }
.sort-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.sort-pill {
  padding: 5px 13px; border: 1.5px solid var(--border2); border-radius: var(--r-full);
  font-size: 12px; font-weight: 600; color: var(--text2); cursor: pointer; transition: .15s;
}
.sort-pill:hover { border-color: var(--blue); color: var(--blue); }
.sort-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ─────────────────────────────────────────
   HOME — recently dropped prices widget
───────────────────────────────────────── */
.pdrop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

/* ─────────────────────────────────────────
   HOME — How it works steps
───────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; position: relative;
}
.how-step {
  text-align: center; padding: 28px 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); position: relative;
}
.how-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 16px; font-weight: 800; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: var(--font-disp);
}
.how-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--text3); line-height: 1.65; }
