/* ═══════════════════════════════════════════════════════════════════════════
   CHHAYA MART — MIDNIGHT PREMIUM DESIGN SYSTEM v2
   Theme: Deep Space Black · Electric Cyan · Metallic Silver
   Icons: Lucide SVG (no emojis)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Fonts loaded via <link rel="preload"> in HTML — not here — to avoid render-blocking */
/* Fallbacks ensure text is always visible before fonts load */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  --bg-void:        #03030a;
  --bg-deep:        #06060f;
  --bg-base:        #08080f;
  --bg-surface:     #0c0c18;
  --bg-card:        rgba(12,12,24,0.85);
  --bg-glass:       rgba(255,255,255,0.03);
  --bg-glass-hover: rgba(255,255,255,0.06);

  --cyan:           #00d4ff;
  --cyan-dim:       #00a8cc;
  --cyan-glow:      rgba(0,212,255,0.35);
  --cyan-glow-lg:   rgba(0,212,255,0.18);
  --blue:           #4361ee;
  --blue-glow:      rgba(67,97,238,0.35);
  --purple:         #7209b7;
  --gold:           #ffd700;
  --red:            #ff3b30;
  --green:          #34c759;
  --orange:         #ff9f0a;

  --text-primary:   #f0f4ff;
  --text-secondary: #8892b0;
  --text-muted:     #4a5568;
  --silver:         #c8d6e5;

  --border-glass:   rgba(0,212,255,0.08);
  --border-active:  rgba(0,212,255,0.45);
  --border-card:    rgba(255,255,255,0.06);

  --shadow-card:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-glow:    0 0 40px rgba(0,212,255,0.25), 0 0 80px rgba(0,212,255,0.1);
  --shadow-btn:     0 4px 20px rgba(0,212,255,0.4);

  --font-display:   'Orbitron', sans-serif;
  --font-body:      'Inter', sans-serif;

  --ease-smooth:    cubic-bezier(0.4,0,0.2,1);
  --ease-bounce:    cubic-bezier(0.34,1.56,0.64,1);
  --ease-out:       cubic-bezier(0,0,0.2,1);
  --dur-fast:       0.2s;
  --dur-med:        0.35s;
  --dur-slow:       0.6s;

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  --nav-h:          72px;
  --notice-h:       40px;
  --container:      1280px;
}

/* ─── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
::selection { background: var(--cyan-glow); color: var(--cyan); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--cyan-dim); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--cyan); }

/* ─── LUCIDE ICON SYSTEM ────────────────────────────────────────────────── */
i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
i[data-lucide] svg {
  display: block;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-14 svg { width: 14px; height: 14px; }
.icon-16 svg { width: 16px; height: 16px; }
.icon-18 svg { width: 18px; height: 18px; }
.icon-20 svg { width: 20px; height: 20px; }
.icon-22 svg { width: 22px; height: 22px; }
.icon-24 svg { width: 24px; height: 24px; }
.icon-28 svg { width: 28px; height: 28px; }
.icon-32 svg { width: 32px; height: 32px; }
.icon-40 svg { width: 40px; height: 40px; }
.icon-48 svg { width: 48px; height: 48px; }

/* ─── UTILITY ───────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.glow-text {
  background: linear-gradient(90deg, var(--cyan) 0%, #7eb8ff 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 4s linear infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-hot  { background: rgba(255,59,48,0.15);  color: #ff6b63; border: 1px solid rgba(255,59,48,0.3); }
.badge-new  { background: rgba(0,212,255,0.12);  color: var(--cyan); border: 1px solid rgba(0,212,255,0.3); }
.badge-sale { background: rgba(255,159,10,0.15); color: var(--orange); border: 1px solid rgba(255,159,10,0.3); }

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur-med) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,255,0.55); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-active);
}
.btn-ghost:hover { background: var(--bg-glass); box-shadow: var(--shadow-glow); transform: translateY(-2px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.btn-sm  { padding: 10px 22px; font-size: 11px; }
.btn-lg  { padding: 18px 44px; font-size: 13px; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-full); }

/* Stars */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 12px; height: 12px; fill: currentColor; stroke: none; }
.stars svg.empty { fill: transparent; stroke: currentColor; stroke-width: 1.5; }

/* Section layout */
.section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-secondary); font-size: 17px; max-width: 560px; margin: 0 auto; }
.neon-line { height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0.3; }

/* ─── NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: var(--notice-h); left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-med), backdrop-filter var(--dur-med), box-shadow var(--dur-med), top var(--dur-med);
}
.navbar.scrolled {
  background: rgba(6,6,15,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border-glass), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon-wrap {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--cyan-glow);
  color: #fff;
}
.brand-icon-wrap svg { width: 20px; height: 20px; stroke-width: 2.5; }

.brand-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-primary);
}
.brand-text span { color: var(--cyan); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--dur-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); background: rgba(0,212,255,0.08); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-btn:hover { border-color: var(--border-active); background: rgba(0,212,255,0.08); box-shadow: 0 0 20px var(--cyan-glow); color: var(--cyan); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  background: var(--red);
  color: #fff;
  font-size: 10px; font-weight: 700;
  font-family: var(--font-display);
  border-radius: var(--radius-full);
  display: none;
  align-items: center; justify-content: center;
  padding: 0 4px;
}
.cart-count.visible { display: flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px; padding: 6px;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast);
  color: var(--text-primary);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-void);
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.hero-glow {
  position: absolute;
  top: 20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.08) 0%, rgba(67,97,238,0.05) 40%, transparent 70%);
  z-index: 1; pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  padding: calc(var(--notice-h) + var(--nav-h) + 40px) 24px 80px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 100%;
}

.hero-pre-tag {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-pre-tag::before, .hero-pre-tag::after {
  content: ''; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}
.hero-pre-tag::after { transform: scaleX(-1); }

.hero-title { font-family: var(--font-display); font-weight: 900; line-height: 1.05; margin-bottom: 28px; }
.hero-line-1 {
  display: block; font-size: clamp(16px, 2.5vw, 24px);
  color: var(--silver); letter-spacing: 0.4em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 8px;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 0.4s forwards;
}
.hero-line-2 {
  display: block; font-size: clamp(56px, 10vw, 130px);
  letter-spacing: -0.02em; line-height: 1;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 0.55s forwards;
}
.hero-line-3 {
  display: block; font-size: clamp(16px, 2.5vw, 24px);
  color: var(--silver); letter-spacing: 0.4em; text-transform: uppercase;
  font-weight: 500; margin-top: 8px;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 0.65s forwards;
}
.hero-tagline {
  font-size: clamp(15px, 2vw, 19px); color: var(--text-secondary);
  max-width: 560px; margin-bottom: 44px; line-height: 1.7;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 72px;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 0.95s forwards;
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeSlideUp 0.8s var(--ease-out) 1.1s forwards;
}
.hero-stat { text-align: center; position: relative; }
.hero-stat::after {
  content: ''; position: absolute; right: -24px; top: 50%;
  transform: translateY(-50%); width: 1px; height: 32px; background: var(--border-glass);
}
.hero-stat:last-child::after { display: none; }
.stat-num { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.scroll-mouse { width: 22px; height: 34px; border: 2px solid var(--text-muted); border-radius: 11px; position: relative; }
.scroll-dot {
  width: 4px; height: 4px; background: var(--cyan); border-radius: 50%;
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ─── MARQUEE ───────────────────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(67,97,238,0.05));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-secondary); white-space: nowrap; flex-shrink: 0;
}
.marquee-item svg { width: 14px; height: 14px; color: var(--cyan); }

/* ─── CATEGORIES ────────────────────────────────────────────────────────── */
.categories-section { padding: 100px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.category-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  transition: transform var(--dur-med) var(--ease-smooth), box-shadow var(--dur-med);
  border: 1px solid var(--border-card);
}
.category-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.5); }

.cat-bg {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cat-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.cat-icon-wrap {
  position: relative; z-index: 1;
  width: 80px; height: 80px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-med) var(--ease-bounce);
  backdrop-filter: blur(8px);
}
.cat-icon-wrap svg { width: 36px; height: 36px; stroke: #fff; opacity: 0.9; }
.category-card:hover .cat-icon-wrap { transform: scale(1.15) translateY(-4px); box-shadow: 0 0 30px rgba(255,255,255,0.15); }

.cat-info { background: var(--bg-surface); padding: 20px; border-top: 1px solid var(--border-card); }
.cat-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 4px; }
.cat-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px; }
.cat-count { font-family: var(--font-display); font-size: 11px; color: var(--cyan); font-weight: 600; letter-spacing: 0.1em; }

/* ─── PRODUCTS GRID ─────────────────────────────────────────────────────── */
.featured-section { padding: 100px 0; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }

/* ─── GAMING FOCUSED GRID (homepage all-in display) ─────────────────────── */
.gaming-full-grid {
  gap: 28px;
}
.gaming-full-grid .product-card {
  border-color: rgba(106,0,200,0.18);
}
.gaming-full-grid .product-card:hover {
  border-color: rgba(106,0,200,0.55);
  box-shadow: 0 12px 48px rgba(106,0,200,0.2), 0 0 0 1px rgba(106,0,200,0.3), 0 0 60px rgba(0,212,255,0.06);
  transform: translateY(-6px) scale(1.015);
}
.gaming-full-grid .product-image-area {
  height: 220px;
}
@media (max-width: 1200px) { .gaming-full-grid { gap: 20px; } .gaming-full-grid .product-image-area { height: 190px; } }
@media (max-width: 900px)  { .gaming-full-grid { gap: 16px; } .gaming-full-grid .product-image-area { height: 170px; } }
@media (max-width: 600px)  { .gaming-full-grid { gap: 12px; } .gaming-full-grid .product-image-area { height: 150px; } }

/* ─── PRODUCT CARD ──────────────────────────────────────────────────────── */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-med) var(--ease-smooth), border-color var(--dur-med), box-shadow var(--dur-med);
  position: relative; cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.12);
}
.product-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
  opacity: 0; transition: opacity var(--dur-med); pointer-events: none;
}
.product-card:hover::after { opacity: 1; }

.product-badge { position: absolute; top: 14px; right: 14px; z-index: 10; }

/* Product image area */
.product-image-area {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.product-image-area::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,255,255,0.08) 0%, transparent 65%);
  z-index: 1;
}
.product-image-area::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(to top, var(--bg-surface), transparent); z-index: 2;
}

/* Real product image */
.product-image-area img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  position: relative; z-index: 3;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.product-card:hover .product-image-area img { transform: scale(1.06) translateY(-4px); }

/* Placeholder (when no real image) */
.product-img-placeholder {
  position: relative; z-index: 3;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 20px;
  text-align: center;
}
.placeholder-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-slow) var(--ease-bounce), box-shadow var(--dur-med);
}
.placeholder-icon-wrap svg { width: 28px; height: 28px; stroke: var(--cyan); opacity: 0.85; }
.product-card:hover .placeholder-icon-wrap { transform: scale(1.1) translateY(-4px); box-shadow: 0 0 24px rgba(0,212,255,0.3); }

.placeholder-brand-label {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}
.placeholder-model-name {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 1.4; text-align: center; padding: 0 8px;
}

/* Product card body */
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-brand {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px;
}
/* h3 reset: product-name is rendered as <h3> for SEO heading structure */
h3.product-name, .product-name { font-size: 14px; font-weight: 600; color: var(--text-primary); line-height: 1.4; margin-bottom: 10px; flex: 1; font-family: var(--font-body); letter-spacing: normal; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.product-rating .review-count { font-size: 11px; color: var(--text-muted); }

.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-price {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800; color: var(--cyan); line-height: 1;
}
.product-price .currency { font-size: 13px; font-weight: 600; vertical-align: super; margin-right: 1px; }

.btn-cart {
  height: 38px; padding: 0 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--dur-fast); white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.btn-cart svg { width: 13px; height: 13px; stroke-width: 2.5; }
.btn-cart:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(0,212,255,0.5); }
.btn-cart.added { background: linear-gradient(135deg, #34c759, #20a744); }

.section-cta { text-align: center; margin-top: 16px; }

/* ─── HOW TO ORDER ──────────────────────────────────────────────────────── */
.order-section { padding: 100px 0; position: relative; overflow: hidden; }
.order-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(67,97,238,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.order-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.order-steps::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), var(--cyan), transparent);
  opacity: 0.2;
}
.order-step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.step-num {
  width: 72px; height: 72px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: all var(--dur-med);
}
.step-num svg { width: 28px; height: 28px; stroke: var(--cyan); }
.order-step:hover .step-num { box-shadow: 0 0 30px var(--cyan-glow); transform: scale(1.1); }
.step-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.05em; }
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.payment-info {
  margin-top: 64px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl); padding: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  backdrop-filter: blur(10px);
}
.payment-group h4 {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border-glass);
}
.payment-method {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.payment-method:last-child { border-bottom: none; }
.payment-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.payment-icon svg { width: 22px; height: 22px; }
.payment-method-name { font-weight: 600; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
.payment-method-detail { font-family: var(--font-display); font-size: 13px; color: var(--cyan); font-weight: 600; letter-spacing: 0.05em; }
.payment-method-sub { font-size: 12px; color: var(--text-secondary); }

/* ─── CONTACT STRIP ─────────────────────────────────────────────────────── */
.contact-strip {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(67,97,238,0.06));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 40px 0;
}
.contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0,212,255,0.08); border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 20px; height: 20px; stroke: var(--cyan); }
.contact-label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-value { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text-primary); }
.contact-value a { color: var(--cyan); transition: opacity var(--dur-fast); }
.contact-value a:hover { opacity: 0.8; }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border-glass); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass); background: var(--bg-glass);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { border-color: var(--border-active); color: var(--cyan); background: rgba(0,212,255,0.08); box-shadow: 0 0 15px var(--cyan-glow); }
.footer-col h5 { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-copy span { color: var(--cyan); }
.footer-credit { font-size: 12px; color: var(--text-muted); }
.footer-credit a { color: var(--silver); border-bottom: 1px solid rgba(200,214,229,0.25); padding-bottom: 1px; transition: color var(--dur-fast), border-color var(--dur-fast); }
.footer-credit a:hover { color: var(--cyan); border-color: rgba(0,212,255,0.5); }

/* ─── CART SIDEBAR ──────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity var(--dur-med);
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  z-index: 995; background: rgba(8,8,18,0.97);
  border-left: 1px solid var(--border-glass);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: 0.1em; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.cart-header h3 svg { width: 18px; height: 18px; stroke: var(--cyan); }
.cart-close { width: 36px; height: 36px; border-radius: var(--radius-full); border: 1px solid var(--border-glass); background: transparent; color: var(--text-secondary); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); }
.cart-close svg { width: 16px; height: 16px; }
.cart-close:hover { border-color: var(--border-active); color: var(--cyan); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 12px; color: var(--text-muted); font-size: 14px; }
.cart-empty-icon { width: 64px; height: 64px; border-radius: var(--radius-full); background: var(--bg-glass); border: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: center; }
.cart-empty-icon svg { width: 28px; height: 28px; stroke: var(--text-muted); }
.cart-item { display: flex; gap: 14px; padding: 16px; border-radius: var(--radius-md); background: var(--bg-glass); border: 1px solid var(--border-card); margin-bottom: 10px; }
.cart-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.cart-item-img-placeholder svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.5); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--cyan); }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: var(--radius-full); border: 1px solid var(--border-glass); background: transparent; color: var(--text-primary); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); }
.qty-btn svg { width: 12px; height: 12px; }
.qty-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.qty-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-remove { color: var(--text-muted); padding: 4px; border-radius: 4px; transition: color var(--dur-fast); align-self: flex-start; display: flex; align-items: center; justify-content: center; }
.cart-remove svg { width: 14px; height: 14px; }
.cart-remove:hover { color: var(--red); }
.cart-footer { padding: 24px; border-top: 1px solid var(--border-glass); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-total-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }
.cart-total-amount { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--cyan); }

/* ─── CHECKOUT MODAL ────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-med);
}
.modal-overlay.visible { opacity: 1; pointer-events: all; }
.checkout-modal {
  width: 100%; max-width: 540px;
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl); overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--dur-slow) var(--ease-bounce);
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.visible .checkout-modal { transform: scale(1) translateY(0); }
.modal-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 0.05em; }
.modal-header h3 span { color: var(--cyan); }
.modal-body { padding: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.form-input { width: 100%; background: var(--bg-glass); border: 1px solid var(--border-card); border-radius: var(--radius-md); padding: 14px 16px; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.form-input:focus { border-color: var(--border-active); box-shadow: 0 0 0 3px rgba(0,212,255,0.08); }
.form-input::placeholder { color: var(--text-muted); }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-opt { position: relative; }
.payment-opt input { position: absolute; opacity: 0; }
.payment-opt label { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 10px; border-radius: var(--radius-md); border: 1px solid var(--border-card); background: var(--bg-glass); cursor: pointer; transition: all var(--dur-fast); font-size: 12px; color: var(--text-secondary); text-align: center; }
.payment-opt label svg { width: 24px; height: 24px; }
.payment-opt input:checked + label { border-color: var(--border-active); background: rgba(0,212,255,0.08); color: var(--cyan); box-shadow: 0 0 20px rgba(0,212,255,0.15); }
.order-summary { background: var(--bg-glass); border: 1px solid var(--border-card); border-radius: var(--radius-md); padding: 16px; margin-bottom: 20px; max-height: 180px; overflow-y: auto; }
.summary-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.04); }
.summary-item:last-child { border-bottom: none; }
.summary-item strong { color: var(--text-primary); }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-glass); }
.summary-total span { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-secondary); }
.summary-total strong { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--cyan); }
.modal-footer { padding: 0 28px 28px; display: flex; flex-direction: column; gap: 10px; }
.success-panel { display: none; flex-direction: column; align-items: center; text-align: center; padding: 40px 28px; gap: 16px; }
.success-panel.visible { display: flex; }
.success-icon-wrap { width: 80px; height: 80px; border-radius: var(--radius-full); background: rgba(52,199,89,0.12); border: 1px solid rgba(52,199,89,0.3); display: flex; align-items: center; justify-content: center; animation: successPop 0.5s var(--ease-bounce); }
.success-icon-wrap svg { width: 40px; height: 40px; stroke: var(--green); }
.success-panel h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--green); }
.success-panel p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.success-info { margin-top: 8px; padding: 16px; background: var(--bg-glass); border-radius: var(--radius-md); border: 1px solid var(--border-glass); font-size: 13px; color: var(--text-secondary); line-height: 1.7; width: 100%; text-align: center; }
.success-info strong { color: var(--cyan); }

/* ─── PRODUCT DETAIL PAGE ───────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--notice-h) + var(--nav-h) + 48px) 0 48px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,212,255,0.04), transparent);
  position: relative;
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-glass), transparent); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 900; margin-bottom: 12px; }

.pdp-wrapper { padding: calc(var(--notice-h) + var(--nav-h) + 32px) 0 80px; }

.pdp-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 40px;
}
.pdp-breadcrumb a { color: var(--text-muted); transition: color var(--dur-fast); }
.pdp-breadcrumb a:hover { color: var(--cyan); }
.pdp-breadcrumb svg { width: 12px; height: 12px; flex-shrink: 0; }
.pdp-breadcrumb .current { color: var(--text-secondary); }

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* PDP Gallery */
.pdp-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.pdp-main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 16px;
}
.pdp-main-image img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 40px;
  transition: transform var(--dur-slow) var(--ease-smooth);
}
.pdp-main-image:hover img { transform: scale(1.04); }

.pdp-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.pdp-placeholder-icon {
  width: 120px; height: 120px;
  border-radius: var(--radius-full);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.pdp-placeholder-icon svg { width: 56px; height: 56px; stroke: var(--cyan); opacity: 0.7; }
.pdp-placeholder-brand { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.3em; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.pdp-placeholder-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.5); text-align: center; line-height: 1.4; padding: 0 20px; }

.pdp-thumbnails { display: flex; gap: 10px; }
.pdp-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  overflow: hidden; cursor: pointer;
  transition: border-color var(--dur-fast);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pdp-thumb.active { border-color: var(--border-active); box-shadow: 0 0 12px rgba(0,212,255,0.3); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.pdp-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pdp-thumb-placeholder svg { width: 24px; height: 24px; stroke: var(--text-muted); }

/* PDP Info */
.pdp-info { display: flex; flex-direction: column; gap: 0; }
.pdp-brand { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.pdp-name { font-family: var(--font-display); font-size: clamp(20px, 3vw, 30px); font-weight: 800; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px; }
.pdp-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pdp-review-count { font-size: 13px; color: var(--text-secondary); }
.pdp-price-row { margin-bottom: 24px; }
.pdp-price {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,212,255,0.4);
}
.pdp-price .pdp-currency { font-size: 24px; font-weight: 600; vertical-align: super; margin-right: 2px; }
.pdp-price-note { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }
.pdp-divider { height: 1px; background: var(--border-card); margin: 24px 0; }
.pdp-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; }

.pdp-key-specs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pdp-spec-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.pdp-spec-item svg { width: 16px; height: 16px; stroke: var(--cyan); flex-shrink: 0; }

.pdp-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pdp-qty-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }
.pdp-qty-ctrl { display: flex; align-items: center; gap: 12px; background: var(--bg-glass); border: 1px solid var(--border-card); border-radius: var(--radius-full); padding: 4px 16px; }
.pdp-qty-btn { width: 28px; height: 28px; border-radius: var(--radius-full); background: transparent; color: var(--text-primary); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); border: 1px solid transparent; }
.pdp-qty-btn svg { width: 14px; height: 14px; }
.pdp-qty-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.pdp-qty-num { font-family: var(--font-display); font-size: 18px; font-weight: 700; min-width: 32px; text-align: center; }

.pdp-cta { display: flex; flex-direction: column; gap: 12px; }
.pdp-payment-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.pdp-payment-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: var(--radius-full);
  border: 1px solid var(--border-glass); background: var(--bg-glass);
  font-size: 12px; color: var(--text-secondary);
}
.pdp-payment-badge svg { width: 14px; height: 14px; stroke: var(--cyan); }

/* PDP Specs Table */
.pdp-specs-section { padding: 60px 0; border-top: 1px solid var(--border-glass); }
.pdp-specs-section h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 28px; letter-spacing: 0.05em; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border-glass); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.specs-table td:first-child { width: 40%; color: var(--text-secondary); font-weight: 500; padding-right: 24px; }
.specs-table td:last-child { color: var(--text-primary); }

/* PDP Related Products */
.pdp-related { padding: 60px 0; border-top: 1px solid var(--border-glass); }
.pdp-related h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── FILTER BAR ────────────────────────────────────────────────────────── */
.filter-bar {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(6,6,15,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass); padding: 14px 0;
}
.filter-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 6px; flex: 1; overflow-x: auto; padding-bottom: 2px; }
.filter-tabs::-webkit-scrollbar { height: 0; }
.filter-tab {
  padding: 8px 18px; border-radius: var(--radius-full);
  border: 1px solid var(--border-card); background: transparent;
  color: var(--text-secondary); font-family: var(--font-display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer; transition: all var(--dur-fast); flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.filter-tab svg { width: 12px; height: 12px; }
.filter-tab:hover { color: var(--cyan); border-color: rgba(0,212,255,0.3); }
.filter-tab.active { background: linear-gradient(135deg, var(--cyan), var(--blue)); border-color: transparent; color: #fff; box-shadow: 0 0 20px rgba(0,212,255,0.3); }
.search-box { position: relative; flex-shrink: 0; }
.search-box input {
  width: 220px; background: var(--bg-glass);
  border: 1px solid var(--border-card); border-radius: var(--radius-full);
  padding: 8px 16px 8px 38px; color: var(--text-primary);
  font-size: 13px; font-family: var(--font-body); outline: none;
  transition: border-color var(--dur-fast);
}
.search-box input:focus { border-color: var(--border-active); }
.search-box input::placeholder { color: var(--text-muted); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.search-icon svg { width: 14px; height: 14px; stroke: var(--text-muted); }
.sort-select {
  background: var(--bg-glass); border: 1px solid var(--border-card);
  border-radius: var(--radius-full); padding: 8px 16px;
  color: var(--text-secondary); font-size: 12px; font-family: var(--font-display);
  outline: none; cursor: pointer; transition: border-color var(--dur-fast);
}
.sort-select:focus { border-color: var(--border-active); }
.sort-select option { background: var(--bg-surface); }

.catalog-section { padding: 48px 0 80px; }
.catalog-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.result-count { font-size: 13px; color: var(--text-secondary); }
.result-count strong { color: var(--cyan); font-family: var(--font-display); }
.no-results { grid-column: 1 / -1; text-align: center; padding: 80px 0; color: var(--text-muted); font-size: 15px; }
.no-results-icon { width: 80px; height: 80px; border-radius: var(--radius-full); background: var(--bg-glass); border: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.no-results-icon svg { width: 36px; height: 36px; stroke: var(--text-muted); }

/* ─── SCROLL TO TOP ─────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,212,255,0.4);
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: all var(--dur-med) var(--ease-smooth);
}
.scroll-top svg { width: 20px; height: 20px; stroke-width: 2.5; }
.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,212,255,0.55); }

/* ─── TOAST ─────────────────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast {
  background: rgba(12,12,24,0.95); border: 1px solid var(--border-active);
  border-radius: var(--radius-full); padding: 12px 24px;
  font-size: 13px; color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0,212,255,0.2), var(--shadow-card);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  animation: toastIn 0.3s var(--ease-bounce);
  backdrop-filter: blur(16px);
}
.toast svg { width: 15px; height: 15px; flex-shrink: 0; }
.toast.hide { animation: toastOut 0.3s var(--ease-smooth) forwards; }

/* ─── REVEAL ANIMATION ──────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── KEYFRAMES ─────────────────────────────────────────────────────────── */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes textShine { to { background-position: 200% center; } }
@keyframes heroGlowPulse { 0%,100%{opacity:1;transform:translateX(-50%) scale(1);} 50%{opacity:0.7;transform:translateX(-50%) scale(1.1);} }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);opacity:1;} 50%{transform:translateX(-50%) translateY(8px);opacity:0.4;} }
@keyframes marqueeScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
@keyframes toastIn { from{opacity:0;transform:translateY(16px) scale(0.92);} to{opacity:1;transform:translateY(0) scale(1);} }
@keyframes toastOut { to{opacity:0;transform:translateY(16px) scale(0.92);} }
@keyframes successPop { 0%{transform:scale(0);} 60%{transform:scale(1.15);} 100%{transform:scale(1);} }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp-layout { gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(6,6,15,0.97); backdrop-filter: blur(24px); padding: 24px; gap: 8px; border-bottom: 1px solid var(--border-glass); z-index: 899; }
  .nav-links.mobile-open a { padding: 12px 20px; border-radius: var(--radius-md); width: 100%; }
  .nav-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .order-steps { grid-template-columns: repeat(2, 1fr); }
  .order-steps::before { display: none; }
  .payment-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-inner { flex-direction: column; align-items: flex-start; }
  .pdp-layout { grid-template-columns: 1fr; gap: 40px; }
  .pdp-gallery { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-sidebar { width: 100%; max-width: 420px; }
}
@media (max-width: 600px) {
  :root { --nav-h: 62px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .order-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .section { padding: 60px 0; }
  .scroll-top { bottom: 16px; right: 16px; }
  .filter-inner { flex-direction: column; align-items: stretch; }
  .filter-tabs { flex-wrap: nowrap; overflow-x: auto; }
  .search-box input { width: 100%; }
  .pdp-price { font-size: 32px; }
  .pdp-qty-row { flex-direction: column; align-items: flex-start; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ─── TRUST SIGNALS ─────────────────────────────────────────────────────── */
.trust-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 16px; height: 16px; stroke: var(--cyan); }
.trust-item-text strong { display: block; font-size: 12px; font-weight: 700; font-family: var(--font-display); color: var(--text-primary); letter-spacing: 0.03em; }
.trust-item-text span { font-size: 11px; color: var(--text-secondary); }

/* ─── STOCK BADGE ───────────────────────────────────────────────────────── */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stock-badge.in-stock { background: rgba(52,199,89,0.12); color: var(--green); border: 1px solid rgba(52,199,89,0.3); }
.stock-badge.in-stock svg { width: 10px; height: 10px; stroke: var(--green); fill: var(--green); }

/* ─── STICKY MOBILE CTA ─────────────────────────────────────────────────── */
.pdp-mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(6,6,15,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.mobile-sticky-info { line-height: 1.2; }
.mobile-sticky-name { font-size: 12px; color: var(--text-secondary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 160px; }
.mobile-sticky-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--cyan); }
.mobile-sticky-actions { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 900px) {
  .pdp-mobile-sticky { display: flex; }
  .pdp-wrapper { padding-bottom: calc(var(--nav-h) + 100px); }
}

/* ─── ORDER TRACKING PAGE ───────────────────────────────────────────────── */
.tracking-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--notice-h) + var(--nav-h) + 32px) 24px 60px;
  position: relative;
}
.tracking-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.tracking-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-full);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.tracking-icon svg { width: 36px; height: 36px; stroke: var(--cyan); }
.tracking-card h2 { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.tracking-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 32px; }
.tracking-form { display: flex; flex-direction: column; gap: 16px; }
.tracking-result {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  text-align: left;
  display: none;
}
.tracking-result.visible { display: block; }
.tracking-result h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--cyan); margin-bottom: 12px; letter-spacing: 0.1em; }
.tracking-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--text-secondary);
}
.tracking-step:last-child { border-bottom: none; }
.tracking-step-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background: var(--text-muted);
}
.tracking-step.done .tracking-step-dot { background: var(--green); box-shadow: 0 0 8px rgba(52,199,89,0.5); }
.tracking-step.active .tracking-step-dot { background: var(--cyan); box-shadow: 0 0 8px rgba(0,212,255,0.5); animation: trackingPulse 1.5s ease-in-out infinite; }
.tracking-step.done, .tracking-step.active { color: var(--text-primary); }
@keyframes trackingPulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }
@keyframes skeletonPulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

/* ─── STOCK BADGE ───────────────────────────────────────────────────────── */
.stock-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.stock-in     { background: rgba(52,199,89,0.1);  color: var(--green); border: 1px solid rgba(52,199,89,0.25); }
.stock-low    { background: rgba(255,159,10,0.1);  color: var(--orange); border: 1px solid rgba(255,159,10,0.3); }
.stock-out    { background: rgba(255,59,48,0.08);  color: var(--red); border: 1px solid rgba(255,59,48,0.2); }
.stock-dot    { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: stockPulse 1.8s ease-in-out infinite; }
.stock-out .stock-dot { animation: none; }
@keyframes stockPulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

/* Card stock mini-badge */
.product-stock-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  display: inline-block;
}
.product-stock-tag.low  { background: rgba(255,159,10,0.12); color: var(--orange); }
.product-stock-tag.out  { background: rgba(255,59,48,0.1);  color: var(--red); }

/* ─── ORDER CONFIRMATION PAGE ────────────────────────────────────────────── */
.checkout-step {
  display: none;
}
.checkout-step.active {
  display: block;
}

.order-confirm-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}
.order-confirm-icon {
  width: 88px; height: 88px;
  border-radius: var(--radius-full);
  background: rgba(52,199,89,0.1);
  border: 2px solid rgba(52,199,89,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s var(--ease-bounce);
}
.order-confirm-icon svg { width: 40px; height: 40px; stroke: var(--green); }

.order-number-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin: 24px 0;
  display: inline-block;
}
.order-number-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 4px; }
.order-number-value { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--cyan); letter-spacing: 0.05em; }

.order-confirm-items {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
  text-align: left;
}
.order-confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.order-confirm-item:last-child { border-bottom: none; }
.order-confirm-item span { color: var(--text-secondary); }
.order-confirm-item strong { color: var(--cyan); font-family: var(--font-display); font-size: 13px; }

.confirm-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--border-glass);
}
.confirm-total-row .label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); }
.confirm-total-row .amount { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--cyan); }

/* Bkash/Nagad payment instructions */
.payment-instructions {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(67,97,238,0.06));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 16px 0;
  text-align: left;
}
.payment-instructions h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.payment-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.payment-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.payment-number-highlight {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ─── ORDER STATUS BADGE ─────────────────────────────────────────────────── */
.order-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.os-pending    { background: rgba(255,159,10,0.1);  color: var(--orange); border: 1px solid rgba(255,159,10,0.3); }
.os-confirmed  { background: rgba(0,212,255,0.1);   color: var(--cyan);   border: 1px solid rgba(0,212,255,0.3); }
.os-processing { background: rgba(108,99,255,0.1);  color: #a78bfa;       border: 1px solid rgba(108,99,255,0.3); }
.os-shipped    { background: rgba(67,97,238,0.1);   color: #818cf8;       border: 1px solid rgba(67,97,238,0.3); }
.os-delivered  { background: rgba(52,199,89,0.1);   color: var(--green);  border: 1px solid rgba(52,199,89,0.3); }
.os-cancelled  { background: rgba(255,59,48,0.08);  color: var(--red);    border: 1px solid rgba(255,59,48,0.2); }

.payment-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ps-pending  { background: rgba(255,159,10,0.08); color: var(--orange); }
.ps-paid     { background: rgba(52,199,89,0.1);   color: var(--green); }
.ps-failed   { background: rgba(255,59,48,0.08);  color: var(--red); }
.ps-refunded { background: rgba(108,99,255,0.1);  color: #a78bfa; }

/* ─── REVIEWS SECTION ────────────────────────────────────────────────────── */
.reviews-section { padding: 60px 0; border-top: 1px solid var(--border-glass); }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.reviews-header h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; }
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.reviews-avg {
  text-align: center;
  padding: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  min-width: 120px;
}
.reviews-avg-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--cyan); line-height: 1; }
.reviews-avg-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

.review-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.review-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--dur-fast);
}
.review-card:hover { border-color: var(--border-glass); }
.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.review-date { font-size: 11px; color: var(--text-muted); }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--green); text-transform: uppercase;
}
.verified-badge svg { width: 12px; height: 12px; }
.review-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.review-body { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* Review form */
.review-form-section {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-form-section h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 16px; }
.star-picker-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--bg-glass);
  color: var(--text-muted);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.star-picker-btn.active, .star-picker-btn:hover { background: rgba(255,215,0,0.12); border-color: var(--gold); color: var(--gold); }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .review-form-grid { grid-template-columns: 1fr; } }

/* ─── DIRECT CHECKOUT MODAL ──────────────────────────────────────────────── */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.progress-step.done  { color: var(--green); }
.progress-step.active { color: var(--cyan); }
.progress-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.progress-step.done .progress-dot  { background: rgba(52,199,89,0.15); border-color: rgba(52,199,89,0.4); color: var(--green); }
.progress-step.active .progress-dot{ background: rgba(0,212,255,0.12); border-color: rgba(0,212,255,0.4); color: var(--cyan); }
.progress-line { width: 40px; height: 1px; background: var(--border-card); flex-shrink: 0; }
.progress-line.done { background: var(--green); opacity: 0.4; }

/* Whatsapp support float button */
.wa-support-float {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 490;
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all var(--dur-med) var(--ease-smooth);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
.wa-support-float.visible { opacity: 1; pointer-events: all; transform: scale(1); }
.wa-support-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.wa-support-float svg { width: 26px; height: 26px; }

.wa-tooltip {
  position: absolute;
  right: 60px; top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,18,0.95);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid var(--border-glass);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.wa-support-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   ELITE BRAND UPGRADE — New Sections & Design Refinements
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── SPACING UPGRADE ────────────────────────────────────────────────────── */
/* Increase breathing room on all major sections */
.section,
.categories-section,
.featured-section,
.order-section { padding: 140px 0; }

@media (max-width: 900px) {
  .section,
  .categories-section,
  .featured-section,
  .order-section { padding: 80px 0; }
}

/* ─── SECTION TAG — SILVER VARIANT ──────────────────────────────────────── */
/* Primary: cyan. Secondary: silver for non-lead sections */
.section-tag.silver { color: var(--silver); letter-spacing: 0.3em; }

/* ─── SECTION TITLE WEIGHT REFINEMENT ───────────────────────────────────── */
/* Reserve 800 for hero only; secondary sections at 700 */
.categories-section .section-title,
.order-section .section-title { font-weight: 700; }

/* ─── PRODUCT CARD — PRICE REFINEMENT ───────────────────────────────────── */
/* Price on catalog cards → white instead of cyan; cyan reserved for PDP only */
.products-grid .product-price { color: var(--text-primary); }
.pdp-price { color: var(--cyan); } /* Keep cyan on PDP */

/* ─── STEP CONNECTOR LINE — MAKE IT VISIBLE ─────────────────────────────── */
.order-steps::before {
  opacity: 0.4;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), var(--cyan), transparent);
}

/* ─── TRUST PILLARS STRIP ────────────────────────────────────────────────── */
.trust-pillars {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 44px 0;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

.trust-pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,214,229,0.06);
  border: 1px solid rgba(200,214,229,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-med), border-color var(--dur-med);
}
.trust-pillar-icon svg { width: 22px; height: 22px; stroke: var(--silver); transition: stroke var(--dur-fast); }
.trust-pillar:hover .trust-pillar-icon { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.2); }
.trust-pillar:hover .trust-pillar-icon svg { stroke: var(--cyan); }

.trust-pillar-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}
.trust-pillar-text span { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

@media (max-width: 900px) { .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .trust-pillars-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ─── BRAND STATEMENT ────────────────────────────────────────────────────── */
.brand-statement {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-void) 0%, rgba(0,212,255,0.025) 50%, var(--bg-void) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-statement::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(67,97,238,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.brand-statement-inner { position: relative; z-index: 1; }

.brand-statement-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.brand-statement-label::before,
.brand-statement-label::after {
  content: '';
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver));
}
.brand-statement-label::after { transform: scaleX(-1); }

.brand-statement-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  max-width: 720px;
  margin: 0 auto 20px;
}

.brand-statement-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 56px;
}

.brand-stats-row {
  display: flex;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.brand-stat-item { text-align: center; position: relative; }
.brand-stat-item::after {
  content: '';
  position: absolute;
  right: -32px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 36px;
  background: var(--border-glass);
}
.brand-stat-item:last-child::after { display: none; }

.brand-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.brand-stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

@media (max-width: 600px) {
  .brand-stats-row { gap: 32px; }
  .brand-stat-item::after { display: none; }
  .brand-statement { padding: 80px 0; }
}

/* ─── GUARANTEE SECTION ──────────────────────────────────────────────────── */
.guarantee-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.guarantee-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.guarantee-point:hover { border-color: var(--border-glass); background: var(--bg-glass-hover); }
.guarantee-point svg { width: 18px; height: 18px; stroke: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.guarantee-point strong { color: var(--text-primary); display: block; font-weight: 600; margin-bottom: 4px; }

.guarantee-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.guarantee-badge {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.2);
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  animation: guaranteePulse 5s ease-in-out infinite;
}
.guarantee-badge::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.08);
}
.guarantee-badge::after {
  content: '';
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.04);
}
.guarantee-badge svg { width: 48px; height: 48px; stroke: var(--cyan); opacity: 0.85; }
.guarantee-badge-text {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.08em;
}
.guarantee-badge-sub {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes guaranteePulse { 0%,100%{box-shadow:0 0 40px rgba(0,212,255,0.06);} 50%{box-shadow:0 0 70px rgba(0,212,255,0.14);} }

@media (max-width: 900px) {
  .guarantee-inner { grid-template-columns: 1fr; gap: 48px; }
  .guarantee-visual { display: none; }
  .guarantee-section { padding: 80px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DELIVERY NOTICE BAR — Premium Animated v2
   ═══════════════════════════════════════════════════════════════════════════ */

.delivery-notice-bar {
  position: sticky;
  top: 0; left: 0; right: 0;
  height: var(--notice-h);
  z-index: 970;
  overflow: hidden;
  background: linear-gradient(135deg,
    #020215 0%, #03032a 30%, #04043a 50%, #03032a 70%, #020215 100%
  );
  border-bottom: 1px solid rgba(0,212,255,0.22);
  display: flex;
  align-items: center;
}

/* Animated light sweep */
.dnb-scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,212,255,0.025) 25%,
    rgba(0,212,255,0.10) 50%,
    rgba(0,212,255,0.025) 75%,
    transparent 100%
  );
  animation: dnbScan 7s cubic-bezier(0.4,0,0.6,1) infinite;
  pointer-events: none;
}

/* Bottom accent line */
.delivery-notice-bar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,212,255,0.15) 10%,
    rgba(0,212,255,0.65) 35%,
    rgba(67,97,238,1) 50%,
    rgba(0,212,255,0.65) 65%,
    rgba(0,212,255,0.15) 90%,
    transparent 100%
  );
  animation: dnbGlowLine 3.5s ease-in-out infinite;
}

/* Top micro-border */
.delivery-notice-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.12), transparent);
}

.delivery-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,214,229,0.78);
  white-space: nowrap;
  overflow: hidden;
}

.dnb-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--cyan);
  filter: drop-shadow(0 0 5px rgba(0,212,255,0.65));
  animation: dnbTruck 3.5s ease-in-out infinite;
}
.dnb-icon svg { display: block; }

.dnb-sep {
  width: 4px; height: 4px;
  background: rgba(0,212,255,0.5);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.dnb-text { color: rgba(200,214,229,0.78); }

.dnb-free {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: 4px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--cyan);
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(0,212,255,0.5);
}

@keyframes dnbScan {
  0%   { left: -38%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 138%; opacity: 0; }
}
@keyframes dnbGlowLine {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}
@keyframes dnbTruck {
  0%,  100% { transform: translateX(0);    filter: drop-shadow(0 0 4px rgba(0,212,255,0.5)); }
  25%        { transform: translateX(5px); filter: drop-shadow(0 0 10px rgba(0,212,255,1)); }
  55%        { transform: translateX(5px); filter: drop-shadow(0 0 10px rgba(0,212,255,1)); }
  80%        { transform: translateX(0);   filter: drop-shadow(0 0 4px rgba(0,212,255,0.5)); }
}

@media (max-width: 600px) {
  :root { --notice-h: 36px; }
  .delivery-notice-bar { height: var(--notice-h); }
  .delivery-notice-inner { font-size: 9px; gap: 7px; letter-spacing: 0.12em; }
  .dnb-free { display: none; }
  .dnb-sep:last-of-type { display: none; }
}
@media (max-width: 380px) {
  .dnb-text { font-size: 9px; letter-spacing: 0.06em; }
}

/* ─── GAMING CATEGORY — FEATURED HIGHLIGHT ───────────────────────────────── */
.cat-gaming-featured {
  border-color: rgba(106,0,200,0.45) !important;
  box-shadow: 0 0 0 1px rgba(106,0,200,0.25), 0 8px 40px rgba(106,0,200,0.25), inset 0 0 30px rgba(106,0,200,0.06);
  position: relative;
  z-index: 1;
}
.cat-gaming-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(106,0,200,0.35), rgba(0,212,255,0.12), rgba(106,0,200,0.2));
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-med);
}
.cat-gaming-featured:hover::before { opacity: 1; }
.cat-gaming-featured:hover {
  transform: translateY(-12px) scale(1.04) !important;
  box-shadow: 0 0 0 1px rgba(106,0,200,0.6), 0 20px 60px rgba(106,0,200,0.4), 0 0 80px rgba(106,0,200,0.2), var(--shadow-glow) !important;
}

.cat-featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(106,0,200,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(106,0,200,0.7);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4aaff;
  z-index: 2;
}
.cat-gaming-featured .cat-bg {
  height: 220px !important;
}
.cat-gaming-featured .cat-info {
  border-top-color: rgba(106,0,200,0.3) !important;
  background: linear-gradient(180deg, rgba(61,0,112,0.4) 0%, var(--bg-surface) 100%) !important;
}
.cat-gaming-featured .cat-title {
  color: #d4aaff !important;
  text-shadow: 0 0 20px rgba(106,0,200,0.6);
}

/* ─── COD NOTICE (CHECKOUT) ─────────────────────────────────────────────── */
.cod-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(52,199,89,0.06);
  border: 1px solid rgba(52,199,89,0.2);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── BUY NOW BUTTON ─────────────────────────────────────────────────────── */
.btn-buy-now {
  background: linear-gradient(135deg, var(--cyan) 0%, #00a8cc 100%);
  color: #000;
  font-weight: 800;
  border: none;
  box-shadow: 0 0 24px rgba(0,212,255,0.35);
  transition: box-shadow 0.2s, transform 0.15s;
}
.btn-buy-now:hover {
  box-shadow: 0 0 40px rgba(0,212,255,0.55);
  transform: translateY(-1px);
}
.btn-buy-now:active { transform: translateY(0); }

/* ─── SOCIAL SHARE ROW (PDP) ─────────────────────────────────────────────── */
.pdp-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pdp-share-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.pdp-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pdp-share-btn:hover {
  background: var(--bg-glass-hover);
  color: var(--cyan);
  border-color: rgba(0,212,255,0.3);
}

/* ─── RECENTLY VIEWED (PDP) ─────────────────────────────────────────────── */
.pdp-recently-viewed {
  margin-top: 64px;
}
.pdp-recently-viewed h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ─── ADMIN SETUP ALERT ───────────────────────────────────────────────────── */
.admin-setup-alert {
  background: rgba(221,107,32,0.06);
  border: 1px solid rgba(221,107,32,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.admin-setup-alert svg { width: 20px; height: 20px; stroke: var(--warning); flex-shrink: 0; margin-top: 1px; }
.admin-setup-alert h4 { font-size: 14px; font-weight: 700; color: var(--warning); margin-bottom: 4px; }
.admin-setup-alert p { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.admin-setup-alert code { background: rgba(0,0,0,0.1); padding: 1px 6px; border-radius: 4px; font-family: monospace; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE OPTIMISATION
   Breakpoints: 900px (tablet) · 600px (large phone) · 480px (phone) · 360px (small)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── BASE MOBILE RESETS ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }

  /* ─── NAVBAR ─── */
  .nav-inner { gap: 16px; padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--notice-h) + var(--nav-h));
    left: 0; right: 0;
    background: rgba(3,3,15,0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 20px 20px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--border-glass);
    z-index: 850;
    flex-direction: column;
    max-height: calc(100vh - var(--notice-h) - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 18px;
    border-radius: var(--radius-md);
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(0,212,255,0.07);
    color: var(--cyan);
  }
  .nav-toggle { display: flex; }

  /* ─── HERO ─── */
  .hero-content { padding: calc(var(--notice-h) + var(--nav-h) + 32px) 20px 60px; }
  .hero-stats { gap: 28px; }
  .hero-stat::after { height: 24px; right: -14px; }
  .hero-cta { gap: 12px; }
  .hero-scroll { display: none; }

  /* ─── MARQUEE ─── */
  .marquee-track { gap: 36px; }

  /* ─── CATEGORIES ─── */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-gaming-featured .cat-bg { height: 200px !important; }

  /* ─── PRODUCTS ─── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* ─── SECTION SPACING ─── */
  .section, .categories-section, .featured-section, .order-section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .section-sub { font-size: 15px; }

  /* ─── FOOTER ─── */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }

  /* ─── HOW TO ORDER ─── */
  .order-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .order-steps::before { display: none; }
  .payment-info { grid-template-columns: 1fr; gap: 32px; }

  /* ─── CONTACT STRIP ─── */
  .contact-strip { padding: 32px 0; }
  .contact-inner { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .contact-item { min-width: 140px; }

  /* ─── BRAND STATEMENT ─── */
  .brand-statement { padding: 80px 0; }
  .brand-stats-row { gap: 40px; }

  /* ─── CART SIDEBAR ─── */
  .cart-sidebar { width: 100%; max-width: 100%; border-radius: 0; }

  /* ─── CHECKOUT MODAL ─── */
  .checkout-modal {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    overflow-y: auto;
  }
  .modal-overlay { align-items: flex-end; }

  /* ─── PDP ─── */
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; top: auto; }
  .pdp-main-image { height: 300px; border-radius: var(--radius-lg); }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* ─── TRUST PILLARS ─── */
  .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* ─── GUARANTEE ─── */
  .guarantee-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-visual { display: none; }
  .guarantee-section { padding: 80px 0; }
}

/* ─── PHONE (≤ 600px) ────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 16px; }

  /* ─── NAV ─── */
  .logo-img { height: 32px; }
  .brand-text { font-size: 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-actions { gap: 8px; }
  .cart-btn { width: 40px; height: 40px; }

  /* ─── HERO ─── */
  .hero-content { padding: calc(var(--notice-h) + var(--nav-h) + 24px) 16px 48px; }
  .hero-line-2 { font-size: clamp(44px, 13vw, 80px); }
  .hero-pre-tag { font-size: 9.5px; letter-spacing: 0.2em; gap: 8px; }
  .hero-pre-tag::before, .hero-pre-tag::after { width: 24px; }
  .hero-tagline { font-size: 14px; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; padding: 16px 24px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-stat { min-width: 70px; }
  .hero-stat::after { display: none; }
  .stat-num { font-size: 26px; }
  .hero-glow { width: 400px; height: 200px; }

  /* ─── SECTION HEADINGS ─── */
  .section, .categories-section, .featured-section, .order-section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(22px, 6vw, 34px); }
  .section-sub { font-size: 14px; padding: 0 8px; }

  /* ─── CATEGORIES ─── */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-bg { height: 160px; }
  .cat-gaming-featured .cat-bg { height: 180px !important; }
  .cat-icon-wrap { width: 56px; height: 56px; }
  .cat-info { padding: 14px 16px; }
  .cat-title { font-size: 11px; }
  .cat-desc { font-size: 11px; }
  .cat-featured-badge { font-size: 9px; padding: 3px 8px; }

  /* ─── PRODUCTS GRID ─── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { border-radius: var(--radius-md); }
  .product-image-area { height: 160px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 12px; }
  .product-brand { font-size: 10px; }
  .product-price { font-size: 18px; }
  .btn-cart { padding: 9px 14px; font-size: 10px; }

  /* ─── HOW TO ORDER ─── */
  .order-steps { grid-template-columns: 1fr; gap: 20px; }
  .order-step { padding: 24px 20px; }
  .step-num { width: 52px; height: 52px; font-size: 24px; }
  .step-title { font-size: 15px; }
  .step-desc { font-size: 13px; }

  /* ─── PAYMENT INFO ─── */
  .payment-info { grid-template-columns: 1fr; }
  .payment-group { padding: 24px 20px; }
  .payment-group h4 { font-size: 14px; }

  /* ─── CONTACT STRIP ─── */
  .contact-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .contact-item { padding: 14px 0; border-bottom: 1px solid var(--border-glass); }
  .contact-item:last-of-type { border-bottom: none; }
  .contact-value { font-size: 14px; }
  .contact-strip .btn { width: 100%; justify-content: center; }

  /* ─── BRAND STATEMENT ─── */
  .brand-statement { padding: 64px 0; }
  .brand-statement-text { font-size: clamp(18px, 5vw, 26px); }
  .brand-statement-sub { font-size: 14px; }
  .brand-stats-row { gap: 24px; }
  .brand-stat-num { font-size: 32px; }
  .brand-stat-lbl { font-size: 10px; }

  /* ─── TRUST PILLARS ─── */
  .trust-pillars { padding: 32px 0; }
  .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-pillar { gap: 10px; }
  .trust-pillar-icon { width: 40px; height: 40px; }
  .trust-pillar-text strong { font-size: 12px; }
  .trust-pillar-text span { font-size: 11px; }

  /* ─── PDP ─── */
  .pdp-wrapper { padding: calc(var(--notice-h) + var(--nav-h) + 20px) 0 120px; }
  .pdp-main-image { height: 260px; }
  .pdp-name { font-size: clamp(18px, 5vw, 26px); }
  .pdp-price { font-size: 28px; }
  .trust-signals { grid-template-columns: 1fr; gap: 8px; }
  .pdp-cta { gap: 10px; }
  .pdp-cta .btn { padding: 16px 20px; font-size: 12px; }
  .pdp-share-row { gap: 6px; flex-wrap: wrap; }
  .pdp-share-btn { padding: 5px 10px; font-size: 11px; }
  .pdp-payment-badges { flex-wrap: wrap; gap: 8px; }
  .pdp-payment-badge { font-size: 11px; padding: 6px 12px; }
  .pdp-specs-section h3 { font-size: 16px; }
  .specs-table td { font-size: 13px; padding: 10px 12px; }
  .pdp-related h3, .pdp-recently-viewed h3 { font-size: 16px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pdp-qty-row { flex-direction: row; align-items: center; gap: 16px; }

  /* ─── MOBILE STICKY BAR ─── */
  .pdp-mobile-sticky {
    display: flex;
    padding: 10px 16px;
    bottom: 0;
  }
  .mobile-sticky-name { font-size: 12px; }
  .mobile-sticky-price { font-size: 16px; }

  /* ─── CHECKOUT MODAL ─── */
  .checkout-modal { padding: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-header { padding: 20px 20px 16px; }
  .modal-body { padding: 16px 20px; }
  .modal-footer { padding: 16px 20px 20px; }
  .form-label { font-size: 12px; }
  .form-input { padding: 13px 14px; font-size: 14px; height: auto; }
  .payment-opt label { padding: 12px 14px; gap: 10px; font-size: 13px; }

  /* ─── CART SIDEBAR ─── */
  .cart-sidebar { max-width: 100%; border-radius: 0; }
  .cart-item { padding: 12px; gap: 10px; }
  .cart-item-name { font-size: 13px; }
  .cart-item-price { font-size: 13px; }

  /* ─── FILTER BAR (Products page) ─── */
  .filter-inner { flex-direction: column; gap: 12px; align-items: stretch; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; gap: 6px; }
  .filter-tab { flex-shrink: 0; padding: 8px 14px; font-size: 11px; }
  .search-box { width: 100%; }
  .search-box input { width: 100%; }
  .sort-select { width: 100%; }

  /* ─── PAGE HERO ─── */
  .page-hero { padding: calc(var(--notice-h) + var(--nav-h) + 32px) 0 32px; }
  .page-hero h1 { font-size: clamp(24px, 8vw, 40px); }

  /* ─── TRACKING ─── */
  .tracking-wrapper { padding: calc(var(--notice-h) + var(--nav-h) + 20px) 16px 40px; align-items: flex-start; }
  .tracking-card { padding: 28px 20px; border-radius: var(--radius-lg); }
  .tracking-icon { width: 52px; height: 52px; }
  .tracking-card h2 { font-size: 22px; }

  /* ─── GUARANTEE ─── */
  .guarantee-section { padding: 64px 0; }
  .guarantee-points { gap: 20px; }
  .guarantee-point { gap: 14px; }

  /* ─── FOOTER ─── */
  .footer { padding: 48px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-brand p { font-size: 13px; }
  .footer-col h5 { font-size: 12px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { padding-top: 20px; gap: 8px; }
  .footer-copy { font-size: 12px; }

  /* ─── MISC ─── */
  .scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .wa-support-float { bottom: 80px; right: 16px; width: 48px; height: 48px; }
  .toast-container { bottom: 90px; }
  .toast { font-size: 12px; padding: 10px 18px; }
}

/* ─── SMALL PHONES (≤ 420px) ─────────────────────────────────────────────── */
@media (max-width: 420px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-line-2 { font-size: clamp(38px, 14vw, 60px); }
  .hero-stats { display: none; }
  .pdp-main-image { height: 220px; }
  .brand-stats-row { flex-direction: column; align-items: center; gap: 20px; }
}

/* ─── VERY SMALL (≤ 360px) ───────────────────────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-cta .btn { font-size: 10px; padding: 14px 16px; }
  .btn-lg { padding: 15px 20px; font-size: 11px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-image-area { height: 130px; }
}

/* ─── TOUCH TARGETS — min 44×44px on all interactive elements ───────────── */
@media (pointer: coarse) {
  .btn, button { min-height: 44px; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; }
  .filter-tab { min-height: 40px; }
  .pdp-qty-btn { width: 44px; height: 44px; }
  .cart-btn { width: 44px; height: 44px; }
  .modal-close, .cart-close { width: 36px; height: 36px; }
  .payment-opt label { min-height: 52px; }
}

/* ─── REDUCE MOTION ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .dnb-scan { animation: none; }
  .dnb-icon { animation: none; }
  .delivery-notice-bar::before { animation: none; }
  .hero-glow, .hero-line-1, .hero-line-2, .hero-line-3,
  .hero-pre-tag, .hero-tagline, .hero-cta, .hero-stats { animation: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .cat-gaming-featured::before { transition: none; }
}
