/* ============================================================
   CDM STORES — Futuristic Design System v4.0
   Glassmorphism · 3D · Neon · Particle Effects
   ============================================================ */

/* ─── IMPORTS ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* ─── ROOT TOKENS ──────────────────────────────────────── */
:root {
  --primary: #6c3ce0;
  --primary-glow: #8b5cf6;
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --neon-pink: #ec4899;
  --dark-bg: #0a0a1a;
  --dark-card: rgba(15, 15, 40, 0.8);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.06);
  --text: #f0f0ff;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(108, 60, 224, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ─── RESET ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--dark-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── ANIMATED BACKGROUND ──────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(108, 60, 224, 0.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(6, 182, 212, 0.06), transparent),
    radial-gradient(ellipse 50% 60% at 50% 90%, rgba(236, 72, 153, 0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Grid pattern overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── PARTICLE CANVAS ──────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ─── HEADER ───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 48px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  gap: 40px;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.header.scrolled {
  background: rgba(8, 8, 22, 0.98);
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 10;
}

.header-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(108, 60, 224, 0.3);
}

.header-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: var(--text-dim);
  font-size: 0.93rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.ai-link {
  color: var(--primary-glow);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(108, 60, 224, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(108, 60, 224, 0.5);
}

/* ─── HERO SECTION ─────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-bg-glow.left {
  background: var(--primary);
  top: -10%;
  left: -10%;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-bg-glow.right {
  background: var(--secondary);
  bottom: -10%;
  right: -10%;
  animation: floatGlow 8s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 60, 224, 0.15);
  border: 1px solid rgba(108, 60, 224, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-glow);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
  50% { opacity: 0.5; box-shadow: 0 0 2px #22c55e; }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #a5b4fc, #67e8f9, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(108, 60, 224, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(108, 60, 224, 0.5);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ─── 3D FLOATING CARDS ────────────────────────────────── */
.hero-3d-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
  perspective: 1000px;
}

.floating-card {
  background: var(--dark-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 240px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.floating-card:nth-child(1) { animation-delay: 0s; }
.floating-card:nth-child(2) { animation-delay: 0.5s; }
.floating-card:nth-child(3) { animation-delay: 1s; }
.floating-card:nth-child(4) { animation-delay: 1.5s; }

.floating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.floating-card:hover {
  transform: translateY(-12px) rotateX(5deg) rotateY(-3deg);
  border-color: rgba(108, 60, 224, 0.4);
  box-shadow: 0 20px 60px rgba(108, 60, 224, 0.15);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.card-icon-3d {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(108, 60, 224, 0.3));
  transition: transform 0.3s ease;
}

.floating-card:hover .card-icon-3d {
  transform: scale(1.15) rotate(5deg);
}

.floating-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.floating-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ─── CATEGORIES ───────────────────────────────────────── */
.categories-strip {
  position: relative;
  z-index: 2;
  padding: 0 24px 60px;
}

.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-chip {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.cat-chip:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

.cat-chip.featured {
  background: linear-gradient(135deg, rgba(108, 60, 224, 0.2), rgba(6, 182, 212, 0.1));
  border-color: rgba(108, 60, 224, 0.4);
  color: var(--primary-glow);
  font-weight: 700;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(108,60,224,0.2); }
  50% { box-shadow: 0 0 30px rgba(108,60,224,0.4); }
}

/* ─── PRODUCTS SECTION ─────────────────────────────────── */
.products-section {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-dim);
  font-size: 1.05rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--dark-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 60, 224, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.product-card-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-glow);
  letter-spacing: 0.03em;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── AI OBS BANNER ────────────────────────────────────── */
.ai-banner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.ai-banner-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(15, 15, 50, 0.9), rgba(30, 10, 60, 0.9));
  border: 1px solid rgba(108, 60, 224, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}

.ai-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.15), transparent);
  border-radius: 50%;
}

.ai-banner-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.ai-banner-badge {
  display: inline-block;
  background: rgba(108, 60, 224, 0.2);
  color: var(--primary-glow);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ai-banner-text h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ai-banner-text p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.ai-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1a1a40;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ai-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.ai-banner-visual {
  position: relative;
  z-index: 1;
  font-size: 5rem;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(108, 60, 224, 0.4));
}

/* ─── TRUST BADGES ─────────────────────────────────────── */
.trust-strip {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.01);
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
}

.trust-item svg {
  opacity: 0.5;
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 60px 24px 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .floating-card { width: 160px; padding: 20px 16px; }
  .ai-banner-inner { flex-direction: column; text-align: center; padding: 28px; }
  .ai-banner-visual { font-size: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ─── LEGACY COMPONENT OVERRIDES ─────────────────────────── */
/* Coupon strip */
.coupon-strip {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 24px;
}
.coupon-strip-inner { display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 0.85rem; }
.coupon-emoji { font-size: 1.1rem; }
.coupon-text { color: var(--text-dim); }
.coupon-text strong { color: var(--primary-glow); font-family: 'Orbitron', sans-serif; }
.coupon-copy-btn {
  background: rgba(108,60,224,0.2);
  border: 1px solid rgba(108,60,224,0.3);
  color: var(--primary-glow);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.coupon-copy-btn:hover { background: rgba(108,60,224,0.3); }

/* Promo bar */
.promo-bar {
  background: rgba(10,10,26,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 8px 0;
  font-size: 0.78rem;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.promo-bar strong { color: var(--primary-glow); }

/* Cart modal fix */
.cart-modal-content { background: var(--dark-card); border: 1px solid var(--glass-border); }
.cart-item { border-bottom-color: var(--glass-border) !important; }
.cart-empty { color: var(--text-dim); }
.btn-checkout { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; }

/* Loading spinner */
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── CHATBOT FAB (Floating Action Button) ─────────────── */
.fab-container { position:fixed; bottom:28px; right:28px; z-index:9990; display:flex; flex-direction:column; gap:12px; }
@media(max-width:768px){ .fab-container { bottom:20px; right:16px; } }
.chatbot-fab-bright {
  width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#6366f1,#8b5cf6);
  border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 24px rgba(99,102,241,.4);transition:all .3s;color:#fff;font-size:1.4rem;
}
.chatbot-fab-bright:hover { transform:scale(1.1);box-shadow:0 6px 32px rgba(99,102,241,.6); }
.chat-modal{
  display:none;position:fixed;bottom:100px;right:28px;width:380px;max-width:90vw;height:520px;
  max-height:70vh;background:rgba(20,20,50,.95);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.1);border-radius:20px;z-index:9991;
  flex-direction:column;overflow:hidden;box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.chat-modal.open{display:flex}
.chat-modal-header{
  padding:14px 18px;border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(10,10,26,.8);
}
.chat-modal-header h3{font-size:.9rem;font-weight:700;color:#f0f0ff}
.chat-modal-close{background:none;border:none;color:#9ca3af;font-size:1.2rem;cursor:pointer}
.chat-modal-body{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px}
.chat-modal-body .msg-u{max-width:80%;align-self:flex-end;background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;padding:10px 14px;border-radius:14px 14px 4px 14px;font-size:.85rem;line-height:1.5}
.chat-modal-body .msg-b{max-width:80%;align-self:flex-start;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);color:#f0f0ff;padding:10px 14px;border-radius:14px 14px 14px 4px;font-size:.85rem;line-height:1.5}
.chat-modal-footer{padding:12px 16px;border-top:1px solid rgba(255,255,255,.08);display:flex;gap:8px}
.chat-modal-footer input{flex:1;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:10px;padding:10px 12px;color:#f0f0ff;font-size:.85rem;outline:none}
.chat-modal-footer button{background:linear-gradient(135deg,#6366f1,#8b5cf6);color:#fff;border:none;border-radius:10px;padding:10px 16px;font-weight:600;cursor:pointer}

/* ─── MOBILE HEADER FIX ───────────────────────────────── */
@media (max-width: 768px) {
  .header-nav { display: none !important; }
  .header-actions .header-cta { display: none; }
  .header-login-link { display: inline !important; }
  .header-cart-link { display: inline !important; }
  .hamburger { display: flex !important; flex-direction: column; gap: 5px; padding: 8px; }
  .hamburger-line { width: 24px; height: 2px; background: #fff; border-radius: 1px; }
}

/* ─── DOWNLOAD SECTION ─────────────────────────────────── */
.download-section {
  position:relative;z-index:2;padding:60px 24px;text-align:center;
  background:linear-gradient(135deg,rgba(108,60,224,.08),rgba(6,182,212,.04));
  border-top:1px solid var(--glass-border);border-bottom:1px solid var(--glass-border);
}
.download-section h2{font-family:'Orbitron',sans-serif;font-size:2rem;margin-bottom:12px}
.download-section p{color:var(--text-dim);margin-bottom:24px;font-size:1rem}
.download-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(135deg,#22c55e,#10b981);color:#fff;
  padding:16px 36px;border-radius:50px;font-size:1.1rem;font-weight:700;
  text-decoration:none;border:none;cursor:pointer;
  transition:all .3s;box-shadow:0 0 30px rgba(34,197,94,.3);
}
.download-btn:hover{transform:translateY(-3px);box-shadow:0 0 50px rgba(34,197,94,.5)}
.download-reqs{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:16px;font-size:.8rem;color:var(--text-muted)}
.download-reqs span{background:rgba(255,255,255,.04);padding:4px 12px;border-radius:50px}

/* Hamburger menu */
.hamburger { display: none !important; }
@media (max-width: 768px) {
  .hamburger { display: flex !important; flex-direction: column; gap: 5px; padding: 8px; }
  .hamburger-line { width: 24px; height: 2px; background: #fff; border-radius: 1px; }
}

/* About section */
.about-section {
  position: relative; z-index: 2;
  padding: 80px 24px; text-align: center; max-width: 800px; margin: 0 auto;
}
.about-section h2 { font-family: 'Orbitron', sans-serif; font-size: 2rem; margin-bottom: 16px; }
.about-section p { color: var(--text-dim); font-size: 1rem; line-height: 1.8; }

.about-stats {
  display: flex; gap: 40px; justify-content: center; margin-top: 40px; flex-wrap: wrap;
}
.about-stat { text-align: center; }
.about-stat strong { display: block; font-size: 2rem; font-family: 'Orbitron', sans-serif; color: var(--primary-glow); }
.about-stat span { font-size: 0.85rem; color: var(--text-muted); }

/* Contact section */
.contact-section {
  position: relative; z-index: 2;
  padding: 60px 24px; text-align: center;
  border-top: 1px solid var(--glass-border);
}
.contact-section h2 { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; margin-bottom: 8px; }
.contact-section p { color: var(--text-dim); margin-bottom: 24px; }
.contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-response-time { margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }
