/* Session Status Component */
.session-status {
  position: relative;
  display: inline-block;
}

.session-toggle-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.session-toggle-btn:hover {
  background: #0056b3;
}

.session-panel {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 300px;
  margin-top: 8px;
}

.session-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}

.session-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #333;
}

.session-details {
  padding: 16px;
}

.session-item {
  margin-bottom: 8px;
  font-size: 13px;
  color: #555;
}

.session-item strong {
  color: #333;
  font-weight: 600;
}

.session-actions {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
}

.refresh-btn, .logout-btn {
  flex: 1;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.refresh-btn {
  background: #28a745;
  color: white;
}

.refresh-btn:hover {
  background: #218838;
}

.logout-btn {
  background: #dc3545;
  color: white;
}

.logout-btn:hover {
  background: #c82333;
}

/* Dark theme support */
.theme-dark .session-panel {
  background: #2d3748;
  border-color: #4a5568;
}

.theme-dark .session-header {
  background: #1a202c;
  border-bottom-color: #4a5568;
}

.theme-dark .session-header h4 {
  color: #e2e8f0;
}

.theme-dark .close-btn {
  color: #a0aec0;
}

.theme-dark .close-btn:hover {
  color: #e2e8f0;
}

.theme-dark .session-item {
  color: #a0aec0;
}

.theme-dark .session-item strong {
  color: #e2e8f0;
}

.theme-dark .session-actions {
  background: #1a202c;
  border-top-color: #4a5568;
}

.cart-icon-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    padding: 8px 12px;
}

.cart-icon-main {
    font-size: 1.4rem;
    color: #f3e9e9ff;
    transition: transform 0.3s ease;
}

.cart-icon-wrapper:hover .cart-icon-main {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Ensure the badge is properly positioned */
.cart-icon-wrapper {
    position: relative;
}
/* Enhanced Floating Header Styles */
.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, 
    rgba(10, 10, 10, 0.98) 0%, 
    rgba(26, 26, 46, 0.95) 50%, 
    rgba(10, 10, 10, 0.98) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.floating-header.hidden {
  transform: translateY(-100%);
}

.floating-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

/* Enhanced Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1002;
}

.logo-icon {
  font-size: 32px;
  background: linear-gradient(135deg, #ff0000, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.logo-text {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, #ffffff 0%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -1px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  border-radius: 1px;
  opacity: 0.7;
}

/* Enhanced Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff0000, #ff6b6b);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active {
  color: #ff0000;
}

.nav-link.active::before {
  width: 100%;
  background: #ff0000;
}

/* Enhanced Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #ff0000, #ff6b6b);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transform: translateX(5px);
}

.dropdown-item:hover::before {
  transform: scaleY(1);
}

.sale-link {
  color: #ff6b6b;
  font-weight: 700;
  position: relative;
}

.sale-link::after {
  content: 'HOT';
  position: absolute;
  top: -8px;
  right: -30px;
  background: linear-gradient(135deg, #ff0000, #ff6b6b);
  color: white;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 900;
  animation: salePulse 2s ease-in-out infinite;
}

@keyframes salePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Enhanced Action Icons */
.action-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1002;
}

/* Enhanced User Info */
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-name {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.logout-btn {
  background: linear-gradient(135deg, #ff4444, #ff0000);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.logout-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 ease;
}

.logout-btn:hover::before {
  left: 100%;
}

.logout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Enhanced Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-btn, .signup-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.signup-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: 2px solid transparent;
}

.signup-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Enhanced Icon Buttons */
.icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.user-btn.active {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  color: #ff0000;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #ff0000, #ff6b6b);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(10, 10, 10, 0.98);
  animation: countPulse 2s ease-in-out infinite;
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Enhanced Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.hamburger {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.hamburger-open:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #ff0000;
}

.hamburger-open:nth-child(2) {
  opacity: 0;
}

.hamburger-open:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #ff0000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 70px;
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-icon {
    font-size: 26px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .action-icons {
    gap: 12px;
  }

  .icon-btn {
    padding: 8px;
  }

  .user-info {
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    font-size: 24px;
  }

  .action-icons {
    gap: 8px;
  }
  
  .auth-buttons {
    gap: 8px;
  }
  
  .login-btn, .signup-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Body padding for fixed header */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

/* Header Scroll Hide/Show Logic */
.floating-header {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-header.hidden {
  transform: translateY(-100%);
}

/* Loading Animation */
@keyframes headerLoad {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-header {
  animation: headerLoad 0.6s ease-out;
}
.brand-logos-slider-container {
    text-align: center;
    padding: 40px 0;
    background-color: transparent;
}

.brand-logos-slider-container h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logos-slider {
    width: 40%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: 120px;
    border-radius: 12px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scroll 25s linear infinite;
}

.logo-slide {
    flex: 0 0 33.333%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo-slide:hover {
    transform: scale(1.05);
}

.brand-logos-slider img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand-logos-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.333% * 3));
    }
}

/* Clean fade edges */
.brand-logos-slider::before,
.brand-logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-logos-slider::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.brand-logos-slider::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
/* Footer Styles - Restored Original Logo Design */
.footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #000000 100%);
  color: #fff;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e50914, transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e50914, #ff6b6b);
  border-radius: 2px;
}

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

.footer-section li {
  margin-bottom: 14px;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(8px);
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section a::before {
  content: '▸';
  color: #e50914;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-section a:hover::before {
  opacity: 1;
}

/* Partner Logos Section - Original Styling */
.partner-section {
  margin-top: 25px;
}

.partner-section h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.9;
  position: relative;
  padding-left: 15px;
}

.partner-section h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: linear-gradient(135deg, #e50914, #ff6b6b);
  border-radius: 2px;
}

.partner-logos {
  margin-top: 15px;
}

.logo-group {
  margin-bottom: 20px;
}

.logo-group-title {
  color: #b0b0b0;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}

/* Original Logo Styling - As You Provided */
.payment-logo, .shipping-logo {
  border-radius: 6px;
  width: 60px; /* Your original size */
  height: 32px; /* Your original size */
  object-fit: contain; /* Your original property */
  background: transparent; /* Your original background */
  transition: transform 0.2s ease; /* Your original transition */
}

.payment-logo:hover, .shipping-logo:hover {
  transform: scale(1.05); /* Your original hover effect */
}

/* Logo styles are now handled by the images themselves - Your original comment */

/* About Section */
.about-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e50914, transparent);
}

.about-section h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #e50914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section p {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-link::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 ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: linear-gradient(135deg, #e50914, #ff6b6b);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 9, 20, 0.3);
  border-color: transparent;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(255, 107, 107, 0.05));
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid rgba(229, 9, 20, 0.2);
  backdrop-filter: blur(10px);
}

.newsletter-section h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-section p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #e50914;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-btn {
  background: linear-gradient(135deg, #e50914, #ff6b6b);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.newsletter-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 ease;
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 9, 20, 0.4);
}

/* Bottom Bar */
.footer-bottom {
  background: linear-gradient(135deg, #e50914 0%, #c40812 100%);
  padding: 25px 0;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
}

.copyright a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.copyright a:hover {
  opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
  position: absolute;
  top: -25px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e50914, #ff6b6b);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(229, 9, 20, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-top: 60px;
  }
  
  .footer-content {
    padding: 40px 20px 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-links {
    justify-content: center;
    gap: 25px;
  }
  
  .logo-row {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .back-to-top {
    right: 20px;
    top: -20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 15px 25px;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .footer-section a {
    font-size: 14px;
  }
  
  .logo-row {
    gap: 10px;
  }
  
  .payment-logo, .shipping-logo {
    width: 50px;
    height: 28px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .newsletter-section {
    padding: 25px 20px;
  }
}

/* Animation for scroll appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
/* HomePage.css - Dark/Light Mode Support */
.home-page {
    padding: 0;
    /* Use CSS variables with fallbacks for dark mode */
    background: linear-gradient(135deg, 
        var(--home-bg-start, #0a0a0a) 0%, 
        var(--home-bg-mid1, #1a1a2e) 25%, 
        var(--home-bg-mid2, #16213e) 50%, 
        var(--home-bg-mid3, #0f3460) 75%, 
        var(--home-bg-end, #0a0a0a) 100%);
    color: var(--text-color, white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Light mode overrides using data-theme attribute */
[data-theme="light"] .home-page {
    --home-bg-start: #f8f9fa;
    --home-bg-mid1: #e9ecef;
    --home-bg-mid2: #dee2e6;
    --home-bg-mid3: #ced4da;
    --home-bg-end: #f8f9fa;
    background: linear-gradient(135deg, 
        var(--home-bg-start) 0%, 
        var(--home-bg-mid1) 25%, 
        var(--home-bg-mid2) 50%, 
        var(--home-bg-mid3) 75%, 
        var(--home-bg-end) 100%);
}

/* Animated Background Particles - Adjust for light mode */
.home-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--particle-1, rgba(120, 119, 198, 0.1)) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--particle-2, rgba(255, 107, 107, 0.1)) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--particle-3, rgba(78, 205, 196, 0.05)) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

[data-theme="light"] .home-page::before {
    --particle-1: rgba(120, 119, 198, 0.05);
    --particle-2: rgba(255, 107, 107, 0.05);
    --particle-3: rgba(78, 205, 196, 0.03);
}

/* Floating Particles - Adjust opacity for light mode */
.particle {
    position: absolute;
    background: var(--particle-color, rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

[data-theme="light"] .particle {
    --particle-color: rgba(0, 0, 0, 0.1);
}

.home-page-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

/* Enhanced Header Section */
.home-page-header {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}

/* Enhanced Gradual Color Changing Title */
.home-page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--gradient-1, #ff6b6b) 0%, 
        var(--gradient-2, #ffd93d) 15%, 
        var(--gradient-3, #6bcf7f) 30%, 
        var(--gradient-4, #4d96ff) 45%, 
        var(--gradient-5, #9d4edd) 60%, 
        var(--gradient-6, #ff6b6b) 75%, 
        var(--gradient-7, #ffd93d) 90%, 
        var(--gradient-8, #6bcf7f) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: gradualColorChange 12s ease infinite;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

/* Light mode color variations */
[data-theme="light"] .home-page-title {
    --gradient-1: #dc2626;
    --gradient-2: #d97706;
    --gradient-3: #059669;
    --gradient-4: #2563eb;
    --gradient-5: #7c3aed;
    --gradient-6: #dc2626;
    --gradient-7: #d97706;
    --gradient-8: #059669;
}

/* Gradual Color Change Animation */
@keyframes gradualColorChange {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% {
        background-position: 50% 50%;
        filter: hue-rotate(90deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg);
    }
    75% {
        background-position: 50% 50%;
        filter: hue-rotate(270deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(360deg);
    }
}

/* Alternative Smooth Color Flow Animation */
@keyframes smoothColorFlow {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Character-by-Character Color Animation */
.home-page-title.character-animation {
    background: none;
    -webkit-text-fill-color: initial;
    animation: none;
}

.home-page-title.character-animation span {
    display: inline-block;
    background: linear-gradient(135deg, 
        #ff6b6b, #ffd93d, #6bcf7f, #4d96ff, #9d4edd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: characterColorWave 8s ease infinite;
}

.home-page-title.character-animation span:nth-child(2) { animation-delay: 0.1s; }
.home-page-title.character-animation span:nth-child(3) { animation-delay: 0.2s; }
.home-page-title.character-animation span:nth-child(4) { animation-delay: 0.3s; }
.home-page-title.character-animation span:nth-child(5) { animation-delay: 0.4s; }
.home-page-title.character-animation span:nth-child(6) { animation-delay: 0.5s; }
.home-page-title.character-animation span:nth-child(7) { animation-delay: 0.6s; }
.home-page-title.character-animation span:nth-child(8) { animation-delay: 0.7s; }
.home-page-title.character-animation span:nth-child(9) { animation-delay: 0.8s; }
.home-page-title.character-animation span:nth-child(10) { animation-delay: 0.9s; }
.home-page-title.character-animation span:nth-child(11) { animation-delay: 1.0s; }
.home-page-title.character-animation span:nth-child(12) { animation-delay: 1.1s; }
.home-page-title.character-animation span:nth-child(13) { animation-delay: 1.2s; }
.home-page-title.character-animation span:nth-child(14) { animation-delay: 1.3s; }
.home-page-title.character-animation span:nth-child(15) { animation-delay: 1.4s; }
.home-page-title.character-animation span:nth-child(16) { animation-delay: 1.5s; }
.home-page-title.character-animation span:nth-child(17) { animation-delay: 1.6s; }
.home-page-title.character-animation span:nth-child(18) { animation-delay: 1.7s; }

@keyframes characterColorWave {
    0%, 100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg);
    }
}

.home-page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gradient-1, #ff6b6b), 
        var(--gradient-2, #ffd93d), 
        var(--gradient-3, #6bcf7f), 
        var(--gradient-4, #4d96ff), 
        var(--gradient-5, #9d4edd), 
        transparent);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

.home-page-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--subtitle-color, rgba(255, 255, 255, 0.8));
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    padding: 0 1rem;
    text-shadow: var(--subtitle-shadow, 0 2px 10px rgba(0, 0, 0, 0.5));
}

[data-theme="light"] .home-page-subtitle {
    --subtitle-color: rgba(0, 0, 0, 0.7);
    --subtitle-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-page-subtitle::before,
.home-page-subtitle::after {
    content: '⚡';
    color: var(--spark-color, #ffd93d);
    margin: 0 1rem;
    animation: spark 2s ease-in-out infinite;
    font-size: 1.5em;
}

[data-theme="light"] .home-page-subtitle::before,
[data-theme="light"] .home-page-subtitle::after {
    --spark-color: #d97706;
}

/* Section Spacing and Animations */
.home-page > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.home-page > *:nth-child(1) { animation-delay: 0.2s; }
.home-page > *:nth-child(2) { animation-delay: 0.4s; }
.home-page > *:nth-child(3) { animation-delay: 0.6s; }
.home-page > *:nth-child(4) { animation-delay: 0.8s; }
.home-page > *:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Component Wrappers */
.component-wrapper {
    margin: 80px 0;
    position: relative;
}

.component-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color, #ff6b6b), transparent);
    border-radius: 1px;
}

[data-theme="light"] .component-wrapper::before {
    --accent-color: #dc2626;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--progress-1, #ff6b6b), 
        var(--progress-2, #ffd93d), 
        var(--progress-3, #6bcf7f), 
        var(--progress-4, #4d96ff), 
        var(--progress-5, #9d4edd));
    z-index: 1000;
    transition: width 0.3s ease;
}

[data-theme="light"] .scroll-progress {
    --progress-1: #dc2626;
    --progress-2: #d97706;
    --progress-3: #059669;
    --progress-4: #2563eb;
    --progress-5: #7c3aed;
}

/* Hover Effects for Components */
.home-page > *:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Glow Effects */
.glow {
    filter: drop-shadow(0 0 20px var(--glow-color, rgba(255, 107, 107, 0.3)));
}

[data-theme="light"] .glow {
    --glow-color: rgba(220, 38, 38, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-page-container {
        padding: 20px 15px;
    }
    
    .home-page-header {
        padding: 60px 20px 40px;
    }
    
    .home-page-title::after {
        width: 150px;
    }
    
    .component-wrapper {
        margin: 60px 0;
    }
    
    .home-page-subtitle::before,
    .home-page-subtitle::after {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .home-page::before,
    .particle,
    .home-page-title,
    .home-page-title::after,
    .home-page-subtitle::before,
    .home-page-subtitle::after,
    .home-page > * {
        animation: none;
    }
    
    .home-page-title {
        background: linear-gradient(135deg, var(--gradient-1, #ff6b6b), var(--gradient-4, #4d96ff));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .home-page-title {
        background: var(--text-color, #ffffff);
        -webkit-text-fill-color: initial;
        background: none;
    }
    
    .particle {
        display: none;
    }
}

/* Keep existing dark mode optimizations but make them conditional */
@media (prefers-color-scheme: dark) {
    /* Only apply if no theme is explicitly set */
    :root:not([data-theme]) .home-page {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    }
}
.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 40px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}
.popular-sportss {
  padding: 32px 24px;
}

.popular-sportss h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* Add to SportsTabs.css or create SportsGrid.css and import it */
.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sport-card {
  background: var(--card-background);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  align-items: stretch;
  position: relative;
  width: 100%;
  height: 260px;
  padding: 0;
  display: flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.sports-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.sports-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 30%, transparent);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  text-align: center;
}

.sports-name {
  display: block;
  font-size: 1.1rem;
}


.sports-sport {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Remove or comment out the overlay if not needed */
/*
.sports-overlay {
  display: none;
}
*/

.limited-editions {
  margin-top: 28px;
  padding-left: 20px;    /* Optional: add some padding */
  padding-right: 20px;   /* Optional: add some padding */
}

.le-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Each card takes half the available width */
  gap: 18px;
  /* Remove width: fit-content; */
  justify-content: stretch; /* Ensures the grid stretches to container */
}

.limited-editions h2 {
  margin-bottom: 18px;
}

.le-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  width: 100%; /* Make sure each card fills its grid cell */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.le-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.le-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 80%);
}

.le-content {
  position: absolute;
  left: 20px;
  bottom: 16px;
  right: 20px;
  color: var(--text);
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.le-title {
  margin: 0 0 6px 0;
  font-size: 32px;
  font-weight: 800;
}

.le-sub {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
}

.always-white {
  color: #fff !important;
}

@media (max-width: 900px) {
  .limited-editions { grid-template-columns: 1fr; }
  .le-card { height: 260px; }
  .le-title { font-size: 26px; }
}

.trending-products {
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.trending-products h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: all;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

/* Slider Container */
.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.tp-card {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 260px; /* Fixed width for consistent sliding */
    flex-shrink: 0;
    cursor: pointer;
}

.tp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.tp-img-wrap {
    position: relative;
    background: var(--card-background);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

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

.tp-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 6px;
}

.tp-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #e50914;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    pointer-events: none;
}

.tp-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tp-title {
    font-weight: bold;
    font-size: 1.1rem;
}

.tp-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 6px;
}

.tp-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.tp-old {
    text-decoration: line-through;
    color: #888;
    font-size: 1rem;
}

.tp-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text);
}

.tp-logo {
    height: 22px;
    margin-left: 6px;
}

.tp-colors {
    color: #888;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-nav {
        display: none; /* Hide buttons on mobile */
    }
    
    .tp-card {
        width: 220px;
    }
}
.popular-athletes {
    padding: 32px 24px;
}

.popular-athletes h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.athlete-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.athlete-card {
    background: var(--card-background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.athlete-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.athlete-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.athlete-info {
    position: absolute;
    left: 20px;
    bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.athlete-name {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.athlete-sport {
    display: block;
    font-size: 1rem;
    margin-top: 4px;
    opacity: 0.85;
}

.auth-page {
  min-height: 100vh;
  background: url(/assets/loginbackground.jpg) center center no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex; /* ADD THIS */
  align-items: center; /* ADD THIS */
  justify-content: center; /* ADD THIS */
}
.auth-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Only hide the overlay on non-auth pages */
body:not(.auth-page) .auth-page::before {
  display: none;
}

.auth-form-center-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  color: #2c3e50;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-header p {
  color: #5a6c7d;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}

.auth-form {
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(44, 62, 80, 0.1);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.form-group input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder {
  color: #7f8c8d;
  font-weight: 400;
}

.auth-button {
  width: 100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.auth-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
}

.auth-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.message {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.auth-footer {
  text-align: center;
  border-top: 1px solid rgba(44, 62, 80, 0.1);
  padding-top: 20px;
}

.auth-footer p {
  margin: 8px 0;
  color: #5a6c7d;
  font-size: 14px;
  font-weight: 400;
}

.auth-footer a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 25px 0;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(44, 62, 80, 0.2);
}

.auth-divider span {
  padding: 0 20px;
  color: #7f8c8d;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.95);
}

.google-button {
  width: 100%;
  background: white;
  color: #2c3e50;
  border: 2px solid rgba(44, 62, 80, 0.1);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: rgba(44, 62, 80, 0.2);
  background: #f8f9fa;
}

.google-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.google-icon {
  flex-shrink: 0;
}

.demo-login-container {
  text-align: center;
}

.demo-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  color: #856404;
}

.demo-warning p {
  margin: 4px 0;
  font-size: 14px;
}

.demo-button {
  transition: all 0.3s ease;
}

.demo-button:hover:not(:disabled) {
  background: #e0e0e0 !important;
  transform: translateY(-1px);
}

.setup-instructions {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  font-size: 12px;
  text-align: left;
}

.setup-instructions p {
  margin: 0 0 8px 0;
  font-weight: 600;
}

.setup-instructions ol {
  margin: 0;
  padding-left: 20px;
}

.setup-instructions li {
  margin: 4px 0;
}

.setup-instructions code {
  background: #f1f1f1;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
}

.setup-instructions a {
  color: #3498db;
  text-decoration: none;
}

.setup-instructions a:hover {
  text-decoration: underline;
}

.success-message {
  text-align: center;
  padding: 20px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  margin: 20px 0;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  font-weight: bold;
}

.success-message h3 {
  color: #2ecc71;
  margin: 0 0 10px 0;
  font-size: 20px;
}

.success-message p {
  color: #34495e;
  margin: 8px 0;
  line-height: 1.5;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.auth-button.secondary {
  background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
  box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

.auth-button.secondary:hover {
  background: linear-gradient(135deg, #7f8c8d 0%, #6c7b7d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(149, 165, 166, 0.4);
}

@media (max-width: 768px) {
  .auth-page {
    padding: 10px;
    background-attachment: scroll;
  }
  
  .auth-container {
    padding: 30px 20px;
  }
  
  .auth-header h1 {
    font-size: 28px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .auth-page {
    height: 100vh;
    min-height: 100vh;
  }
  
  .auth-header h1 {
    font-size: 24px;
  }
  
  .auth-container {
    padding: 20px 15px;
  }
}

.contact-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 15px;
  color: #333;
  transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons svg {
  fill: currentColor;
}

.contact-email {
  font-size: 1rem;
  color: #555;
}

.contact-email a {
  color: #007bff;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.auth-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(44, 62, 80, 0.1);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  font-family: inherit;
  resize: vertical;
}

.auth-form textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.cricket-page-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-color);
}

.cricket-page-header {
  text-align: center;
  margin-bottom: 50px;
}

.cricket-page-header h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #1e40af, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.cricket-page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* FIXED: 4 products per row */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 320px;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.6);
}

.product-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--card-bg) !important;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--card-bg);
  transition: transform 0.4s ease;
}

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

.product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1;
}

.product-card:hover .product-info {
  opacity: 1;
  transform: translateY(0);
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.product-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #60a5fa;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.loading {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cricket-page-header h1 {
    font-size: 2.6rem;
  }
  
  .product-card {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .cricket-page-container {
    padding: 20px 15px;
  }
  
  .cricket-page-header h1 {
    font-size: 2.1rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-card {
    height: 280px;
  }
  
  .product-info {
    padding: 15px 12px;
  }
  
  .product-name {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .cricket-page-header h1 {
    font-size: 1.9rem;
  }
  
  .product-card {
    height: 250px;
  }
  
  .product-info {
    padding: 12px 10px;
  }
  
  .product-name {
    font-size: 0.9rem;
  }
  
  .product-price {
    font-size: 1.1rem;
  }
}
.cart-page {
    min-height: 100vh;
    background-color: var(--bg-color);
    padding: 2rem 0;
    color: var(--text-color);
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cart-header h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}

.cart-count {
    background: var(--primary-color);
    color: var(--bg-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.loading {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    background: var(--card-bg);
    border-radius: 10px;
    margin: 2rem 0;
}

.empty-cart {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.empty-cart h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.empty-cart p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.continue-shopping-btn {
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.continue-shopping-btn:hover {
    background: var(--primary-hover);
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.cart-items-section {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

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

.item-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.item-variant {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.item-price {
    color: #2ed573;
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
}

.quantity {
    min-width: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
}

.item-total {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
}

.remove-btn:hover {
    background: #ffeaea;
}

.cart-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.summary-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 1rem;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-row.total {
    border-top: 2px solid var(--border-color);
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    background: #2ed573;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #26c463;
}

.checkout-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}


/* Responsive Design */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas: 
            "image details"
            "quantity total"
            "remove remove";
        gap: 1rem;
    }
    
    .item-image {
        grid-area: image;
    }
    
    .item-details {
        grid-area: details;
    }
    
    .quantity-controls {
        grid-area: quantity;
        justify-content: start;
    }
    
    .item-total {
        grid-area: total;
        text-align: right;
    }
    
    .remove-btn {
        grid-area: remove;
        justify-self: start;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 480px) {
    .cart-container {
        padding: 0 0.5rem;
    }
    
    .cart-header,
    .cart-items-section,
    .summary-card,
    .empty-cart {
        padding: 1rem;
    }
    
    .cart-header h1 {
        font-size: 1.5rem;
    }
}

.search-page-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--text-color);
}

.search-page-container h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, var(--primary-color), #ff4d4d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.search-form {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 0;
}

.search-input-full {
  width: 50%;
  padding: 1rem;
  font-size: 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px 0 0 12px;
  border-right: none;
  background: var(--card-bg);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.search-input-full:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.search-button-full {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: 1px solid var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-hover));
  color: white;
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.search-button-full:hover {
  background: linear-gradient(45deg, var(--primary-hover), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.4);
}

/* SCOPED: All product styles are now scoped to search page */
.search-page-container .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.search-page-container .product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 350px;
}

.search-page-container .product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

/* UPDATED: Image fills full container */
.search-page-container .product-image-container {
  width: 100%;
  height: 100%; /* Fill entire card */
  position: relative;
  background: var(--card-bg) !important;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.search-page-container .product-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: var(--card-bg);
  transition: transform 0.4s ease;
}

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

/* UPDATED: Product info only shows on hover */
.search-page-container .product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1;
}

.search-page-container .product-card:hover .product-info {
  opacity: 1;
  transform: translateY(0);
}

.search-page-container .product-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.search-page-container .product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.search-page-container .product-details {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.search-page-container .product-category {
  background: rgba(var(--primary-color-rgb), 0.3);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.search-page-container .product-description {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
  margin-top: 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.search-page-container .product-card:hover .product-description {
  max-height: 60px;
  margin-top: 12px;
}

.loading-spinner {
  text-align: center;
  padding: 50px;
  font-size: 1.2rem;
  color: var(--text-color);
  font-style: italic;
}

.search-results-container {
  margin-top: 40px;
}

.search-results-container h2 {
  color: var(--text-color);
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

/* Real-time search results styling */
.realtime-results {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  max-height: 400px;
  overflow-y: auto;
  position: absolute;
  width: 50%;
  z-index: 1000;
}

.realtime-result-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.realtime-result-item:hover {
  background-color: var(--bg-color);
  transform: translateX(5px);
}

.realtime-result-item:last-child {
  border-bottom: none;
}

.realtime-result-name {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}

.realtime-result-category {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}

/* Responsive Design - SCOPED */
@media (max-width: 768px) {
  .search-page-container {
    padding: 20px 15px;
  }

  .search-page-container h1 {
    font-size: 2.2rem;
  }

  .search-form {
    flex-direction: column;
    gap: 15px;
  }

  .search-input-full {
    width: 100%;
    border-radius: 12px;
    border-right: 1px solid var(--border-color);
  }

  .search-button-full {
    width: 100%;
    border-radius: 12px;
  }

  .search-page-container .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .search-page-container .product-card {
    height: 320px;
  }

  .search-page-container .product-info {
    padding: 20px 15px;
  }

  .search-page-container .product-name {
    font-size: 1.2rem;
  }

  .search-page-container .product-price {
    font-size: 1.4rem;
  }

  .realtime-results {
    width: 100%;
    position: relative;
  }
}

@media (max-width: 576px) {
  .search-page-container .product-grid {
    grid-template-columns: 1fr;
  }

  .search-page-container .product-card {
    height: 300px;
  }

  .search-page-container .product-info {
    padding: 18px 12px;
  }

  .search-page-container .product-name {
    font-size: 1.1rem;
  }

  .search-page-container .product-price {
    font-size: 1.3rem;
  }

  .search-input-full {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
/* ShippingTracker.css */
.shipping-tracker {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.tracker-header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tracker-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.tracker-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Search Form */
.tracker-search {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tracking-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tracking-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.track-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.track-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.track-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #dc2626;
}

/* Recent Trackings */
.recent-trackings {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.recent-header h3 {
    margin: 0;
    color: #1e293b;
}

.clear-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.clear-btn:hover {
    background: #dc2626;
}

.recent-list {
    display: grid;
    gap: 15px;
}

.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.recent-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.recent-awb {
    font-weight: 600;
    color: #1e293b;
}

.recent-status {
    font-weight: 600;
    text-transform: capitalize;
}

.recent-courier {
    color: #64748b;
    font-size: 14px;
}

/* Shipment Details */
.shipment-details {
    display: grid;
    gap: 25px;
}

.summary-card,
.timeline-card,
.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.summary-header h2 {
    margin: 0;
    color: #1e293b;
}

.status-badge {
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item label {
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

.summary-item .value {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #667eea;
}

.timeline-content {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.timeline-status {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.timeline-date {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 8px;
}

.timeline-location {
    color: #475569;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.no-activity {
    text-align: center;
    color: #64748b;
    font-style: italic;
    padding: 40px 20px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.info-card h4 {
    margin: 0 0 20px 0;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.info-content p {
    margin: 0 0 12px 0;
    color: #475569;
}

.info-content strong {
    color: #1e293b;
}

/* Help Section */
.help-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.help-section h3 {
    margin: 0 0 20px 0;
    color: #1e293b;
    text-align: center;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.help-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.help-item i {
    color: #667eea;
    font-size: 20px;
    width: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shipping-tracker {
        padding: 15px;
    }

    .tracker-header {
        padding: 30px 15px;
    }

    .tracker-header h1 {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .tracking-input,
    .track-btn {
        width: 100%;
    }

    .recent-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .recent-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .summary-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for new tracking results */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shipment-details {
    animation: fadeInUp 0.5s ease-out;
}
.shipping-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-header h1 {
    margin: 0 0 15px 0;
    font-size: 3rem;
    font-weight: 700;
}

.policy-header p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.policy-section {
    margin-bottom: 60px;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
    display: inline-block;
}

/* Shipping Methods */
.shipping-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.method-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.method-card h3 {
    margin: 0 0 10px 0;
    color: #1e293b;
}

.method-card p {
    color: #64748b;
    margin-bottom: 15px;
}

.method-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

/* Timeline Grid */
.timeline-grid {
    display: grid;
    gap: 25px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.timeline-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
}

.timeline-content p {
    margin: 0;
    color: #64748b;
}

/* Service Areas */
.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.area-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.area-card h3 {
    margin: 0 0 20px 0;
    color: #1e293b;
}

.area-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.area-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.area-card li:last-child {
    border-bottom: none;
}

.delivery-time {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #22c55e;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Tracking Info */
.tracking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tracking-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tracking-step h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
}

.tracking-step p {
    margin: 0;
    color: #64748b;
}

/* Important Notes */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.note-card {
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid;
}

.note-card.warning {
    background: #fef3f2;
    border-left-color: #f04438;
}

.note-card.info {
    background: #f0f9ff;
    border-left-color: #0ea5e9;
}

.note-card.tip {
    background: #f0fdf4;
    border-left-color: #10b981;
}

.note-card i {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.note-card.warning i { color: #f04438; }
.note-card.info i { color: #0ea5e9; }
.note-card.tip i { color: #10b981; }

.note-card h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
}

.note-card p {
    margin: 0;
    color: #64748b;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shipping-policy {
        padding: 15px;
    }

    .policy-header {
        padding: 30px 20px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

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

    .shipping-methods,
    .service-areas,
    .tracking-info,
    .notes-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
}
.returns-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-header h1 {
    margin: 0 0 15px 0;
    font-size: 3rem;
    font-weight: 700;
}

.policy-header p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.policy-section {
    margin-bottom: 60px;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
    border-bottom: 3px solid #ec4899;
    padding-bottom: 10px;
    display: inline-block;
}

/* Return Timeline */
.return-timeline {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.timeline-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.point-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.timeline-point.active .point-circle {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    transform: scale(1.1);
}

.point-label {
    font-weight: 600;
    color: #1e293b;
}

.timeline-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 20px;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.condition-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.condition-card.valid {
    background: #f0fdf4;
    border-left: 5px solid #10b981;
}

.condition-card.invalid {
    background: #fef3f2;
    border-left: 5px solid #f04438;
}

.condition-icon {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.condition-card.valid .condition-icon {
    color: #10b981;
}

.condition-card.invalid .condition-icon {
    color: #f04438;
}

.condition-card h4 {
    margin: 0 0 20px 0;
    color: #1e293b;
}

.condition-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #64748b;
}

.condition-card li:last-child {
    border-bottom: none;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-size: 1.3rem;
}

.step-content p {
    margin: 0;
    color: #64748b;
    font-size: 1.1rem;
}

/* Refund Info */
.refund-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.refund-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.refund-card h4 {
    margin: 0 0 25px 0;
    color: #1e293b;
    font-size: 1.3rem;
}

.refund-methods {
    display: grid;
    gap: 15px;
}

.method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.method i {
    color: #ec4899;
    font-size: 1.5rem;
    width: 30px;
}

.method span {
    font-weight: 500;
    color: #1e293b;
}

.timeline-details {
    display: grid;
    gap: 20px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    font-weight: 700;
    color: #ec4899;
    font-size: 1.1rem;
}

.timeline-item .description {
    color: #64748b;
    text-align: right;
}

/* Exchange Info */
.exchange-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.exchange-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.exchange-card h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
    font-size: 1.3rem;
}

.exchange-card p {
    margin: 0 0 20px 0;
    color: #64748b;
    font-size: 1.1rem;
}

.exchange-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exchange-card li {
    padding: 8px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.exchange-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Support Section */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.support-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card i {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 20px;
}

.support-card h4 {
    margin: 0 0 15px 0;
    color: #1e293b;
}

.support-card p {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-weight: 500;
    font-size: 1.1rem;
}

.support-card span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .returns-policy {
        padding: 15px;
    }

    .policy-header {
        padding: 30px 20px;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

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

    .timeline-visual {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-line {
        width: 3px;
        height: 50px;
        margin: 0;
    }

    .conditions-grid,
    .refund-info,
    .exchange-info,
    .support-options {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
/* ===== THEME VARIABLES ONLY ===== */
/* This file only defines CSS variables for light/dark mode */
/* No component styles, no layout styles, no reset styles */

/* Light mode (default) */
[data-theme="light"] {
  --bg-color: #ffffff;
  --text-color: #000000;
  --card-bg: #f8f9fa;
  --border-color: #dee2e6;
  --header-bg: #ffffff;
  --footer-bg: #f8f9fa;
  --primary-color: #3b82f6;
  --primary-hover: #2563eb;
}

/* Dark mode */
[data-theme="dark"] {
  --bg-color: #1a1a1a;
  --text-color: #ffffff;
  --card-bg: #2d2d2d;
  --border-color: #444444;
  --header-bg: #2d2d2d;
  --footer-bg: #1a1a1a;
  --primary-color: #60a5fa;
  --primary-hover: #93c5fd;
}

/* Apply theme to body only */
body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/*# sourceMappingURL=main.f7c91c7d8c176ce73f53.css.map*/