/* Premium Tech Store CSS */
:root {
  /* Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #7c3aed;
  --accent: #f59e0b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  
  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  
  /* Text Colors */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  
  /* Layout */
  --max-width: 1400px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.04);
  
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Top Bar */
.top-bar {
  background: var(--bg-dark);
  color: white;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.top-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.top-right {
  display: flex;
  gap: 20px;
}

.top-right a {
  color: #e2e8f0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.top-right a:hover {
  color: white;
}

/* Header Styles */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  min-height: 80px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 16px;
  box-shadow: var(--shadow);
}

.brand-text .title {
  font-weight: 800;
  font-size: 20px;
  color: var(--text-primary);
}

.brand-text .tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Search Container */
.search-container {
  position: relative;
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search {
  width: 100%;
  padding: 14px 50px 14px 50px;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 15px;
  background: var(--bg-primary);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 2;
}

.search:focus + .search-icon {
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}



.search-suggestions {
  position: absolute;
  top: 100%;
  background: var(--bg-primary);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 1000;
  margin-top: 8px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.suggestion-item {
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
  transform: translateX(4px);
  padding-left: 24px;
}

.suggestion-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.suggestion-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.suggestion-icon.software {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.suggestion-icon.laptop {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.suggestion-icon.monitor {
  background: linear-gradient(135deg, #10b981, #059669);
}

.suggestion-text {
  flex: 1;
}

.suggestion-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.suggestion-category {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: capitalize;
}

.suggestion-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.search-suggestions-header {
  padding: 12px 20px 8px;
  background: rgba(37, 99, 235, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-no-results {
  padding: 24px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.search-no-results i {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.suggestion-item.selected {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.12));
  transform: translateX(6px);
  padding-left: 26px;
  border-left: 3px solid var(--primary);
}

/* Search Loading Animation */
.search.loading {
  background-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  background-size: 200% 100%;
  animation: searchLoading 1.5s infinite;
}

@keyframes searchLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Search Focus Animation */
.search-wrapper.focused {
  transform: scale(1.02);
}

.search-wrapper.focused .search-icon {
  color: var(--primary);
  animation: searchPulse 2s infinite;
}

@keyframes searchPulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.1); }
}

/* Enhanced suggestion animations */
.suggestion-item {
  animation: slideInUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.suggestion-item:nth-child(2) { animation-delay: 0.05s; }
.suggestion-item:nth-child(3) { animation-delay: 0.1s; }
.suggestion-item:nth-child(4) { animation-delay: 0.15s; }
.suggestion-item:nth-child(5) { animation-delay: 0.2s; }
.suggestion-item:nth-child(6) { animation-delay: 0.25s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search suggestions appear animation */
.search-suggestions {
  animation: suggestionsFadeIn 0.3s ease;
}

@keyframes suggestionsFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.nav-dropdown {
  position: relative;
}

.nav-link {
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  border-radius: var(--border-radius);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  min-width: 220px;
  box-shadow: var(--shadow-xl);
  border-radius: var(--border-radius);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px;
}

.nav-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Header */
@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
  
  .search-container {
    max-width: 400px;
    margin: 0 16px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    gap: 16px;
  }
  
  .search-container {
    max-width: 350px;
    margin: 0 12px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
    min-height: auto;
  }
  
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .brand {
    order: 1;
  }
  
  .header-actions {
    order: 2;
    gap: 8px;
  }
  
  .search-container {
    order: 3;
    width: 100%;
    max-width: none;
    margin-top: 8px;
  }
  
  .search {
    padding: 12px 40px 12px 40px;
    font-size: 14px;
  }
  
  .search-icon {
    left: 14px;
    font-size: 16px;
  }
  
  .cart-btn .cart-text {
    display: none;
  }
  
  .brand-text .tag {
    display: none;
  }
  
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }
  
  .search {
    padding: 10px 35px 10px 35px;
  }
  
  .search-icon {
    left: 12px;
    font-size: 14px;
  }
  
  .logo {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .brand-text .title {
    font-size: 18px;
  }
}

.wishlist-btn, .cart-btn {
  background: var(--bg-primary);
  border: 2px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.cart-btn {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

.wishlist-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.wishlist-count, .cart-count {
  background: var(--danger);
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  text-align: center;
}

/* User Menu & Login Button */
.login-btn {
  background: var(--bg-primary);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.login-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.user-menu {
  position: relative;
}

.user-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  background: var(--bg-primary);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.user-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.user-link i {
  font-size: 18px;
  color: var(--primary);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-primary);
  min-width: 200px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  padding: 8px;
}

.user-menu:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.user-dropdown a:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.user-dropdown a i {
  width: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.user-dropdown a:hover i {
  color: var(--primary);
}

.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 8px 16px;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  order: 3;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50000;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 300px;
  max-width: 80vw;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: var(--primary);
  color: white;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  padding: 1rem 0;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.mobile-nav-section {
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.mobile-nav-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f9fafb;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background: var(--bg-secondary);
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mobile-nav-link i {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
}

.mobile-nav-link:hover i {
  color: var(--primary);
}

.mobile-user-section {
  background: var(--bg-secondary);
  margin: 0;
  padding: 1.5rem;
  margin-top: 2rem;
}

.mobile-user-section h4 {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.login-link {
  background: var(--primary);
  color: white !important;
  border-radius: var(--border-radius);
  margin: 0 -1.5rem;
  padding: 1rem 1.5rem !important;
}

.login-link:hover {
  background: var(--primary-dark) !important;
  color: white !important;
}

.login-link i {
  color: white !important;
}

.logout-link {
  color: var(--danger) !important;
}

.logout-link:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  color: var(--danger) !important;
}

.logout-link i {
  color: var(--danger) !important;
}

/* Improved User Menu Styles */
.user-link {
  position: relative;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.user-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.user-name {
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 25% 25%, white 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, white 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(0.5deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-item i {
  font-size: 24px;
  opacity: 0.9;
}

.trust-item span {
  font-size: 12px;
  opacity: 0.8;
}

/* Hero Showcase */
.hero-showcase {
  position: relative;
}

.featured-deal {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.featured-deal:hover {
  transform: rotate(0deg) scale(1.02);
}

.deal-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient-secondary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}

.software-deal .software-icon {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.software-icon i {
  font-size: 80px;
  color: var(--primary);
}

.deal-content {
  padding: 24px;
  color: var(--text-primary);
}

.deal-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.deal-specs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
}

.current-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.discount {
  background: var(--success);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.deal-features {
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.feature-item i {
  color: var(--success);
}

.deal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stars {
  color: var(--accent);
}

.rating-text {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-deal {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
}

/* Brand Showcase */
.brand-showcase {
  padding: 60px 0;
  background: var(--bg-primary);
}

.brand-showcase h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.brand-showcase .muted {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
}

.brand-item {
  text-align: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.brand-item:hover {
  opacity: 1;
}

.brand-item img {
  max-height: 40px;
  max-width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%);
}

/* Categories Section */
.section {
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.cat-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.cat-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-image img {
  transform: scale(1.1);
}

.cat-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.cat-content {
  padding: 24px;
}

.cat-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cat-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 12px 0;
}

.cat-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.cat-features i {
  color: var(--success);
  font-size: 12px;
}

/* Software Section */
.software-section {
  background: var(--bg-primary);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.software-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.software-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.software-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.software-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-secondary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.software-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: var(--primary);
}

.software-icon.vpn {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
}

.software-icon.office {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
}

.software-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.software-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
}

.software-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.software-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.software-features i {
  color: var(--success);
  font-size: 12px;
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
  border-bottom: 2px solid #e2e8f0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 16px 24px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  color: var(--primary);
  background: var(--bg-primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.tab-btn:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Enhanced Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
}

.product-card.premium {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-badge.gaming {
  background: var(--gradient-secondary);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-body {
  padding: 24px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rating-count {
  font-size: 12px;
  color: var(--text-muted);
}

.specs {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: 12px;
}

.product-features i {
  color: var(--success);
  font-size: 11px;
}

.savings {
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* Utility Classes */
.muted {
  color: var(--text-muted);
}

.muted-sm {
  color: var(--text-muted);
  font-size: 13px;
}

/* Why Section */
.why-section {
  background: var(--bg-secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.why-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.why-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Testimonials */
.testimonials {
  background: var(--bg-primary);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.test-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.test-rating {
  margin-bottom: 16px;
}

.test-card p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.test-author strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.test-author span {
  color: var(--text-muted);
  font-size: 14px;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--bg-dark);
  color: white;
  padding: 80px 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.newsletter-left h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.newsletter-left .muted {
  color: #e2e8f0;
  margin-bottom: 24px;
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-benefits span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.newsletter-benefits i {
  color: var(--success);
}

.newsletter-form {
  max-width: 400px;
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4,
.footer-section h5 {
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.footer-desc {
  color: #cbd5e1;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #cbd5e1;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-payments {
  text-align: center;
}

.footer-payments span {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #cbd5e1;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 24px;
  color: #cbd5e1;
}

.footer-copyright {
  text-align: right;
  color: #cbd5e1;
  font-size: 14px;
}

/* =================== NEW SECTIONS CSS =================== */

/* Promotional Banners */
.promotional-banners {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.banner-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.flash-sale {
  background: linear-gradient(135deg, #fef3c7 0%, #f59e0b 100%);
  color: #92400e;
  border-color: #f59e0b;
}

.software-bundle {
  background: linear-gradient(135deg, #e0e7ff 0%, #6366f1 100%);
  color: #3730a3;
  border-color: #6366f1;
}

.hardware-sale {
  background: linear-gradient(135deg, #dcfce7 0%, #16a34a 100%);
  color: #166534;
  border-color: #16a34a;
}

.banner-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.banner-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.banner-card p {
  margin-bottom: 16px;
  opacity: 0.9;
}

.banner-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.banner-price .old-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 16px;
}

.banner-price .new-price {
  font-size: 28px;
  font-weight: 800;
}

.discount-percent {
  background: var(--danger);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.bundle-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bundle-items span {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.banner-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

/* Sale Timer */
.sale-timer {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.timer-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 8px;
  border-radius: 8px;
  min-width: 60px;
}

.timer-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #dc2626;
}

.timer-label {
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
}

.banner-icons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  opacity: 0.3;
}

.banner-icons i {
  font-size: 24px;
}

.banner-image {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.2;
}

.banner-icon {
  font-size: 64px;
}

.gaming-icon {
  font-size: 48px;
  color: #16a34a;
}

/* Banner Buttons */
.banner-btn {
  width: 100%;
  padding: 14px 24px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-accent {
  background: var(--success);
  color: white;
}

.btn-accent:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Best Sellers Section */
.best-sellers-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-title-with-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.trending-badge {
  background: var(--gradient-secondary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.search-trending {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.new-arrivals {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.bestseller-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.bestseller-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.bestseller-rank {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.bestseller-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--danger);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.software-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 36px;
}

.bundle-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.bundle-icons i {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.bestseller-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.bestseller-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bestseller-content-top {
  flex: 1;
}

.bestseller-content-bottom {
  margin-top: auto;
  padding-top: 16px;
}

.bestseller-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bundle-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bestseller-stats {
  margin-bottom: 20px;
}

.sales-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rating-text {
  font-size: 13px;
  color: var(--text-muted);
}

.bestseller-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.bestseller-features span {
  background: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Fix bestseller pricing section */
.bestseller-card .price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.bestseller-card .current-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.bestseller-card .original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 16px;
  white-space: nowrap;
}

.bestseller-card .savings {
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.bestseller-card .discount {
  background: var(--danger);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-bestseller {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.btn-bestseller:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Sales Statistics Banner */
.sales-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  margin-top: 40px;
}

.stats-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fbbf24;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* Most Searched Section */
.most-searched-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.search-trends-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  background: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 40px auto;
}

.trend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
}

.trend-item.active {
  background: var(--gradient-primary);
  color: white;
}

.trend-item:hover:not(.active) {
  background: var(--bg-secondary);
  color: var(--primary);
}

.most-searched-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.search-trend-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.search-trend-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.search-rank {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rank-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.trend-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.trend-arrow.up {
  background: #dcfce7;
  color: #16a34a;
}

.trend-arrow.stable {
  background: #fef3c7;
  color: #d97706;
}

.search-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  margin: 0 auto 16px;
}

.search-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
}

.search-icons-group {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.search-icons-group i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.search-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.search-content-top {
  flex: 1;
}

.search-content-bottom {
  margin-top: auto;
  padding-top: 16px;
}

.search-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.search-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.search-stats {
  margin-bottom: 16px;
}

.search-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 8px;
}

.search-growth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Fix price section alignment for Most Searched cards */
.search-trend-card .price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.search-trend-card .current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.search-trend-card .original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
}

.btn-trending {
  width: 100%;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: white;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
}

.btn-trending:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Search Insights */
.search-insights {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.insights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.insights-header h4 {
  font-size: 20px;
  font-weight: 700;
}

.last-updated {
  font-size: 12px;
  color: var(--text-muted);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.insight-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}

.insight-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.insight-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Latest Products Section */
.latest-products-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.latest-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

.latest-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-secondary);
  border: none;
  border-radius: 25px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.latest-tab.active {
  background: var(--gradient-primary);
  color: white;
}

.latest-tab:hover:not(.active) {
  background: var(--primary);
  color: white;
}

.latest-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.latest-product-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

.latest-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent);
}

.latest-badges {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.new-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.new-badge.gaming {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.new-badge.security {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.new-badge.premium {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.release-date {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: 12px;
}

.latest-icon-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.latest-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  position: relative;
  z-index: 2;
}

.latest-icons-group {
  display: flex;
  gap: 8px;
}

.latest-icons-group i {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.pulse-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.pulse-effect.security {
  background: rgba(245, 158, 11, 0.2);
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.latest-image-container {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.latest-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.latest-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
}

.stock-status {
  background: var(--success);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.stock-status.limited {
  background: var(--warning);
}

.latest-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.latest-content-top {
  flex: 1;
}

.latest-content-bottom {
  margin-top: auto;
  padding-top: 16px;
}

.latest-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.latest-subtitle {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.latest-features, .latest-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.latest-features span {
  background: var(--bg-secondary);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.launch-info {
  margin-bottom: 20px;
}

.launch-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.launch-offer {
  background: var(--gradient-secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

/* Fix latest products pricing section */
.latest-product-card .price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.latest-product-card .current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.latest-product-card .original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
}

.latest-product-card .launch-offer {
  background: var(--gradient-secondary);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 0;
}

.btn-new-arrival {
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
}

.btn-new-arrival:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Arrivals Timeline */
.arrivals-timeline {
  background: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.timeline-header {
  text-align: center;
  margin-bottom: 32px;
}

.timeline-header h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-subtitle {
  color: var(--text-muted);
}

.timeline-items {
  display: flex;
  justify-content: space-around;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.timeline-date {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 3px solid #e2e8f0;
  background: white;
}

.timeline-item.completed .timeline-date {
  background: var(--success);
  color: white;
  border-color: var(--success);
}

.timeline-item.current .timeline-date {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  animation: pulse 2s infinite;
}

.timeline-content {
  text-align: center;
}

.timeline-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 12px;
  color: var(--text-muted);
}

/* =================== PREMIUM ANIMATIONS & CURSORS =================== */

/* Custom Cursor Effects - Desktop Only (Enhanced like auth.php) */
@media (min-width: 769px) and (hover: hover) {
  body {
    cursor: none;
  }
  
  .cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  
  .cursor-follower {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  
  /* Hide default cursor on interactive elements */
  a, button, input, textarea, select, .btn,
  .product-card, .banner-card, .bestseller-card, 
  .search-trend-card, .latest-product-card, .cat-card {
    cursor: none;
  }
}

/* Disable custom cursor on mobile */
@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  
  .cursor, .cursor-follower {
    display: none;
  }
}

/* Hover Effects */
a, button, .product-card, .banner-card, .bestseller-card, .search-trend-card, .latest-product-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a:hover, button:hover {
  transform: translateY(-2px);
}

/* Premium Card Hover Effects */
.product-card:hover, .banner-card:hover, .bestseller-card:hover, .search-trend-card:hover, .latest-product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Magnetic Effect for Buttons */
.btn {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Glow Effects */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
  50% { box-shadow: 0 0 30px rgba(37, 99, 235, 0.6); }
}

.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

/* Slide In Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-slide-up {
  animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-scale {
  animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Typing Cursor Animation */
.typing-cursor {
  animation: blink 1s infinite;
  color: var(--primary);
  font-weight: 300;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Click Ripple Effect */
.click-ripple {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.6s ease-out;
  z-index: 9999;
  width: 100px;
  height: 100px;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

}


/* Parallax Effect */
.parallax {
  transform-style: preserve-3d;
}

/* Premium Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Loading Shimmer Effect */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive Elements */
.interactive {
  transition: all 0.3s ease;
}

.interactive:hover {
  transform: scale(1.05);
}

/* Pulsing Elements */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.8);
    transform: scale(1.02);
  }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Text Gradient Animation */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gradient-text-animated {
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

/* Premium Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loading-sweep 1.5s infinite;
}

@keyframes loading-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .wrap {
    padding: 0 16px;
  }
  
  .banners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .best-sellers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sales-stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }
  
  .search-trends-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
  }
  
  .most-searched-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .latest-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline-items {
    flex-direction: column;
    gap: 32px;
  }
  
  .timeline-items::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }
  
  /* Ensure all cards fit within viewport */
  .bestseller-card,
  .latest-product-card,
  .search-trend-card,
  .product-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .header-inner {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .brand {
    order: 1;
  }
  
  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }
  
  .header-actions {
    order: 3;
    gap: 8px;
  }
  
  .search-container {
    order: 4;
    width: 100%;
    margin-top: 12px;
  }
  
  .main-nav {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .cats-grid {
    grid-template-columns: 1fr;
  }
  
  .user-link span {
    display: none;
  }
  
  .user-dropdown {
    right: -20px;
    min-width: 180px;
  }
  
  .cart-btn .cart-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 12px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .latest-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Force single column on very small screens */
  .cats-grid,
  .software-grid,
  .products-grid,
  .best-sellers-grid,
  .most-searched-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  /* Reduce card padding on mobile */
  .bestseller-card,
  .latest-product-card,
  .search-trend-card,
  .product-card,
  .cat-card {
    padding: 20px 16px;
    margin: 0;
  }
  
  /* Fix hero grid on mobile */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Fix footer grid */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}
