/* =============================================================
   AccountHub — Premium Dark Mode Stylesheet
   ============================================================= */

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

/* 2. CSS Custom Properties */
:root {
  /* Dark palette - Cyber Glass */
  --bg-base:       #020205;  /* deep space black */
  --bg-surface:    #06060a;  /* slightly lighter */
  --bg-card:       rgba(12, 12, 18, 0.65); /* transparent for glass */
  --bg-card-hover: rgba(20, 20, 28, 0.85);
  --bg-elevated:   rgba(25, 25, 35, 0.6);
  --bg-muted:      #27273a;

  /* Borders - Cyber */
  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(6, 182, 212, 0.6); /* Cyan */
  --border-input:  rgba(255,255,255,0.15);

  /* Text */
  --text-primary:  #ffffff;
  --text-secondary:#94a3b8;  /* slate-400 */
  --text-muted:    #64748b;  /* slate-500 */
  --text-faint:    #475569;  /* slate-600 */

  /* Brand - Neon Cyan / Magenta */
  --primary:       #06b6d4;  /* cyan-500 */
  --primary-light: #22d3ee;  /* cyan-400 */
  --primary-dim:   rgba(6,182,212,0.15);
  --primary-glow:  rgba(6,182,212,0.4);

  /* Accent - Neon Fuchsia */
  --accent:        #ec4899;  /* pink-500 */
  --accent-light:  #f472b6;
  --accent-dim:    rgba(236,72,153,0.15);

  /* Telegram blue */
  --telegram:      #229ED9;
  --telegram-dim:  rgba(34,158,217,0.15);

  /* WhatsApp green */
  --whatsapp:      #25D366;

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #06b6d4, #3b82f6);
  --grad-hero:     linear-gradient(135deg, #06b6d4 0%, #a855f7 50%, #ec4899 100%);
  --grad-accent:   linear-gradient(135deg, #ec4899, #be185d);
  --grad-glow:     radial-gradient(ellipse at center, rgba(6,182,212,0.25) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.8);
  --shadow-glow:   0 0 30px rgba(6,182,212,0.3);
  --shadow-card:   0 4px 12px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.8), 0 0 0 1px rgba(6,182,212,0.4), 0 0 20px rgba(6,182,212,0.15);

  /* Radius */
  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  /* Spacing */
  --nav-h: 68px;

  /* Fonts */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  200ms;
}

/* 3. Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* 4. Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--bg-muted); }

/* 5. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* 6. Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.flex  { display: flex; }
.grid  { display: grid; }
.hidden { display: none; }

/* 7. Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(2, 2, 5, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.logo:hover .logo-icon {
  transform: scale(1.08);
  box-shadow: 0 0 32px var(--primary-glow);
}
.logo-icon svg { width: 22px; height: 22px; color: #fff; }
.logo-text { color: var(--text-primary); }
.logo-text span { color: var(--primary-light); }

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-dim);
  color: var(--primary-light);
}

/* Nav CTA */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-input);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-toggle:hover {
  background: var(--primary-dim);
  color: var(--primary-light);
  border-color: var(--border-hover);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.mobile-menu a:hover { background: var(--primary-dim); color: var(--primary-light); }
.mobile-menu-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  padding: 0.75rem 0.75rem 0.25rem;
}

/* Global Search Dropdown */
.global-search-container {
  position: relative;
  display: none;
}
@media (min-width: 768px) { .global-search-container { display: block; width: 260px; } }
@media (min-width: 1024px) { .global-search-container { width: 300px; } }

.search-input-wrapper input {
  width: 100%;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-full);
  padding: 0 1rem 0 2.25rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all var(--dur) var(--ease);
}
.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 2px var(--primary-dim);
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 20px var(--primary-dim);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--dur) var(--ease);
  z-index: 2000;
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .search-dropdown {
    width: 320px;
    right: 0;
    left: auto;
  }
}
.search-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sd-cat {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.5rem 0.5rem 0.25rem;
}
.sd-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur) var(--ease);
}
.sd-item:hover {
  background: var(--primary-dim);
}
.sd-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sd-info { flex: 1; min-width: 0; }
.sd-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sd-meta { font-size: 0.7rem; color: var(--text-muted); }
.sd-empty { padding: 1rem; text-align: center; font-size: 0.8125rem; color: var(--text-secondary); }

/* 8. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  min-height: 42px;
  text-decoration: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 0 0 0 var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(25, 25, 35, 0.6);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: 1px solid var(--border-input);
}
.btn-secondary:hover {
  background: rgba(30, 30, 45, 0.8);
  border-color: var(--border-hover);
  color: var(--primary-light);
  box-shadow: 0 0 15px rgba(6,182,212,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-input);
}
.btn-ghost:hover { background: var(--primary-dim); color: var(--primary-light); border-color: var(--border-hover); box-shadow: 0 0 15px rgba(6,182,212,0.2); }

.btn-telegram {
  background: var(--telegram);
  color: #fff;
}
.btn-telegram:hover { background: #1a8cc2; box-shadow: 0 0 24px rgba(34,158,217,0.4); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5a; }

.btn-sm  { padding: 0.375rem 0.875rem; font-size: 0.8125rem; min-height: 34px; }
.btn-lg  { padding: 0.875rem 1.75rem; font-size: 1rem; min-height: 52px; }
.btn-icon { width: 42px; height: 42px; padding: 0; border-radius: var(--radius-md); }

/* 9. Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
@media (min-width: 1024px) { .hero { padding: 7rem 0 5rem; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(2, 2, 5, 1) 0%, rgba(0, 0, 0, 1) 100%);
}
.hero-bg-blob1 {
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 60%);
  animation: float 15s ease-in-out infinite alternate;
}
.hero-bg-blob2 {
  position: absolute;
  bottom: -15rem;
  right: -10rem;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 60%);
  animation: float 18s ease-in-out infinite alternate-reverse;
}
@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}
.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-layout { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--primary-dim);
  border: 1px solid rgba(124,58,237,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.hero-title-accent {
  display: block;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.hero-trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.hero-platform-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hero-platform-badge:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.hero-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-card { max-width: 100%; } }

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.hero-card-live {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--accent-dim);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-card-live::before { content: '● '; font-size: 0.5rem; }

.hero-card-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-order-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  margin-bottom: 0.625rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}
.hero-order-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.hero-order-item:last-child { margin-bottom: 0; }

.hero-order-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-card);
}
.hero-order-info { flex: 1; min-width: 0; }
.hero-order-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-order-qty { font-size: 0.75rem; color: var(--text-muted); }
.hero-order-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.hero-card-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.hero-card-total-label { font-size: 0.875rem; color: var(--text-muted); }
.hero-card-total-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 10. Section Styles */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.875rem;
  max-width: 42rem;
}

/* 11. Cards */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover {
  border-color: rgba(6,182,212,0.4);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Feature Cards */
.features-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--primary-dim);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover .feature-icon {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}
.feature-card:hover .feature-icon svg { color: #fff; }

.feature-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }



/* 12. Product Cards */
.products-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.product-card-glow {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  border-radius: 9999px 9999px 0 0;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.product-card:hover .product-card-glow { opacity: 1; }

.product-card-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}

.product-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover .product-icon-wrap {
  transform: scale(1.08);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(6,182,212,0.3);
}

.product-cat-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.stock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.min-qty-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 0.35rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}
.product-price-value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.product-price-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border-input);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.btn-add-cart:hover,
.product-card:hover .btn-add-cart {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 16px var(--primary-glow);
}

.custom-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-input);
  border-radius: var(--radius-xl);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.custom-card:hover {
  border-color: rgba(124,58,237,0.4);
  background: var(--bg-card-hover);
}

/* 13. How It Works */
.steps-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  padding: 1.75rem;
  position: relative;
  list-style: none;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--primary-dim);
  border: 1px solid rgba(124,58,237,0.35);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
}
.step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* 14. FAQ Accordion */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  user-select: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.faq-item summary:hover { background: var(--primary-dim); color: var(--primary-light); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-item[open] .faq-toggle {
  background: var(--primary-dim);
  transform: rotate(45deg);
}
.faq-toggle svg { width: 14px; height: 14px; color: var(--primary-light); }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* 15. CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1a0040 0%, #0f0f1a 50%, #001a40 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  padding: 3.5rem 2rem;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.cta-text { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* 16. Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-about-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 22rem;
  margin-top: 1rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--primary-light); }

.footer-divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0 1.5rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.footer-legal { font-size: 0.75rem; color: var(--text-faint); margin-top: 1rem; line-height: 1.7; }

/* 17. Cart Drawer */
#cart-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 6rem;
  z-index: 90;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius-full);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--dur) var(--ease);
}
#cart-fab:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
@media (min-width: 1024px) { #cart-fab { bottom: 1.5rem; } }

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

#cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
#cart-drawer.open { display: block; }

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.cart-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  animation: slide-in-right 0.3s var(--ease);
}
@keyframes slide-in-right {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-title { font-size: 1.125rem; font-weight: 700; }

.cart-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-input);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}
.cart-close:hover { background: var(--primary-dim); color: var(--primary-light); }

.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--text-muted); font-size: 0.9rem; }
.cart-empty a { color: var(--primary-light); text-decoration: underline; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  margin-bottom: 0.75rem;
}
.cart-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.875rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.8125rem; color: var(--text-muted); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-input);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur) var(--ease);
  line-height: 1;
}
.qty-btn:hover { background: var(--primary-dim); border-color: var(--border-hover); color: var(--primary-light); }
.qty-value { font-size: 0.875rem; font-weight: 600; min-width: 2rem; text-align: center; }
.cart-item-del {
  background: transparent;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: color var(--dur) var(--ease);
}
.cart-item-del:hover { color: #ef4444; }

.cart-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-total-label { font-size: 0.875rem; color: var(--text-muted); }
.cart-total-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}
.cart-checkout { width: 100%; margin-bottom: 0.625rem; }
.cart-clear {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 0.8125rem;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 0.375rem;
  transition: color var(--dur) var(--ease);
}
.cart-clear:hover { color: var(--text-muted); }

/* 18. Floating Buttons */
.float-btns {
  position: fixed;
  left: 1.25rem;
  bottom: 6rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .float-btns { bottom: 1.5rem; } }

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn-tg  { background: var(--telegram); box-shadow: 0 4px 20px rgba(34,158,217,0.4); }
.float-btn-wa  { background: var(--whatsapp); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }

/* 19. Toast */
.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 300;
  max-width: 360px;
  background: var(--bg-card);
  border: 1px solid rgba(16,185,129,0.35);
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.toast-msg { font-size: 0.875rem; font-weight: 600; }
.toast-sub { font-size: 0.75rem; color: var(--text-muted); }

/* 20. Admin Styles */
.admin-body { background: #0a0a0c; font-family: var(--font-body); color: var(--text-primary); }

.admin-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 240px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 50;
}

.admin-nav { list-style: none; margin-top: 2rem; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--dur) var(--ease);
  margin-bottom: 0.25rem;
}
.admin-nav a:hover, .admin-nav a.active {
  background: var(--primary-dim);
  color: var(--primary-light);
}
.admin-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }

.admin-main { margin-left: 240px; padding: 2.5rem 2rem; min-height: 100vh; }
.admin-page-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.form-control::placeholder { color: var(--text-faint); }
textarea.form-control { resize: vertical; min-height: 90px; }

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.admin-card-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1.25rem; }

.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
.table td {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--bg-elevated); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.7125rem;
  font-weight: 600;
}
.badge-primary { background: var(--primary-dim); color: var(--primary-light); }
.badge-success { background: var(--accent-dim); color: var(--accent); }
.badge-muted   { background: var(--bg-elevated); color: var(--text-muted); }

.alert {
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.alert-success { background: var(--accent-dim); border: 1px solid rgba(16,185,129,0.3); color: var(--accent-light); }
.alert-error   { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }

/* Admin Login page */
.admin-login-body {
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.admin-login-title { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; }
.admin-login-sub  { font-size: 0.875rem; color: var(--text-muted); text-align: center; margin-bottom: 2rem; }

/* Utilities */
.text-gradient {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* Responsive product grid tweaks */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-layout { grid-template-columns: 1fr; }
}

/* Section bg alternating */
.bg-surface { background: var(--bg-surface); }
.bg-card-bg { background: var(--bg-card); }

/* Page header */
.page-header {
  padding: 4rem 0 2rem;
  text-align: center;
}
.page-header .section-title { font-size: clamp(2rem, 4vw, 3rem); }

/* Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
