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

:root {
  --primary: #00C853;
  --primary-dark: #009624;
  --primary-light: #69F0AE;
  --secondary: #0D1B2A;
  --accent: #FF6B35;
  --accent-glow: rgba(255, 107, 53, 0.3);
  --dark: #0a0a0a;
  --dark-card: #111111;
  --dark-elevated: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(17, 17, 17, 0.85);
  --success: #00C853;
  --warning: #FFB300;
  --danger: #FF1744;
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1B2838 50%, #0a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #00C853 0%, #00E676 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(0, 200, 83, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--primary); color: white; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--primary); }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.search-box {
  position: relative;
}
.search-box input {
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  color: var(--text-primary);
  width: 220px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  width: 280px;
}
.search-box::before {
  content: '🔍';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.5;
}

.cart-btn {
  position: relative;
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-btn:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: countPulse 2s infinite;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(0, 200, 83, 0.05);
}
.btn-accent {
  background: linear-gradient(135deg, #FF6B35, #FF8F65);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}
.btn-full { width: 100%; justify-content: center; }

.hero-visual {
  position: relative;
  animation: fadeIn 1s ease 0.4s both;
}

.hero-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0,200,83,0.03), transparent);
  animation: shimmer 3s infinite;
}

.floating-tag {
  position: absolute;
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}
.floating-tag.tag-1 { top: -20px; left: -30px; animation-delay: 0s; }
.floating-tag.tag-2 { bottom: 20px; right: -20px; animation-delay: 1s; }
.floating-tag .tag-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.tag-1 .tag-icon { background: rgba(0, 200, 83, 0.15); }
.tag-2 .tag-icon { background: rgba(255, 107, 53, 0.15); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  text-align: center;
  padding: 1rem;
}
.trust-item .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
.trust-item .label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ===== FLASH SALE ===== */
.flash-sale {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.02));
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.flash-sale::before {
  content: '⚡';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.03;
}
.flash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.flash-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.flash-title h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.flash-badge {
  background: var(--accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  animation: badgePulse 2s infinite;
}

.countdown {
  display: flex;
  gap: 0.8rem;
}
.countdown-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-align: center;
  min-width: 60px;
}
.countdown-item .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.countdown-item .unit {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 200, 83, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.badge {
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-sale { background: var(--accent); color: white; }
.badge-new { background: var(--primary); color: white; }
.badge-hot { background: linear-gradient(135deg, #FF1744, #FF5252); color: white; }
.badge-stock { background: var(--dark-elevated); color: var(--text-secondary); border: 1px solid var(--border); }

.product-image {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, var(--dark-elevated), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.5s;
}
.product-card:hover .product-image img {
  transform: scale(1.08);
}
.product-image .quick-view {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.product-card:hover .quick-view {
  bottom: 1rem;
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  flex: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.price-current {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-light);
}
.price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-discount {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-actions {
  display: flex;
  gap: 0.8rem;
}
.btn-add-cart {
  flex: 1;
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-add-cart:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}
.btn-wishlist {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--dark-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-wishlist:hover {
  border-color: var(--danger);
  color: var(--danger);
}

/* ===== CATEGORIES ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.category-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,200,83,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.category-card:hover .category-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(0,200,83,0.2), rgba(0,200,83,0.1));
}
.category-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.category-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s;
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,200,83,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.payment-card {
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.payment-card:hover {
  border-color: var(--primary);
}
.payment-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.payment-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.payment-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.payment-details {
  background: var(--dark);
  border-radius: 12px;
  padding: 1rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.payment-details strong {
  color: var(--primary-light);
}

/* ===== CART PAGE ===== */
.cart-page {
  padding-top: 100px;
  min-height: 100vh;
}
.cart-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}

.cart-items {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 100px;
  height: 100px;
  background: var(--dark-elevated);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.cart-item-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.cart-item-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-elevated);
  border-radius: 10px;
  padding: 0.3rem;
}
.qty-control button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--dark);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}
.qty-control button:hover { background: var(--primary); }
.qty-control span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}
.cart-item-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-light);
}
.remove-item {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.remove-item:hover { color: var(--danger); }

.cart-summary {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.summary-row.total span:last-child {
  color: var(--primary-light);
  font-family: 'Space Grotesk', sans-serif;
}

.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
}
.empty-cart .icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.empty-cart h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.empty-cart p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ===== CHECKOUT FORM ===== */
.checkout-form {
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-elevated);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
.payment-method:hover { border-color: var(--primary); }
.payment-method.selected {
  border-color: var(--primary);
  background: rgba(0, 200, 83, 0.05);
}
.payment-method input { display: none; }
.payment-method .pm-icon {
  font-size: 1.5rem;
}
.payment-method .pm-info h5 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.payment-method .pm-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.bank-details-box {
  background: linear-gradient(135deg, rgba(0,200,83,0.05), rgba(0,200,83,0.02));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1rem 0;
  display: none;
}
.bank-details-box.active { display: block; }
.bank-details-box h5 {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-row span:first-child { color: var(--text-secondary); }
.bank-row span:last-child {
  font-family: 'Space Grotesk', monospace;
  color: var(--text-primary);
  font-weight: 600;
}
.copy-btn {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}
.copy-btn:hover {
  background: var(--primary);
  color: white;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.2s;
}
.modal-close:hover {
  background: var(--danger);
  border-color: var(--danger);
}
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-image {
  background: linear-gradient(135deg, var(--dark-elevated), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  font-size: 6rem;
  min-height: 400px;
}
.modal-info {
  padding: 2.5rem;
}
.modal-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.modal-info .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1rem;
}
.modal-info .desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.modal-features {
  list-style: none;
  margin-bottom: 2rem;
}
.modal-features li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.toast {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.4s ease;
  min-width: 300px;
}
.toast.success { border-left: 4px solid var(--primary); }
.toast.error { border-left: 4px solid var(--danger); }
.toast-icon { font-size: 1.5rem; }
.toast-content h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.toast-content p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-secondary);
  margin: 1rem 0;
  font-size: 0.95rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.footer h5 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero h1 { font-size: 3rem; }
  .hero p { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .cart-container { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-image { min-height: 250px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .search-box { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .cart-item-price, .qty-control { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .flash-header { flex-direction: column; align-items: flex-start; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--gradient-hero);
  text-align: center;
}
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
}
.page-header p {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ===== FILTERS ===== */
.filters-bar {
  max-width: 1400px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--dark-card);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-top: 100px;
}
.confirmation-box {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.confirmation-box .check {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: pulse 2s infinite;
}
.confirmation-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.confirmation-box p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.confirmation-box .order-id {
  background: var(--dark-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
  font-family: 'Space Grotesk', monospace;
  color: var(--primary-light);
}
