/* ============================================================
   Info-TAG  ·  Global Design System
   Violet/Purple brand + Emergency Yellow accent
   Fonts: Syne (headings) + Manrope (body)
   ============================================================ */

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

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Background scale */
  --bg-base:    #07041a;
  --bg-primary: #0a0612;
  --bg-surface: #120a24;
  --bg-card:    rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);

  /* Violet palette */
  --violet-950: #1e0a3c;
  --violet-900: #2d1b69;
  --violet-700: #6d28d9;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-400: #a855f7;
  --violet-300: #c084fc;
  --violet-200: #ddd6fe;
  --violet-100: #ede9fe;

  /* Accent */
  --yellow-400: #fbbf24;
  --yellow-300: #fcd34d;
  --yellow-500: #f59e0b;

  /* Semantic */
  --success:    #10b981;
  --danger:     #ef4444;
  --warning:    #f59e0b;
  --info:       #3b82f6;

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted:     rgba(255,255,255,0.4);

  /* Gradients */
  --gradient-brand:  linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  --gradient-hero:   linear-gradient(135deg, #1a0533 0%, #07041a 50%, #1a0533 100%);
  --gradient-card:   linear-gradient(135deg, rgba(124,58,237,0.12), rgba(168,85,247,0.06));
  --gradient-text:   linear-gradient(135deg, #c084fc 0%, #818cf8 50%, #a855f7 100%);
  --gradient-yellow: linear-gradient(135deg, #fbbf24, #f59e0b);
  --gradient-glow:   radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.35) 0%, transparent 70%);

  /* Glows / Shadows */
  --glow-violet:    0 0 60px rgba(124,58,237,0.35), 0 0 30px rgba(168,85,247,0.2);
  --glow-violet-sm: 0 0 25px rgba(124,58,237,0.3);
  --glow-yellow:    0 0 30px rgba(251,191,36,0.4);
  --shadow-card:    0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-float:   0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(124,58,237,0.2);

  /* Borders */
  --border-subtle: rgba(255,255,255,0.06);
  --border-brand:  rgba(124,58,237,0.3);
  --border-card:   rgba(255,255,255,0.08);

  /* Border radius */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.6s var(--ease);

  /* Layout */
  --max-width: 1200px;
  --nav-h:     72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--violet-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet-500); }

/* Selection */
::selection { background: rgba(124,58,237,0.4); color: white; }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-secondary); }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-yellow { color: var(--yellow-400); }
.text-muted  { color: var(--text-muted); }

/* ── Layout Utilities ─────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.section-sm{ padding: 60px 0; }

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: 1rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::before { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--glow-violet-sm), 0 4px 20px rgba(124,58,237,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-violet), 0 8px 30px rgba(124,58,237,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--violet-300);
  border: 1.5px solid var(--border-brand);
}
.btn-outline:hover {
  background: rgba(124,58,237,0.12);
  border-color: var(--violet-400);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--gradient-yellow);
  color: #1a0800;
  font-weight: 700;
  box-shadow: var(--glow-yellow), 0 4px 20px rgba(251,191,36,0.3);
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(251,191,36,0.5), 0 8px 30px rgba(251,191,36,0.35);
}

.btn-lg  { padding: 18px 44px; font-size: 1.1rem; }
.btn-cta-main { font-size: 1.15rem; padding: 20px 52px; }
.btn-sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Loading spinner inside button */
.btn-loading { pointer-events: none; }
.btn-loading::after {
  content: '';
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── Badges / Status Pills ────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.badge-paid    { background: rgba(16,185,129,0.15); color: #34d399; }
.badge-pending { background: rgba(251,191,36,0.15); color: #fbbf24; }
.badge-failed  { background: rgba(239,68,68,0.15);  color: #f87171; }
.badge-processing { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-shipped    { background: rgba(124,58,237,0.15); color: #a78bfa; }
.badge-delivered  { background: rgba(16,185,129,0.15); color: #34d399; }
.badge-cancelled  { background: rgba(107,114,128,0.15); color: #9ca3af; }

/* ── Form Elements ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border-card);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--violet-500);
  background: rgba(124,58,237,0.08);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-input.error { border-color: var(--danger); }
.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-surface); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { margin-bottom: 64px; text-align: center; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--r-full);
  color: var(--violet-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-card), transparent);
  margin: 40px 0;
}

/* ── Icon Wrapper ─────────────────────────────────────────── */
.icon-box {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--gradient-card);
  border: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-box-lg {
  width: 72px; height: 72px;
  border-radius: var(--r-lg);
  font-size: 2rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-scrolled {
  background: rgba(7,4,26,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--violet-400);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%);
  top: 0; right: -100px;
  animation: orbFloat2 10s ease-in-out infinite;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.07) 0%, transparent 70%);
  bottom: 0; right: 20%;
  animation: orbFloat3 12s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--r-full);
  color: var(--yellow-400);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-headline { margin-bottom: 24px; }
.hero-headline .line-1 {
  display: block;
  color: var(--text-primary);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-headline .line-2 {
  display: block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* Hero product visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero-product-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-product-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-badge-float {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-badge-1 {
  bottom: 60px; left: -40px;
  animation: badgeFloat1 5s ease-in-out infinite;
}
.hero-badge-2 {
  top: 40px; right: -40px;
  animation: badgeFloat2 7s ease-in-out infinite;
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee-section {
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(124,58,237,0.04);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 25s linear infinite;
  padding: 20px 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid var(--border-subtle);
}
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--violet-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-it-works { background: var(--bg-surface); }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hiw-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--r-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: var(--transition);
}
.hiw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}
.hiw-card:hover::before { transform: scaleX(1); }
.hiw-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.hiw-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  opacity: 0.4;
}
.hiw-icon { font-size: 2.5rem; margin-bottom: 16px; }
.hiw-title { font-size: 1.25rem; margin-bottom: 12px; color: white; }
.hiw-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ── Product Showcase ─────────────────────────────────────── */
.product-showcase {
  position: relative;
  overflow: hidden;
}
.product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-media { position: relative; }
.product-image-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
  animation-delay: -3s;
}
.product-image-wrap::after {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 65%);
  z-index: -1;
  border-radius: 50%;
}
.product-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-float);
}
.product-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: var(--r-full);
  color: var(--yellow-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.product-tagline { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 32px; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}
.product-price {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
}
.product-price-orig {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-price-off {
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(16,185,129,0.15);
  color: #34d399;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.product-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.feature-check {
  width: 22px; height: 22px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #34d399;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.qty-label { font-weight: 600; color: var(--text-secondary); font-size: 0.9rem; }
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--r-full);
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(124,58,237,0.2); }
.qty-display {
  min-width: 44px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

/* ── Features Grid ────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-card:hover { border-color: var(--border-brand); transform: translateY(-4px); }
.feat-icon { font-size: 2rem; margin-bottom: 16px; }
.feat-title { font-size: 1.05rem; margin-bottom: 10px; color: white; }
.feat-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border-radius: var(--r-md);
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.open { border-color: var(--border-brand); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-chevron {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet-400);
  font-size: 0.75rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--border-brand); color: var(--violet-300); }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--violet-300); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--violet-300); }

/* ── Checkout Page ────────────────────────────────────────── */
.checkout-page { min-height: 100vh; padding: var(--nav-h) 0 60px; background: var(--bg-primary); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  padding-top: 40px;
}
.checkout-form-section { }
.checkout-title { font-size: 2rem; margin-bottom: 8px; }
.checkout-subtitle { color: var(--text-secondary); margin-bottom: 40px; }
.form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-400);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Order summary */
.order-summary {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
}
.summary-title { font-size: 1.1rem; margin-bottom: 24px; }
.summary-product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}
.summary-img {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  object-fit: cover;
  border: 1px solid var(--border-card);
}
.summary-product-name { font-weight: 700; font-size: 0.95rem; color: white; }
.summary-product-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.summary-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.summary-row.total {
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}
.summary-total-price { font-family: 'Inter', sans-serif; font-size: 1.3rem; }
.summary-trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trust-icon { color: var(--success); font-size: 0.9rem; }
.phonepe-badge {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-sm);
  border: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Payment Status Page ──────────────────────────────────── */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg-primary);
}
.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.status-icon-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.status-icon-wrap.success {
  background: rgba(16,185,129,0.15);
  animation: pulse-success 2s ease-in-out infinite;
}
.status-icon-wrap.pending {
  background: rgba(251,191,36,0.15);
  animation: spin-slow 3s linear infinite;
}
.status-icon-wrap.failed {
  background: rgba(239,68,68,0.15);
}
.status-title   { font-size: 1.8rem; margin-bottom: 12px; }
.status-message { color: var(--text-secondary); margin-bottom: 32px; }
.status-details {
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 32px;
  text-align: left;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-subtle);
}
.detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--text-muted); }
.detail-value { font-weight: 600; color: white; }
.polling-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.polling-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow-400);
  animation: blink 1.2s ease-in-out infinite;
}
.polling-dot:nth-child(2) { animation-delay: 0.2s; }
.polling-dot:nth-child(3) { animation-delay: 0.4s; }

/* ── Admin Pages ──────────────────────────────────────────── */
.admin-body {
  background: #060312;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

/* Admin login */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.admin-login-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(168,85,247,0.1) 0%, transparent 60%);
}
.admin-login-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(20px);
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 32px;
}
.admin-login-logo img { height: 48px; margin: 0 auto 12px; }
.admin-login-title { font-size: 1.6rem; margin-bottom: 6px; text-align: center; }
.admin-login-sub { font-size: 0.875rem; color: var(--text-muted); text-align: center; margin-bottom: 36px; }
.admin-login-form { display: flex; flex-direction: column; gap: 20px; }
.admin-error {
  padding: 12px 16px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--r-sm);
  color: #f87171;
  font-size: 0.875rem;
  display: none;
}
.admin-error.show { display: block; }

/* Admin dashboard layout */
.admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 240px;
  background: rgba(255,255,255,0.03);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  padding: 0;
  z-index: 100;
}
.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.sidebar-logo img { height: 36px; }
.sidebar-nav { flex: 1; padding: 20px 12px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  text-decoration: none;
  margin-bottom: 4px;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(124,58,237,0.15);
  color: var(--violet-300);
}
.sidebar-link-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border-subtle);
}
.admin-main {
  margin-left: 240px;
  min-height: 100vh;
  background: var(--bg-base);
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(6,3,18,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.admin-topbar-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.1rem; }
.admin-content { padding: 32px; }

/* Stats cards */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-brand); transform: translateY(-2px); }
.stat-card-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.stat-card-value { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.8rem; color: white; margin-bottom: 4px; }
.stat-card-sub { font-size: 0.78rem; color: var(--text-muted); }
.stat-card-icon { float: right; font-size: 1.8rem; opacity: 0.3; margin-top: -4px; }

/* Orders table */
.orders-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  gap: 16px;
  flex-wrap: wrap;
}
.orders-tabs { display: flex; gap: 4px; }
.tab-btn {
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { color: white; }
.tab-btn.active {
  background: rgba(124,58,237,0.2);
  color: var(--violet-300);
}
.orders-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--r-full);
  padding: 8px 16px;
  min-width: 220px;
}
.orders-search input {
  background: none; border: none; outline: none;
  color: white; font-family: 'Inter', sans-serif; font-size: 0.875rem;
  flex: 1;
}
.orders-search input::placeholder { color: var(--text-muted); }
.table-wrap { overflow-x: auto; }
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.orders-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}
.orders-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--text-secondary);
  vertical-align: middle;
}
.orders-table tr:last-child td { border-bottom: none; }
.orders-table tr:hover td { background: rgba(255,255,255,0.02); }
.td-name { font-weight: 600; color: white; }
.td-id   { font-size: 0.78rem; color: var(--text-muted); font-family: monospace; }
.fulfillment-select {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--r-full);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.fulfillment-select:focus { border-color: var(--violet-500); outline: none; }
.table-empty {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}
.table-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border-subtle);
}
.pagination-info { font-size: 0.8rem; color: var(--text-muted); }
.pagination-btns { display: flex; gap: 8px; }
.page-btn {
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-card);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.page-btn:hover, .page-btn.active { background: rgba(124,58,237,0.2); border-color: var(--border-brand); color: white; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, 20px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-20px, 30px) scale(0.95); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -15px); }
}
@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(0deg); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-8px) rotate(0deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
@keyframes pulse-success {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}
@keyframes blink {
  0%, 80%, 100% { opacity: 0; transform: scale(0.8); }
  40%            { opacity: 1; transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Toast Notification ────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.3s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast-success { background: rgba(16,185,129,0.95); color: white; }
.toast-error   { background: rgba(239,68,68,0.95); color: white; }
.toast-info    { background: rgba(124,58,237,0.95); color: white; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .product-inner { grid-template-columns: 1fr; }
  .product-media { display: none; }
  .hiw-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .admin-welcome-text { display: none !important; }
}

@media (max-width: 768px) {
  #menuToggle { display: inline-flex !important; align-items: center; justify-content: center; }
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    display: flex !important;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 240px;
    z-index: 1000;
    background: #0a0612;
    border-right: 1px solid var(--border-card);
  }
  body.sidebar-open .admin-sidebar {
    transform: translateX(0);
  }
  body.sidebar-open {
    overflow: hidden;
  }
  .admin-main { margin-left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > :last-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .status-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > :last-child { grid-column: auto; }
  .admin-topbar-title { font-size: 0.95rem; }
  .admin-content { padding: 16px; }
  .orders-header { padding: 16px; flex-direction: column; align-items: stretch; gap: 12px; }
  .orders-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 6px; }
  .tab-btn { padding: 6px 12px; font-size: 0.75rem; white-space: nowrap; }
  .orders-search { min-width: 100%; }
  .pagination { flex-direction: column; gap: 12px; text-align: center; }
  .stat-card-value { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  
  /* Mobile Button Safety & Wrapping */
  .btn { white-space: normal; text-align: center; max-width: 100%; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .btn-sm { padding: 8px 16px; font-size: 0.8rem; }
  
  /* Hero stack */
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; margin: 0; }
  
  /* Nav layout shrink */
  .nav-inner { padding: 0 16px; }
  #navBuyBtn { font-size: 0.8rem; padding: 8px 12px; }
  .hide-mobile { display: none !important; }
  
  /* Specific override for bottom CTA button */
  .btn-cta-main { font-size: 1rem; padding: 14px 24px !important; }
}

