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

:root {
  /* Color Palette - Modern Tech Theme */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #0f172a 100%);
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-gradient: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
  --secondary: #0f172a;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;

  /* Neutral Tones */
  --dark: #0f172a;
  --darker: #0b0f19;
  --light: #f8fafc;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --card-bg: #ffffff;
  
  /* Modern Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.06);
  --shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 30px -10px rgba(37, 99, 235, 0.15), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.35);

  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Outfit', 'Inter', sans-serif;
}

[data-theme="dark"] {
  --dark: #f8fafc;
  --darker: #f1f5f9;
  --light: #0b0f19;
  --white: #1e293b;
  --card-bg: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --border-color: #334155;
  --slate-100: #1e293b;
  --slate-200: #334155;
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ==========================================================================
   Top Header Bar
   ========================================================================== */
.top-bar {
  background: var(--slate-900);
  color: var(--slate-300);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-info i {
  color: var(--primary-light);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-actions a {
  color: var(--slate-300);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-actions a:hover {
  color: var(--white);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-custom {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  z-index: 1030;
}

.navbar-brand-custom {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.03em;
}

.navbar-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--primary-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.nav-link-custom {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
}

.nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--slate-900);
}

/* ==========================================================================
   Hero E-Commerce Section - Premium Carousel + Side Promos
   ========================================================================== */
.hero-ecommerce-wrapper {
  background: var(--slate-900);
  padding: 1.5rem 0 0;
}

.bg-slate-900 { background-color: #0f172a !important; }
.bg-slate-800 { background-color: #1e293b !important; }
.bg-slate-50 { background-color: #f8fafc !important; }
.border-slate-700 { border-color: #334155 !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4) !important; }

/* Carousel Styling */
#mainHeroCarousel {
  border-radius: var(--radius-lg) !important;
}

#mainHeroCarousel .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

#mainHeroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  opacity: 0.6;
  transition: all 0.3s;
}

#mainHeroCarousel .carousel-indicators button.active {
  background-color: #f59e0b;
  border-color: #f59e0b;
  opacity: 1;
  transform: scale(1.2);
}

.hero-slide-content {
  position: relative;
}

.hero-slide-content::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-slide-content::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-slide-content .display-5 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fw-extrabold { font-weight: 800 !important; }

.z-2 { position: relative; z-index: 2; }
.z-3 { position: relative; z-index: 3; }

/* Product Card Hover */
.product-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color) !important;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.18), 0 8px 16px -6px rgba(0,0,0,0.08) !important;
  border-color: var(--primary-light) !important;
}

.product-card .product-img-wrapper {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  transition: background-color 0.3s;
}

.product-card:hover .product-img-wrapper {
  background-color: #eff6ff !important;
}

.product-card .product-img-wrapper img {
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-card .add-to-cart {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.product-card .add-to-cart:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Category Card Hover */
.category-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover, .hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px -8px rgba(37, 99, 235, 0.15) !important;
  border-color: var(--primary-light) !important;
}

.category-card .category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.08);
  transition: all 0.3s;
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: #fff !important;
}

.category-card:hover .category-icon i {
  color: #fff !important;
}

/* Trust Ribbon Animation */
.bg-slate-800.border {
  transition: all 0.3s ease;
}

.bg-slate-800.border:hover {
  transform: translateY(-4px);
  border-color: var(--primary) !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* Responsive Hero */
@media (max-width: 991.98px) {
  .hero-slide-content .display-5 {
    font-size: 1.75rem;
  }
  .hero-slide-content {
    min-height: 320px !important;
  }
  #mainHeroCarousel {
    min-height: 320px;
  }
}

/* ==========================================================================
   Mobile-First E-Commerce App Styling (Flipkart / Maxbhi Style)
   ========================================================================== */
.mobile-search-wrapper {
  background: #0f172a;
  padding: 0.5rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-search-input-group {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
}

.mobile-search-input-group input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.88rem;
  outline: none;
  width: 100%;
}

.mobile-search-input-group input::placeholder {
  color: #94a3b8;
}

.mobile-cat-scroll-container {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-cat-scroll-container::-webkit-scrollbar {
  display: none;
}

.mobile-cat-item {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 68px;
}

.mobile-cat-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.12);
}

.mobile-cat-item.active .mobile-cat-avatar {
  background: #2563eb;
  color: #ffffff;
}

.mobile-cat-label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 68px;
}

/* Bottom App Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1030;
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  position: relative;
  flex: 1;
  padding: 0.25rem 0;
}

.mobile-bottom-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.mobile-bottom-nav-item.active, .mobile-bottom-nav-item:hover {
  color: #2563eb;
}

.mobile-bottom-nav-item .cart-badge-bottom {
  position: absolute;
  top: 0px;
  right: 22%;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-repair-fab {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-top: -24px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}

.mobile-repair-fab i {
  font-size: 1.25rem;
  margin: 0;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 65px; /* offset for bottom app bar */
  }
  .btn-whatsapp-float {
    bottom: 75px !important; /* elevate above bottom bar */
  }
  .hero-slide-content .display-5 {
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-slide-content {
    min-height: 220px !important;
    padding: 1.25rem !important;
  }
  .hero-slide-content p {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
  }
  .hero-slide-content .btn {
    padding: 0.45rem 1rem !important;
    font-size: 0.82rem !important;
  }
  .hero-ecommerce-wrapper {
    padding: 0.5rem 0 0 !important;
  }
  .hero-thumb-mobile {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .promo-card-mobile {
    padding: 1rem !important;
  }
  .promo-card-mobile h4 {
    font-size: 1rem !important;
  }
}

/* ==========================================================================
   Section Styling & Headers
   ========================================================================== */
.section-padding {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   Category Cards
   ========================================================================== */
.category-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

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

.category-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(29, 78, 216, 0.15) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.category-card:hover .category-icon-box {
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.category-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

.product-img-wrapper {
  position: relative;
  padding: 1.5rem;
  background: var(--slate-50);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.badge-discount {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.btn-wishlist-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--slate-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.btn-wishlist-toggle:hover {
  color: var(--danger);
  transform: scale(1.1);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-name {
  font-size: 0.8rem;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.product-rating {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.product-old-price {
  font-size: 0.85rem;
  color: var(--slate-400);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

.btn-add-cart {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   Store Locations Cards
   ========================================================================== */
.store-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.store-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--slate-500);
}

/* Floating WhatsApp Button */
.btn-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
}

.btn-whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2.4rem; }
  .top-bar-content { flex-direction: column; align-items: flex-start; }
  .hero-stats { justify-content: space-between; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .top-bar-info { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}
