@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ===========================
   CSS VARIABLES - THEME SYSTEM
   =========================== */
:root {
  /* Colors - Corporate Professional Palette */
  --color-void: #ffffff;
  --color-deep: #f8fafc;
  --color-slate: #e2e8f0;
  --color-steel: #cbd5e1;

  --color-electric: #1e40af;
  --color-neon: #3b82f6;
  --color-purple: #6366f1;
  --color-magenta: #8b5cf6;

  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;

  /* Typography Scale */
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing & Rhythm */
  --space-unit: 1rem;
  --space-xs: calc(var(--space-unit) * 0.5);
  --space-sm: calc(var(--space-unit) * 0.75);
  --space-md: calc(var(--space-unit) * 1.5);
  --space-lg: calc(var(--space-unit) * 3);
  --space-xl: calc(var(--space-unit) * 6);

  /* Effects */
  --glow-electric: 0 2px 8px rgba(30, 64, 175, 0.15);
  --glow-neon: 0 4px 12px rgba(59, 130, 246, 0.2);
  --shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ===========================
   BASE RESET & TYPOGRAPHY
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--color-void);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 65ch;
}

/* ===========================
   CLEAN CORPORATE BACKGROUND
   =========================== */
.background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(203, 213, 225, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 213, 225, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

/* ===========================
   NAVIGATION - ENHANCED E-COMMERCE
   =========================== */
.navbar-enhanced {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

/* Logo */
.nav-logo-enhanced {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-logo-enhanced:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-electric), var(--color-neon));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
}

/* Navigation Links */
.nav-links-center {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link-enhanced {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-enhanced::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-electric);
  transition: width 0.3s ease;
}

.nav-link-enhanced:hover {
  color: var(--color-electric);
}

.nav-link-enhanced:hover::after,
.nav-link-enhanced.active::after {
  width: 100%;
}

.nav-link-enhanced.active {
  color: var(--color-electric);
  font-weight: 600;
}

/* Search Bar */
.search-bar-wrapper {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  background: white;
  border-color: var(--color-electric);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.search-input::placeholder {
  color: var(--color-text-secondary);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  background: var(--color-electric);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: var(--color-neon);
  transform: translateY(-50%) scale(1.05);
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-icon-btn:hover {
  background: #f8fafc;
  color: var(--color-electric);
}

.cart-icon-btn {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-electric);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 1.2;
}

/* Mobile Menu */
.mobile-menu {
  padding: 1.5rem 0;
  border-top: 1px solid #e2e8f0;
  background: white;
}

.mobile-search {
  position: relative;
  margin-bottom: 1.5rem;
}

.mobile-search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--color-text-primary);
}

.mobile-search-input:focus {
  outline: none;
  border-color: var(--color-electric);
}

.mobile-search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  background: var(--color-electric);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #f8fafc;
  color: var(--color-electric);
}

@media (max-width: 1024px) {
  .search-bar-wrapper {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .navbar-content {
    gap: 1rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Harmonious Hero Section */
.hero-section-harmonious {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
  padding: 120px 0 80px;
}

.hero-content-left {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* Hero Visual Cards */
.hero-visual {
  position: relative;
  height: 600px;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-visual-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30, 64, 175, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.hero-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 64, 175, 0.25);
}

.hero-card-1 {
  width: 280px;
  height: 200px;
  top: 50px;
  left: 0;
  z-index: 3;
  animation: floatAnimation 6s ease-in-out infinite;
}

.hero-card-2 {
  width: 260px;
  height: 180px;
  top: 180px;
  right: 80px;
  z-index: 2;
  animation: floatAnimation 7s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-card-3 {
  width: 240px;
  height: 160px;
  bottom: 100px;
  left: 60px;
  z-index: 1;
  animation: floatAnimation 8s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-visual-card:hover .hero-card-image {
  transform: scale(1.05);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(8px);
}

.hero-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-electric);
  margin-bottom: 0.25rem;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.05));
  z-index: 0;
  pointer-events: none;
}

.hero-decoration-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: pulse 8s ease-in-out infinite;
}

.hero-decoration-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 100px;
  animation: pulse 10s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

@media (max-width: 1024px) {
  .hero-visual {
    height: 500px;
  }

  .hero-card-1 {
    width: 240px;
    height: 170px;
  }

  .hero-card-2 {
    width: 220px;
    height: 150px;
  }

  .hero-card-3 {
    width: 200px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .hero-section-harmonious {
    padding: 100px 0 60px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-electric);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-title {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  background: var(--color-electric);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(30, 64, 175, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--color-neon);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

.btn-secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-electric);
  border: 2px solid var(--color-electric);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-electric);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

/* ===========================
   PRODUCT CARDS - MINIMAL & CLEAN REDESIGN
   =========================== */
.product-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #f8fafc;
  aspect-ratio: 1/1;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  display: block;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.product-stars {
  display: flex;
  gap: 0.0625rem;
  color: #fbbf24;
  font-size: 0.75rem;
}

.product-rating-count {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .btn-primary {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.product-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.product-actions .btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===========================
   SUMMARY CARDS
   =========================== */
.summary-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* ===========================
   VALUE/FEATURE CARDS
   =========================== */
.value-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(30, 64, 175, 0.06);
}

.value-card .value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.value-card p {
  font-size: 0.938rem;
  line-height: 1.6;
  color: #64748b;
}

/* ===========================
   SECTION STYLING
   =========================== */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-electric);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 3rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 4rem 0 2rem;
  margin-top: var(--space-xl);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-electric);
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--color-electric);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
  }
  50% {
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.glow-text {
  color: var(--color-electric);
}

.border-glow {
  border-color: var(--color-electric);
  box-shadow: 0 0 0 1px var(--color-electric);
}

.glass-effect {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.text-electric {
  color: var(--color-electric);
}

.text-neon {
  color: var(--color-neon);
}

.border-electric {
  border-color: var(--color-electric);
}

.hover\:border-electric:hover {
  border-color: var(--color-electric);
}

.hover\:text-neon:hover {
  color: var(--color-neon);
}

.focus\:ring-electric:focus {
  --tw-ring-color: var(--color-electric);
}

.bg-slate-50 {
  background-color: #f8fafc;
}

/* ===========================
   HORIZONTAL SCROLL CONTAINER
   =========================== */
.horizontal-scroll-wrapper {
  position: relative;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.scroll-arrow:hover {
  background: var(--color-electric);
  border-color: var(--color-electric);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.scroll-arrow svg {
  flex-shrink: 0;
}

.scroll-arrow-left {
  left: -20px;
}

.scroll-arrow-right {
  right: -20px;
}

.scroll-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
}

.horizontal-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-electric) #e2e8f0;
  padding-bottom: 1.5rem;
  padding-right: 1rem;
}

.horizontal-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-electric);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--color-neon);
}

.horizontal-scroll-item {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
}

.horizontal-scroll-item .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .horizontal-scroll-item {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .horizontal-scroll-item {
    width: 260px;
  }
}

/* ===========================
   PROMOTIONAL BANNER
   =========================== */
.promo-banner {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.06);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===========================
   CATEGORY CARDS
   =========================== */
.category-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-electric);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.1);
}

.category-card:hover::before {
  opacity: 1;
}

/* ===========================
   PRODUCT BADGES - MINIMAL REDESIGN
   =========================== */
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #ffffff;
  color: var(--color-electric);
  border: 1px solid var(--color-electric);
  z-index: 10;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(30, 64, 175, 0.15);
}

.badge-new {
  background: var(--color-purple);
  color: #ffffff;
  border-color: var(--color-purple);
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.15);
}

/* ===========================
   BUTTON ICON
   =========================== */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  color: var(--color-electric);
  border: 2px solid var(--color-electric);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-icon:hover {
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: var(--glow-electric);
}

/* ===========================
   TESTIMONIAL CARDS - PROFESSIONAL REDESIGN
   =========================== */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: #e0e7ff;
  line-height: 1;
  font-weight: 700;
}

.testimonial-card:hover {
  border-color: var(--color-electric);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.938rem;
  color: var(--color-text-primary);
}

.testimonial-author-title {
  font-size: 0.813rem;
  color: #94a3b8;
}

/* ===========================
   FAQ COMPONENTS
   =========================== */
.faq-category-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-electric);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

.faq-category-card p {
  color: var(--color-text-primary);
  margin: 0;
}

.faq-section {
  margin-bottom: 4rem;
}

.faq-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-electric);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #94a3b8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  margin-top: 0.5rem;
}

.faq-open {
  border-color: var(--color-electric);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.12);
}

.faq-open .faq-question {
  color: var(--color-electric);
}

.faq-open .faq-answer {
  padding-bottom: 1.5rem;
  padding-top: 0.5rem;
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-content {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-section p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #475569;
  line-height: 1.8;
}

.legal-section ul li {
  margin-bottom: 0.5rem;
}

.legal-section ol {
  list-style-type: decimal;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #475569;
  line-height: 1.8;
}

.legal-section ol li {
  margin-bottom: 0.5rem;
}

.legal-section code {
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-electric);
}

.legal-section strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-list {
  list-style: none !important;
  margin-left: 0 !important;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.cookie-table {
  margin: 1.5rem 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-row:last-child {
  border-bottom: none;
}

.cookie-header {
  background: #f8fafc;
  font-weight: 600;
  color: var(--color-text-primary);
}

.cookie-row div {
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .legal-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
  }

  .legal-section h2 {
    font-size: 1.5rem;
  }

  .legal-section h3 {
    font-size: 1.125rem;
  }

  .cookie-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .cookie-row div:first-child::before {
    content: 'Name: ';
    font-weight: 600;
  }

  .cookie-row div:nth-child(2)::before {
    content: 'Purpose: ';
    font-weight: 600;
  }

  .cookie-row div:last-child::before {
    content: 'Duration: ';
    font-weight: 600;
  }

  .cookie-header div::before {
    content: '' !important;
  }
}

/* ===========================
   ERROR PAGES
   =========================== */
.error-page-content {
  padding: 3rem 0;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-electric), var(--color-neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.error-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.error-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.error-help {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.error-help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-text-primary);
}

.error-help-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-electric);
  box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

.error-help-card svg {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .error-code {
    font-size: 5rem;
  }

  .error-title {
    font-size: 1.75rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-actions .btn-primary,
  .error-actions .btn-secondary {
    width: 100%;
  }
}

/* ===========================
   BRAND LOGOS
   =========================== */
.brand-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 0.8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.brand-logo:hover {
  color: var(--color-electric);
  border-color: var(--color-electric);
  opacity: 1;
}

/* ===========================
   AUTHENTICATION FORMS
   =========================== */

/* Auth Card Container */
.auth-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Form Group */
.form-group {
  margin-bottom: 1.5rem;
}

/* Form Label */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

/* Form Input */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--color-text-primary);
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--color-electric);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}

/* Form Checkbox */
.form-checkbox {
  width: 1rem;
  height: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.form-checkbox:checked {
  background-color: var(--color-electric);
  border-color: var(--color-electric);
}

.form-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Password Toggle Button */
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--color-electric);
}

/* Social Login Buttons */
.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-login-btn:hover {
  background: #f9fafb;
  border-color: var(--color-electric);
}

.social-login-btn svg {
  flex-shrink: 0;
}

/* Auth Card Responsive */
@media (max-width: 768px) {
  .auth-card {
    padding: 1.5rem;
  }

  .form-input {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
  }

  .social-login-btn {
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem;
  }
}

/* ===========================
   NEWSLETTER CARD
   =========================== */
.newsletter-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.08);
}

.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===========================
   SOCIAL ICONS
   =========================== */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-electric);
  border-color: var(--color-electric);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

/* ===========================
   FILTERS SIDEBAR
   =========================== */
.filters-sidebar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.filter-group {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-option:hover {
  color: var(--color-electric);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-electric);
  cursor: pointer;
}

.filter-option label {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.price-range {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.price-input {
  flex: 1;
  min-width: 0;
  max-width: 100px;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.price-input:focus {
  outline: none;
  border-color: var(--color-electric);
  background: #ffffff;
}

@media (max-width: 768px) {
  .price-input {
    max-width: 80px;
    padding: 0.5rem;
  }
}

/* ===========================
   SORT & VIEW CONTROLS
   =========================== */
.controls-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sort-select {
  padding: 0.75rem 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--color-electric);
  background: #ffffff;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
  background: #eff6ff;
  border-color: var(--color-electric);
  color: var(--color-electric);
}

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-electric);
}

.breadcrumb-separator {
  color: var(--color-text-muted);
}

/* ===========================
   PAGINATION
   =========================== */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.page-btn {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background: var(--color-electric);
  border-color: var(--color-electric);
  color: #ffffff;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===========================
   PRODUCT DETAIL PAGE
   =========================== */
.product-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb:hover,
.thumb.active {
  border-color: var(--color-electric);
  box-shadow: var(--glow-electric);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  position: sticky;
  top: 100px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.spec-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  color: var(--color-text-primary);
  font-weight: 500;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: var(--color-electric);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: #eff6ff;
  border-color: var(--color-electric);
}

.qty-display {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  min-width: 60px;
  text-align: center;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--color-electric);
  border-bottom-color: var(--color-electric);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.reviewer-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ===========================
   ENHANCED VALUE CARDS (About Page)
   =========================== */

.value-card-enhanced {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.value-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.value-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-content {
  flex: 1;
}

.value-content h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.value-content p {
  line-height: 1.7;
}

/* ===========================
   TEAM CARDS (About Page)
   =========================== */

.team-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--color-electric);
}

.team-image-wrapper {
  padding: 2rem 2rem 0 2rem;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 200px;
}

.team-content {
  padding: 1.5rem 2rem 2rem 2rem;
}

.team-content h3 {
  color: var(--color-text-primary);
}

.team-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.team-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  border-radius: 8px;
  color: #6b7280;
  transition: all 0.2s ease;
  text-decoration: none;
}

.team-social-link:hover {
  background: var(--color-electric);
  color: white;
  transform: translateY(-2px);
}

/* ===========================
   CONTACT FORM CARD (Contact Page)
   =========================== */

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form-card .form-label {
  color: var(--color-text-primary);
  font-weight: 600;
}

.contact-form-card .form-label svg {
  flex-shrink: 0;
}

/* ===========================
   MAP CONTAINER (Contact Page)
   =========================== */

.map-container {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  display: block;
}

/* ===========================
   CONTACT INFO MINI CARDS (Contact Page)
   =========================== */

.contact-info-mini {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-info-mini:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.contact-info-mini h4 {
  color: var(--color-text-primary);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media (max-width: 768px) {
  .value-card-enhanced {
    flex-direction: column;
    padding: 1.5rem;
  }

  .value-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .value-content h3 {
    font-size: 1.25rem;
  }

  .team-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .map-container iframe {
    height: 250px !important;
  }

  .contact-info-mini {
    padding: 1rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
}

/* ===========================
   ACCOUNT DASHBOARD
   =========================== */

/* Account Sidebar */
.account-sidebar {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.account-sidebar-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.account-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-electric), var(--color-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.account-nav {
  padding: 1rem;
}

.account-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: #6b7280;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.account-nav-item:hover {
  background: #f3f4f6;
  color: var(--color-electric);
}

.account-nav-item.active {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
  color: var(--color-electric);
}

.account-nav-item svg {
  flex-shrink: 0;
}

/* Account Tabs */
.account-tab {
  display: none;
}

.account-tab.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Stat Cards */
.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.stat-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Order Cards */
.order-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.order-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.order-number {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.order-date {
  font-size: 0.875rem;
  color: #6b7280;
}

.order-status {
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.status-delivered {
  background: #d1fae5;
  color: #065f46;
}

.status-processing {
  background: #dbeafe;
  color: #1e40af;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.order-items {
  padding: 1.5rem;
}

.order-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.order-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item-details {
  flex: 1;
}

.order-item-details h4 {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.order-item-details p {
  font-size: 0.875rem;
  color: #6b7280;
}

.order-item-price {
  font-weight: 700;
  color: var(--color-text-primary);
  font-size: 1.125rem;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.order-total {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text-primary);
}

.order-actions {
  display: flex;
  gap: 0.5rem;
}

/* Address Cards */
.address-card {
  position: relative;
  padding: 1.5rem;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.address-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.address-card.address-default {
  border-color: var(--color-electric);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(59, 130, 246, 0.02));
}

.address-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.625rem;
  background: var(--color-electric);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.address-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Settings Sections */
.settings-section {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.settings-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.settings-form .form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.preference-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preference-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.preference-item span {
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}

/* Wishlist Remove Button */
.wishlist-remove-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s ease;
  cursor: pointer;
  z-index: 10;
}

.wishlist-remove-btn:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #ef4444;
  transform: scale(1.1);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Responsive Account Dashboard */
@media (max-width: 1024px) {
  .account-sidebar {
    position: static;
  }

  .account-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .account-nav-item span {
    display: none;
  }

  .account-nav-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .order-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .order-actions {
    width: 100%;
    flex-direction: column;
  }

  .order-actions .btn-sm {
    width: 100%;
  }

  .address-actions {
    flex-direction: column;
  }

  .address-actions button {
    width: 100%;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
  }

  .account-nav {
    grid-template-columns: 1fr;
  }

  .account-nav-item span {
    display: inline;
  }

  .account-nav-item {
    justify-content: flex-start;
  }
}

/* ===========================
   PAYMENT METHODS CARDS
   =========================== */

.payment-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.payment-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.payment-card.payment-default {
  border-color: var(--color-electric);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(59, 130, 246, 0.03));
}

.payment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.payment-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  background: var(--color-electric);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.payment-card-type {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.payment-card-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.payment-card-number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  margin-bottom: 1.25rem;
}

.payment-card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.payment-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.payment-card-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.payment-card-footer {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
}

/* PayPal Card Styling */
.payment-card.payment-paypal .payment-card-number {
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: normal;
}

/* Payment Security Info */
.payment-security-info {
  padding: 1.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  margin-top: 2rem;
}

.payment-security-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.security-badge svg {
  color: #10b981;
}

/* Responsive Payment Cards */
@media (max-width: 768px) {
  .payment-card-footer {
    flex-direction: column;
  }

  .payment-card-footer button {
    width: 100%;
  }

  .payment-card-number {
    font-size: 1.25rem;
  }

  .payment-security-info {
    padding: 1.25rem;
  }

  .security-badge {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================
   CART ITEMS
   =========================== */

.cart-item-card {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cart-item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.cart-item-price {
  font-size: 0.875rem;
  color: #6b7280;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f9fafb;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--color-electric);
  border-color: var(--color-electric);
  color: white;
}

.quantity-value {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-primary);
  min-width: 2rem;
  text-align: center;
}

.cart-item-total {
  text-align: right;
}

.cart-item-total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.cart-item-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #ef4444;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.cart-item-remove:hover {
  color: #dc2626;
}

/* Responsive Cart Items */
@media (max-width: 768px) {
  .cart-item-card {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-quantity {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .cart-item-total {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
}

/* ===========================
   CHECKOUT PAGE
   =========================== */

/* Checkout Steps */
.checkout-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  background: #f3f4f6;
  color: #9ca3af;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkout-step.active .step-number {
  background: var(--color-electric);
  color: white;
  border-color: var(--color-electric);
  box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.checkout-step.completed .step-number {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.step-label {
  font-weight: 600;
  color: #9ca3af;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.checkout-step.active .step-label {
  color: var(--color-electric);
}

.checkout-step.completed .step-label {
  color: #10b981;
}

.step-divider {
  height: 2px;
  flex: 1;
  background: #e5e7eb;
  margin: 0 1rem;
}

.checkout-step.completed + .step-divider {
  background: #10b981;
}

/* Checkout Section */
.checkout-section {
  display: none;
}

.checkout-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.checkout-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

/* Order Summary Items */
.order-summary-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.order-summary-image {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}

.order-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-summary-details {
  flex: 1;
  min-width: 0;
}

.order-summary-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.order-summary-quantity {
  font-size: 0.8125rem;
  color: #6b7280;
}

.order-summary-price {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  text-align: right;
}

/* Review Section */
.review-section {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-section-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-section-content {
  color: #4b5563;
  line-height: 1.6;
}

.review-edit-btn {
  font-size: 0.875rem;
  color: var(--color-electric);
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.review-edit-btn:hover {
  background: rgba(30, 64, 175, 0.1);
}

/* Checkout Navigation Buttons */
.checkout-nav-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.checkout-nav-buttons button {
  flex: 1;
}

/* Success Animation */
@keyframes checkmark {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes circle {
  0% {
    stroke-dashoffset: 200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.success-icon circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: circle 0.6s ease forwards;
}

.success-icon path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: checkmark 0.3s ease forwards 0.6s;
}

/* Responsive Checkout */
@media (max-width: 768px) {
  .checkout-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .checkout-step {
    max-width: none;
  }

  .step-divider {
    display: none;
  }

  .checkout-card {
    padding: 1.5rem;
  }

  .checkout-nav-buttons {
    flex-direction: column-reverse;
  }
}

/* ===========================
   FEATURED BANNER GRID
   =========================== */
.featured-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 600px;
}

.featured-banner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #0f172a;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-banner-large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.featured-banner-rect {
  grid-column: 2 / 3;
}

.featured-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.featured-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-banner:hover .featured-banner-image img {
  transform: scale(1.08);
}

.featured-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.85) 0%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.featured-banner:hover .featured-banner-overlay {
  opacity: 0.9;
}

.featured-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 3;
  color: white;
}

.featured-banner-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-banner-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.featured-banner-large .featured-banner-title {
  font-size: 2.5rem;
}

.featured-banner-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.featured-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  transition: gap 0.3s ease;
}

.featured-banner:hover .featured-banner-cta {
  gap: 1rem;
}

.featured-banner-cta svg {
  transition: transform 0.3s ease;
}

.featured-banner:hover .featured-banner-cta svg {
  transform: translateX(4px);
}

/* Responsive Featured Banners */
@media (max-width: 1024px) {
  .featured-banner-grid {
    height: 550px;
  }

  .featured-banner-title {
    font-size: 1.75rem;
  }

  .featured-banner-large .featured-banner-title {
    font-size: 2.25rem;
  }

  .featured-banner-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .featured-banner-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 1rem;
  }

  .featured-banner-large {
    grid-row: auto;
    grid-column: auto;
    min-height: 400px;
  }

  .featured-banner-rect {
    grid-column: auto;
    min-height: 280px;
  }

  .featured-banner-title {
    font-size: 1.5rem;
  }

  .featured-banner-large .featured-banner-title {
    font-size: 2rem;
  }

  .featured-banner-content {
    padding: 1.5rem;
  }

  .featured-banner-description {
    font-size: 0.875rem;
  }
}
