/* Premium Production CSS for BodyzFuel */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Modern Professional Color Palette */
  --primary-brand: #FF4D00;
  --primary-dark: #E6440D;
  --secondary-brand: #00D4FF;
  --accent-gold: #FFD700;
  --success-green: #10B981;
  --warning-orange: #F59E0B;
  --error-red: #EF4444;
  
  /* Neutral Palette */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Modern Dark Theme */
  --bg-primary: #0A0B0F;
  --bg-secondary: #1A1B23;
  --bg-tertiary: #2A2B35;
  --surface-primary: rgba(255, 255, 255, 0.05);
  --surface-secondary: rgba(255, 255, 255, 0.08);
  --surface-elevated: rgba(255, 255, 255, 0.12);
  
  /* Typography */
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-tertiary: rgba(255, 255, 255, 0.6);
  --text-disabled: rgba(255, 255, 255, 0.38);
  
  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-px: 1px;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-64: 16rem;
}

/* ======================
   Global Reset & Base Styles
   ====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ======================
   Animated Background
   ====================== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, var(--primary-brand) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--secondary-brand) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, #7c3aed 0%, transparent 50%);
  opacity: 0.03;
  z-index: -1;
  animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { 
    opacity: 0.03; 
  }
  50% { 
    opacity: 0.08; 
  }
}

/* ======================
   Navigation Styles
   ====================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 11, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 77, 0, 0.2);
  padding: 1rem 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 11, 15, 0.95);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary-brand);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-brand);
  text-shadow: 0 0 20px var(--primary-brand);
  animation: logoGlow 2s ease-in-out infinite alternate;
  text-decoration: none;
  gap: 10px; /* add space between logo image and text */
}

.nav-logo img {
  width: 60px;       /* bigger size */
  height: 60px;
  animation: logoSpin 6s linear infinite;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--primary-brand)); /* glow effect */
  /* Optional: add a little brightness */
  filter: drop-shadow(0 0 8px var(--primary-brand)) brightness(1.1);
}

/* Remove the old icon styles - you can just delete this from your CSS */
.nav-logo i {
  display: none;
}

@keyframes logoGlow {
  from {
    text-shadow: 0 0 20px var(--primary-brand);
  }
  to {
    text-shadow: 0 0 30px var(--primary-brand), 0 0 40px var(--primary-brand);
  }
}

@keyframes logoSpin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  transition: all var(--transition-normal);
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
  transition: width var(--transition-normal);
}

.nav-menu a:hover {
  color: var(--primary-brand);
  text-shadow: 0 0 10px var(--primary-brand);
}

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

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

.cart-icon {
  position: relative;
  color: var(--text-secondary);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.cart-icon:hover {
  color: var(--warning-orange);
  text-shadow: 0 0 15px var(--warning-orange);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, var(--error-red), var(--warning-orange));
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  animation: pulse 2s infinite;
}

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

/* ======================
   Login Dropdown Styles
   ====================== */
.login-dropdown {
  position: relative;
  display: inline-block;
}

.login-dropdown .login-btn {
  background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.login-dropdown .login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(255, 77, 0, 0.5);
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  background: var(--surface-elevated);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: var(--radius-xl);
  min-width: 200px;
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  overflow: hidden;
}

.dropdown-content.show {
  display: block;
  animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-content a {
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(255, 77, 0, 0.1);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: rgba(255, 77, 0, 0.1);
  color: var(--primary-brand);
  transform: translateX(5px);
}

.dropdown-content a i {
  width: 20px;
  text-align: center;
}

/* ======================
   Mobile Menu Styles
   ====================== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: var(--primary-brand);
}

/* ======================
   Hero Section with Slider
   ====================== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.slide.active {
  opacity: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(255, 77, 0, 0.3) 0%,
    rgba(0, 212, 255, 0.3) 50%,
    rgba(124, 58, 237, 0.3) 100%);
}

.slide1 {
  background-image: url('../images/slider1.jpg');
}

.slide2 {
  background-image: url('../images/slider2.jpg');
}

.slide3 {
  background-image: url('../images/slider3.jpg');
}

.slide4 {
  background-image: url('../images/slider4.jpg');
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
  max-width: 90%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-content h1 {
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand), var(--warning-orange));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.5);
}

@keyframes gradientShift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 400;
  animation: fadeIn 1s ease-out 0.5s backwards;
}

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

.cta-button {
  background: linear-gradient(45deg, var(--warning-orange), var(--error-red));
  color: white;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

/* ======================
   Slider Navigation
   ====================== */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--primary-brand);
  box-shadow: 0 0 20px var(--primary-brand);
  border: 2px solid white;
}

/* ======================
   Featured Products Section
   ====================== */
.featured-products {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
  border-radius: var(--radius-sm);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  transform: translateY(0);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
    rgba(255, 77, 0, 0.1),
    rgba(0, 212, 255, 0.1));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 77, 0, 0.2);
  border-color: var(--primary-brand);
}

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

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

.product-info {
  padding: 2rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success-green);
}

.mrp {
  text-decoration: line-through;
  color: var(--gray-500);
  font-size: 1.1rem;
}

.discount {
  background: linear-gradient(45deg, var(--error-red), var(--warning-orange));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
}

.add-to-cart {
  width: 100%;
  background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
  color: white;
  border: none;
  padding: 1rem;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 77, 0, 0.4);
}

/* ======================
   About Section
   ====================== */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.about-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.about-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
  border-radius: var(--radius-sm);
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

/* ======================
   Contact Section
   ====================== */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--error-red), var(--warning-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--error-red), var(--warning-orange));
  border-radius: var(--radius-sm);
}

.contact-section p {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.contact-section form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--surface-elevated);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.contact-section form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(255, 77, 0, 0.3);
  border-color: var(--primary-brand);
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 77, 0, 0.3);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.contact-section input:focus,
.contact-section textarea:focus {
  outline: none;
  border-color: var(--primary-brand);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.3);
  background: rgba(10, 10, 10, 0.9);
}

.contact-section textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-section button[type="submit"] {
  width: 100%;
  background: linear-gradient(45deg, var(--warning-orange), var(--error-red));
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-section button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.contact-section button[type="submit"]:hover::before {
  left: 100%;
}

.contact-section button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

/* ======================
   Store Image Section
   ====================== */
.store-image-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.store-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 77, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: pulseBackground 8s ease-in-out infinite alternate;
}

@keyframes pulseBackground {
  0%, 100% { 
    opacity: 0.05; 
  }
  50% { 
    opacity: 0.15; 
  }
}

.store-image-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 77, 0, 0.2);
  border: 1px solid rgba(255, 77, 0, 0.3);
  transition: all 0.5s ease;
}

.store-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 60px rgba(255, 77, 0, 0.4);
  border-color: var(--primary-brand);
}

.store-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.store-image-container:hover .store-image {
  transform: scale(1.03);
}

.store-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
    rgba(255, 77, 0, 0.1) 0%,
    rgba(0, 212, 255, 0.1) 50%,
    rgba(255, 107, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.store-image-container:hover .store-image-overlay {
  opacity: 1;
}

.store-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 3;
}

.store-image-container:hover .store-image-caption {
  transform: translateY(0);
}

/* ======================
   Map Section
   ====================== */
.map-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: mapPulse 6s ease-in-out infinite alternate;
}

@keyframes mapPulse {
  0%, 100% { 
    opacity: 0.03; 
  }
  50% { 
    opacity: 0.1; 
  }
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
  border-radius: var(--radius-sm);
}

.map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 77, 0, 0.3);
  border: 1px solid rgba(255, 77, 0, 0.4);
  transition: all 0.5s ease;
  z-index: 1;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 60px rgba(255, 77, 0, 0.5);
  border-color: var(--primary-brand);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
  filter: grayscale(30%) contrast(110%) brightness(90%);
  transition: filter 0.5s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(100%) brightness(100%);
}

/* ======================
   Reviews Section
   ====================== */
.reviews-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: reviewsPulse 7s ease-in-out infinite alternate;
}

@keyframes reviewsPulse {
  0%, 100% { 
    opacity: 0.03; 
  }
  50% { 
    opacity: 0.1; 
  }
}

.reviews-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--error-red), var(--warning-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.reviews-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--error-red), var(--warning-orange));
  border-radius: var(--radius-sm);
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
    rgba(255, 77, 0, 0.1),
    rgba(0, 212, 255, 0.1));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 77, 0, 0.2);
  border-color: var(--primary-brand);
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.reviewer-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 2px solid var(--primary-brand);
  box-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
  transition: all var(--transition-normal);
}

.review-card:hover .reviewer-image {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 77, 0, 0.5);
}

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

.reviewer-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.review-rating {
  color: var(--warning-orange);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

.review-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.review-content::before,
.review-content::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-brand);
  opacity: 0.5;
  line-height: 0;
}

.review-content::before {
  vertical-align: top;
  margin-right: 5px;
}

.review-content::after {
  vertical-align: bottom;
  margin-left: 5px;
}

/* ======================
   Footer
   ====================== */
.footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 77, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--primary-brand);
  margin-bottom: 1rem;
  font-family: 'Orbitron', monospace;
}

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

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

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-section a:hover {
  color: var(--primary-brand);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ======================
   Loading Animation
   ====================== */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 77, 0, 0.3);
  border-top: 3px solid var(--primary-brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg); 
  }
}

/* ======================
   Notification
   ====================== */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(45deg, var(--success-green), var(--primary-brand));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  z-index: 1001;
  animation: slideIn 0.5s ease-out;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ======================
   Scroll Effects & Animations
   ====================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
  
  .nav-menu a {
    font-size: 1.2rem;
  }
  
  /* HERO - Use same height units as slider-container */
  .hero {
    height: 60vh !important;           /* Match slider-container exactly */
    min-height: 200px;
    max-height: 370px;
    margin-top: 70px !important;       /* Restore margin for navbar spacing */
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    width: 100vw;
  }

  /* SLIDER CONTAINER - Must match hero height exactly */
  .slider-container {
    position: relative;
    width: 100%;                       /* Use 100%, not 100vw */
    height: 100% !important;           /* Fill hero container completely */
    min-height: 200px;
    max-height: 370px;
    overflow: hidden;
  }
  
  /* SLIDES - Fill container completely */
  .slide, .slide1, .slide2, .slide3, .slide4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;           /* Use cover for proper fit */
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    margin: 0;
    padding: 0;
  }
  
  /* HERO CONTENT - Perfect centering */
  .hero-content {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 95%;
    max-width: 100vw;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;                   /* Simplified padding */
  }

  .hero-content h1 {
    font-size: 2rem !important;
  }
  
  .hero-content p {
    font-size: 1rem !important;
    padding: 0 !important;             /* Remove extra padding */
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .slider-nav {
    bottom: 15px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-section h2,
  .contact-section h2,
  .reviews-section h2,
  .map-section h2 {
    font-size: 2rem;
  }
  
  .about-section p,
  .contact-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .reviewer-image {
    width: 50px;
    height: 50px;
  }
  
  .reviews-container {
    grid-template-columns: 1fr;
  }
  
  .reviewer-info {
    flex-direction: column;
    text-align: center;
  }
  
  .reviewer-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .reviewer-details {
    text-align: center;
  }
  
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-logo {
    font-size: 1.4rem;
  }
  
  .login-dropdown .login-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .cart-icon {
    font-size: 1.2rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .store-image-section,
  .map-section,
  .reviews-section {
    padding: 3rem 0;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   Utility Classes
   ====================== */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ======================
   Print Styles
   ====================== */
@media print {
  .navbar,
  .footer,
  .loading,
  .notification {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero {
    margin-top: 0;
  }
}
/* ======================
   Dual Map Layout
   ====================== */
.dual-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 77, 0, 0.3);
  border: 1px solid rgba(255, 77, 0, 0.4);
  transition: all 0.5s ease;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 60px rgba(255, 77, 0, 0.5);
  border-color: var(--primary-brand);
}

.map-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.8);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  z-index: 2;
  border: 1px solid var(--primary-brand);
}

@media (max-width: 768px) {
  .dual-map-container {
    grid-template-columns: 1fr;
  }
  
  .map-card {
    margin-bottom: 2rem;
  }
  
  .map-card:last-child {
    margin-bottom: 0;
  }
}
/* ====================== 
   Enhanced WhatsApp Float Button - Matching Phone CSS
   ====================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    animation: whatsappPulse 3s ease-in-out infinite;
    text-decoration: none;
}

/* Second WhatsApp Button (above the first one) */
.whatsapp2 {
    bottom: 100px; /* lift above the first one */
    right: 30px;
}

/* Positioning for first button */
.whatsapp-main {
    bottom: 30px;
    right: 30px;
}

/* Positioning for second button (above the first one) */
.whatsapp-alt {
    bottom: 110px; /* you can change this gap if needed */
    right: 30px;
}
</style>


@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: whatsappBounce 2s ease-in-out infinite;
    margin-top: 0;
}

@keyframes whatsappBounce {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(0.9); }
}

.whatsapp-float:hover i {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* Accessibility */
.whatsapp-float:focus {
    outline: 2px solid #25D366;
    outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float i {
        animation: none;
    }
    
    .whatsapp-float:hover {
        transform: none;
    }
}

/* ====================== 
   Complete Premium Branches Section - Production Ready
   ====================== */

.branches-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.branch-card {
    background: var(--surface-elevated);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 77, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    opacity: 0;
    animation: branchReveal 0.8s ease-out forwards;
    cursor: pointer;
}

.branch-card:nth-child(1) { animation-delay: 0.1s; }
.branch-card:nth-child(2) { animation-delay: 0.3s; }
.branch-card:nth-child(3) { animation-delay: 0.5s; }
.branch-card:nth-child(4) { animation-delay: 0.7s; }

/* Enhanced Gradient Overlay */
.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 77, 0, 0.05) 0%, 
        rgba(0, 212, 255, 0.05) 50%,
        rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Premium Glow Effect */
.branch-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 77, 0, 0.1) 0%, 
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: -1;
    border-radius: 50%;
}

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

.branch-card:hover::after {
    width: 400px;
    height: 400px;
}

.branch-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(255, 77, 0, 0.25),
                0 0 0 1px var(--primary-brand);
    border-color: var(--primary-brand);
}

/* Branch Icon with Advanced Animation */
.branch-icon {
    font-size: 3rem;
    color: var(--primary-brand);
    margin-bottom: 2rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1) rotateY(0deg);
        text-shadow: 0 0 20px rgba(255, 77, 0, 0.3);
    }
    50% { 
        transform: scale(1.05) rotateY(10deg);
        text-shadow: 0 0 30px rgba(255, 77, 0, 0.5);
    }
}

.branch-card:hover .branch-icon {
    transform: scale(1.1) rotateY(20deg);
    color: var(--secondary-brand);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    animation-play-state: paused;
}

/* Enhanced Typography */
.branch-card h3,
.branch-card h4 {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.branch-card h3::after,
.branch-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-radius: var(--radius-sm);
}

.branch-card:hover h3::after,
.branch-card:hover h4::after {
    width: 100%;
}

/* Enhanced Text Styling */
.branch-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.branch-card:hover p {
    color: var(--text-primary);
}

.branch-card p i {
    color: var(--primary-brand);
    margin-right: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.branch-card:hover p i {
    color: var(--secondary-brand);
    transform: scale(1.1);
}

/* Premium Action Link */
.branch-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 77, 0, 0.3);
}

.branch-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

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

.branch-link i {
    margin-left: 10px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    font-size: 0.9rem;
}

.branch-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.5);
    background: linear-gradient(45deg, var(--secondary-brand), var(--primary-brand));
}

.branch-link:hover i {
    transform: translateX(5px);
}

.branch-link:active {
    transform: translateY(0) scale(0.98);
    transition: transform 0.1s ease;
}

/* Advanced Animations */
@keyframes branchReveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-10deg);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

/* Stagger Animation for Cards */
.branch-card.animate-in {
    animation: branchSlideIn 0.6s ease-out forwards;
}

@keyframes branchSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .branches-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .branch-card {
        padding: 2rem;
    }
    
    .branch-card h3,
    .branch-card h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .branches-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .branch-card {
        padding: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .branch-card h3,
    .branch-card h4 {
        font-size: 1.4rem;
    }
    
    .branch-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .branch-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .branch-card {
        padding: 2rem;
    }
    
    .branch-card h3,
    .branch-card h4 {
        font-size: 1.3rem;
    }
    
    .branch-card p {
        font-size: 1rem;
    }
    
    .branch-icon {
        font-size: 2.2rem;
    }
}

/* Large screens - maintain 3 columns with better spacing */
@media (min-width: 1201px) {
    .branches-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1400px;
    }
    
    .branch-card {
        padding: 3rem;
    }
}

/* Performance Optimizations */
.branch-card {
    contain: layout style paint;
    will-change: transform;
}

/* Accessibility Enhancements */
.branch-card:focus-within {
    outline: 2px solid var(--primary-brand);
    outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .branch-card,
    .branch-link,
    .branch-icon {
        animation: none;
        transition: none;
    }
    
    .branch-card:hover {
        transform: none;
    }
}

/* Print Optimization */
@media print {
    .branch-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .branch-card::before,
    .branch-card::after {
        display: none;
    }
}

/* Micro-interactions */
.branch-card:active {
    transform: translateY(-4px) scale(0.98);
}
/* ====================== 
   Subtle Developer Credit Section - Less Eye-Catching
   ====================== */

.footer-bottom {
    position: relative;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 77, 0, 0.1);
}

.developer-credit {
    display: inline-block;
    margin: 1rem auto 0;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 77, 0, 0.1);
    border-radius: var(--radius);
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.developer-credit:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 77, 0, 0.2);
}

.developer-credit p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.developer-credit strong {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.developer-credit:hover strong {
    color: var(--primary-brand);
}

/* Responsive */
@media (max-width: 768px) {
    .developer-credit {
        padding: 0.7rem 1.2rem;
        margin: 0.8rem auto 0;
    }
    
    .developer-credit p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .developer-credit {
        padding: 0.6rem 1rem;
    }
    
    .developer-credit p {
        font-size: 0.75rem;
    }
}
/* ====================== 
   Floating Call Button Only - Production Ready
   ====================== */

.call-float {
    position: fixed;
    bottom: 100px; /* Above WhatsApp button */
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, var(--primary-brand), var(--secondary-brand));
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    animation: callPulse 3s ease-in-out infinite;
    text-decoration: none;
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 77, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 77, 0, 0.6), 0 0 0 10px rgba(255, 77, 0, 0.1);
    }
}

.call-float:hover {
    background: linear-gradient(45deg, var(--secondary-brand), var(--primary-brand));
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.6);
}

.call-float i {
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.call-float:hover i {
    animation-play-state: paused;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .call-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 20px;
        font-size: 24px;
    }
}

/* Positioning for first phone button */
.call-main {
    bottom: 100px; /* your existing position */
    right: 30px;
}

/* Positioning for second phone button (stacked above first) */
.call-alt {
    bottom: 180px; /* adjust spacing above first */
    right: 30px;
}

/* ====================== 
   Enhanced Footer Social Links - Matching Main CSS
   ====================== */

.footer-section h4 {
    color: var(--primary-brand);
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-brand), var(--secondary-brand));
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border-radius: var(--radius-sm);
}

.footer-section:hover h4::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Base Social Icon Styling */
.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Instagram Styling */
.instagram-link {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 5px 20px rgba(240, 148, 51, 0.3);
}

.instagram-link:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(240, 148, 51, 0.5);
}

/* Facebook Styling */
.social-links a[aria-label="Facebook"] {
    background: linear-gradient(45deg, #1877F2, #166FE5);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.3);
}

.social-links a[aria-label="Facebook"]:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
}

/* Twitter Styling */
.social-links a[aria-label="Twitter"] {
    background: linear-gradient(45deg, #1DA1F2, #0D8BD9);
    box-shadow: 0 5px 20px rgba(29, 161, 242, 0.3);
}

.social-links a[aria-label="Twitter"]:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(29, 161, 242, 0.5);
}

/* YouTube Styling */
.social-links a[aria-label="YouTube"] {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.social-links a[aria-label="YouTube"]:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
}

/* Shimmer Effect */
.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

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

/* Icon Animation */
.social-links a i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1;
}

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

/* Active State */
.social-links a:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Accessibility */
.social-links a:focus {
    outline: 2px solid var(--primary-brand);
    outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .social-links a {
        transition: none;
    }
    
    .social-links a:hover {
        transform: none;
    }
    
    .social-links a::before {
        transition: none;
    }
}
/* Product Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    color: #666;
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.close:hover {
    color: #000;
    transform: scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

/* Product Images Section */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #007bff;
    transform: scale(1.05);
}

/* Product Details Section */
.product-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.product-details .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.description {
    margin-bottom: 25px;
}

.description h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.description p {
    color: #666;
    line-height: 1.6;
}

.cart-section {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-controls button {
    background: #f8f9fa;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.quantity-controls button:hover {
    background: #e9ecef;
}

.quantity-controls input {
    border: none;
    text-align: center;
    width: 60px;
    padding: 10px 5px;
    font-size: 16px;
}

.add-to-cart-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Enhanced product card styles */
.product-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.view-details-btn,
.quick-add-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-details-btn {
    background: #007bff;
    color: white;
}

.view-details-btn:hover {
    background: #0056b3;
}

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

.quick-add-btn:hover {
    background: #1e7e34;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-controls {
        justify-content: center;
    }
}

/* Message animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Extra Store Images Row */
.store-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap; /* makes it responsive */
}

.store-row img {
  width: 100%;
  max-width: 450px; /* keep both smaller than main */
  border-radius: var(--radius-xl);
  box-shadow: 0 0 40px rgba(255, 77, 0, 0.2);
  border: 1px solid rgba(255, 77, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.store-row img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 77, 0, 0.4);
  border-color: var(--primary-brand);
}
