/* ===== HARLEY-DAVIDSON INSPIRED DESIGN TOKENS ===== */
:root {
  /* 🎨 HARLEY-DAVIDSON BRAND COLORS */
  --color-harley-orange: #FF6600;      /* Official Harley Orange */
  --color-harley-black: #000000;       /* Harley Black */
  --color-harley-silver: #C0C0C0;      /* Chrome Silver */
  --color-harley-dark-gray: #1A1A1A;   /* Dark Gray */
  --color-harley-red: #CC0000;         /* Harley Red Accent */
  
  /* Primary Brand Colors - HARLEY THEME */
  --color-primary: #FF6600;            /* Harley Orange - PRIMARY */
  --color-primary-dark: #CC5200;       /* Darker orange */
  --color-primary-light: #FF8533;      /* Lighter orange */
  --color-primary-rgb: 255, 102, 0;    /* RGB for opacity */
  
  /* Secondary Colors - Black/Chrome */
  --color-secondary: #000000;          /* Harley Black */
  --color-secondary-dark: #000000;     /* Pure Black */
  --color-secondary-light: #1A1A1A;    /* Off-black */
  
  /* Accent Colors - Chrome/Leather */
  --color-accent: #C0C0C0;             /* Chrome Silver */
  --color-accent-dark: #999999;        /* Dark silver */
  --color-accent-light: #E0E0E0;       /* Light chrome */
  --color-leather: #8B4513;            /* Brown leather */
  
  /* State Colors */
  --color-success: #10B981;            /* Green */
  --color-error: #DC2626;              /* Red */
  --color-warning: #F59E0B;            /* Amber */
  --color-info: #3B82F6;               /* Blue */
  
  /* Neutral Grays */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-light: #F5F5F5;
  
  /* Gray Scale */
  --color-gray-50: #FAFAFA;
  --color-gray-100: #F4F4F5;
  --color-gray-200: #E4E4E7;
  --color-gray-300: #D4D4D8;
  --color-gray-400: #A1A1AA;
  --color-gray-500: #71717A;
  --color-gray-600: #52525B;
  --color-gray-700: #3F3F46;
  --color-gray-800: #27272A;
  --color-gray-900: #18181B;
  
  /* Motorcycle Theme Colors */
  --color-chrome: #C0C0C0;
  --color-carbon: #2D2D2D;
  --color-exhaust: #333333;
  --color-rubber: #1A1A1A;
  
  /* Gradients - HARLEY THEME */
  --gradient-harley: linear-gradient(135deg, #FF6600 0%, #CC5200 100%);
  --gradient-black: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
  --gradient-chrome: linear-gradient(135deg, #E0E0E0 0%, #C0C0C0 100%);
  --gradient-orange-dark: linear-gradient(135deg, #FF6600 0%, #B34700 100%);
  
  /* Shadows - HARLEY THEME */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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-orange: 0 10px 15px -3px rgba(255, 102, 0, 0.3), 0 4px 6px -2px rgba(255, 102, 0, 0.2);
  --shadow-black: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Spacing */
  --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;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-fixed: 30;
  --z-modal: 40;
  --z-popover: 50;
  --z-tooltip: 60;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY - HARLEY STYLE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
  letter-spacing: -0.025em;
}

h1 { 
  font-size: 3.5rem; 
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h2 { 
  font-size: 2.5rem; 
  font-weight: 700;
}

h3 { 
  font-size: 2rem; 
  font-weight: 600;
}

h4 { 
  font-size: 1.5rem; 
}

h5 { 
  font-size: 1.25rem; 
}

h6 { 
  font-size: 1rem; 
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-700);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 500;
}

a:hover {
  color: var(--color-primary-dark);
}

strong {
  color: var(--color-black);
  font-weight: 600;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.w-full { width: 100%; }
.h-full { height: 100%; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.my-12 { margin-top: var(--space-12); margin-bottom: var(--space-12); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== COMPONENT STYLES ===== */

/* 🔥 HARLEY BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-harley);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--gradient-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
}

.btn-secondary:hover {
  background: var(--color-gray-900);
  transform: translateY(-2px);
  border-color: var(--color-gray-800);
  box-shadow: var(--shadow-black);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-gray-300);
}

.btn-outline:hover {
  background: var(--color-gray-100);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-chrome {
  background: var(--gradient-chrome);
  color: var(--color-black);
  border: 2px solid var(--color-chrome);
}

.btn-chrome:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(192, 192, 192, 0.3);
}

/* 🏍️ HEADER - HARLEY STYLE */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-primary);
  z-index: var(--z-sticky);
  padding: var(--space-3) 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo - Harley Style */
.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--gradient-harley);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  border: 2px solid var(--color-black);
  box-shadow: 0 4px 6px -1px rgba(255, 102, 0, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-primary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-black);
  line-height: 1;
  letter-spacing: 0.05em;
}

.logo-secondary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-primary);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Desktop Navigation - Harley Style */
.desktop-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gray-800);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(255, 102, 0, 0.1);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.nav-cta {
  background: var(--gradient-harley);
  color: var(--color-white) !important;
  padding: var(--space-2) var(--space-4) !important;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
}

.nav-cta:hover {
  background: var(--gradient-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  border-color: var(--color-primary);
}

/* Mega Menu - Harley Style */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 900px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
  border: 2px solid var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: var(--z-dropdown);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.mega-menu-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-primary);
}

.mega-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mega-menu-list li a {
  color: var(--color-gray-700);
  font-size: 0.875rem;
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-fast);
}

.mega-menu-list li a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.mega-menu-list li a::before {
  content: '→';
  color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.mega-menu-list li a:hover::before {
  opacity: 1;
}

.featured-column {
  background: var(--gradient-black);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.featured-menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-menu-content .mega-menu-title {
  color: var(--color-white);
  border-bottom-color: var(--color-primary);
}

.featured-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 2px solid var(--color-gray-800);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: var(--space-2);
  z-index: var(--z-modal);
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--color-primary);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-gray-800);
  transition: all var(--transition-fast);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: var(--z-modal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-2xl);
  transition: right var(--transition-base);
  z-index: var(--z-popover);
  overflow-y: auto;
  border-left: 2px solid var(--color-primary);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 2px solid var(--color-primary);
  background: var(--gradient-black);
}

.mobile-nav-close {
  background: none;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.mobile-nav-content {
  padding: var(--space-6);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  color: var(--color-gray-800);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.mobile-nav-link:hover {
  background: rgba(255, 102, 0, 0.1);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.mobile-nav-link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-content {
  display: none;
  padding-left: var(--space-4);
  margin-top: var(--space-2);
  border-left: 2px solid var(--color-primary);
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-menu-section {
  margin-bottom: var(--space-4);
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-gray-300);
}

.mobile-submenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-submenu li a {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  padding: var(--space-2);
  display: block;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-submenu li a:hover {
  background: rgba(255, 102, 0, 0.1);
  color: var(--color-primary);
  padding-left: var(--space-4);
}

.mobile-nav-cta {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-2);
}

.mobile-contact-info {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 2px solid var(--color-primary);
}

.mobile-contact-info .mobile-menu-title {
  color: var(--color-primary);
  border-bottom: none;
}

/* 🏍️ HERO SECTION - HARLEY STYLE */
.hero-section {
  margin-top: 80px;
  position: relative;
  background: var(--gradient-black);
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 600px;
}

.hero-slide {
  position: relative;
  height: 100%;
}

.hero-slide-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--space-20);
  color: var(--color-white);
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-harley);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* 🛠️ CATEGORIES SECTION - HARLEY STYLE */
.categories-section {
  padding: var(--space-20) 0;
  background: var(--color-gray-50);
  position: relative;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-harley);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
  color: var(--color-black);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.section-subtitle {
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.category-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-harley);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  color: var(--color-black);
}

.category-description {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: var(--space-4);
}

.category-link {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.category-link:hover {
  gap: var(--space-2);
}

/* 🔥 PRODUCTS SECTION - HARLEY STYLE */
.products-section {
  padding: var(--space-20) 0;
  background: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: 2px solid var(--color-gray-200);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.product-image {
  width: 100%;
  height: 250px;
  background-color: var(--color-gray-200);
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-harley);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.product-info {
  padding: var(--space-6);
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-black);
  line-height: 1.3;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.product-brand {
  font-size: 0.875rem;
  color: var(--color-gray-700);
  background: var(--color-gray-100);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.product-condition {
  font-size: 0.75rem;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.condition-new {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.condition-used {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.condition-refurbished {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.product-price::before {
  content: '$';
  font-size: 1rem;
  opacity: 0.7;
}

.section-cta {
  text-align: center;
}

/* 🏍️ BRANDS SECTION - HARLEY STYLE */
.brands-section {
  padding: var(--space-16) 0;
  background: var(--gradient-black);
  color: var(--color-white);
  position: relative;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-harley);
}

.brands-section .section-title {
  color: var(--color-white);
}

.brands-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.brand-logo:hover {
  background: rgba(255, 102, 0, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.brand-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.brand-logo:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.brand-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 📞 CTA SECTION - HARLEY STYLE */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--gradient-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-harley);
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* 🏍️ FOOTER - HARLEY STYLE */
.footer {
  background: var(--gradient-black);
  color: var(--color-white);
  padding: var(--space-12) 0 var(--space-8);
  border-top: 4px solid var(--color-primary);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-col-main {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-logo .logo-mark {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
  max-width: 300px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-primary);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: var(--space-2);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  padding: var(--space-1) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links li a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-links li a::before {
  content: '→';
  color: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-links li a:hover::before {
  opacity: 1;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.newsletter-input {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

.disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-4);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* ===== FORM ELEMENTS - HARLEY STYLE ===== */
.input {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--color-white);
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.select {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--color-white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.textarea {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--color-white);
  min-height: 100px;
  resize: vertical;
}

.textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--color-gray-800);
  font-size: 0.875rem;
}

/* ===== ALERTS & NOTIFICATIONS ===== */
.alert {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border-left: 4px solid;
  margin-bottom: var(--space-4);
  font-size: 0.875rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-left-color: #10b981;
  color: #065f46;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: #ef4444;
  color: #991b1b;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-left-color: #f59e0b;
  color: #92400e;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-left-color: #3b82f6;
  color: #1e40af;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--gradient-harley);
  color: var(--color-white);
}

.badge-secondary {
  background: var(--color-gray-800);
  color: var(--color-white);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

/* ===== CARDS - HARLEY STYLE ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.card-header {
  padding: var(--space-6);
  border-bottom: 2px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  border-top: 2px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-swiper {
    height: 700px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .footer-col-main {
    grid-column: span 2;
  }
  
  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .mega-menu-content {
    grid-template-columns: 1fr;
  }
  
  .hero-swiper {
    height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-col-main {
    grid-column: span 1;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-nav {
    width: 100%;
  }
}

/* ===== ANIMATION CLASSES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== SKELETON LOADING ===== */
.skeleton {
  background: linear-gradient(90deg, 
    var(--color-gray-200) 25%, 
    var(--color-gray-300) 50%, 
    var(--color-gray-200) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--radius-md);
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton-text:last-child {
  margin-bottom: 0;
  width: 70%;
}

.skeleton-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton .product-image {
  background-color: transparent;
}

.skeleton .product-title {
  background-color: var(--color-gray-200);
  color: transparent;
  border-radius: var(--radius-sm);
  height: 24px;
  width: 80%;
}

.skeleton .product-meta {
  background-color: var(--color-gray-200);
  color: transparent;
  border-radius: var(--radius-sm);
  height: 16px;
  width: 60%;
}

.skeleton .product-price {
  background-color: var(--color-gray-200);
  color: transparent;
  border-radius: var(--radius-sm);
  height: 24px;
  width: 40%;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== HARLEY SPECIFIC UTILITIES ===== */
.text-harley-orange {
  color: var(--color-primary);
}

.text-harley-black {
  color: var(--color-secondary);
}

.bg-harley-orange {
  background: var(--gradient-harley);
}

.bg-harley-black {
  background: var(--gradient-black);
}

.border-harley-orange {
  border-color: var(--color-primary);
}

.border-harley-black {
  border-color: var(--color-black);
}

/* Chrome/Silver effects */
.chrome-effect {
  background: var(--gradient-chrome);
  border: 1px solid rgba(192, 192, 192, 0.3);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
              0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Motorcycle engine/danger styles */
.danger-zone {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
  color: white;
  border: 2px solid #dc2626;
}

.danger-zone:hover {
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 100%);
}

/* Leather texture */
.leather-texture {
  background: linear-gradient(135deg, #8B4513 0%, #6b340f 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.leather-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
}

/* Carbon fiber texture */
.carbon-texture {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.carbon-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.05) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.05) 50%, transparent 51%);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* ===== SWIPER OVERRIDES ===== */
.swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 102, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: bold;
}
/* ===== BLOG SECTION ===== */
.blog-section {
    padding: var(--space-20) 0;
    background: var(--color-gray-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--color-primary);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-content {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-black);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.blog-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    transition: gap var(--transition-fast);
}

.blog-link:hover {
    gap: var(--space-2);
}

/* Newsletter in Footer */
.newsletter-col {
    grid-column: span 2;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-4);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}
/* HERO FIX CSS */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hidden-slide {
    display: none !important;
}

.active-slide {
    display: block !important;
}

/* When swiper initializes, it will handle visibility */
.swiper-initialized .hidden-slide {
    display: block !important;
}

.swiper-initialized .swiper-slide:not(.swiper-slide-active) {
    opacity: 0 !important;
    visibility: hidden !important;
}

.swiper-initialized .swiper-slide-active {
    opacity: 1 !important;
    visibility: visible !important;
}
/* Brands Section */


 
/* Free Shipping Banner */
.free-shipping-banner {
    background: linear-gradient(90deg,  #FF6600, #FF8533);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.5s ease;
}

.free-shipping-icon {
    margin-right: 8px;
    font-size: 18px;
}

.free-shipping-text {
    margin: 0 10px;
}

.free-shipping-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 15px;
    transition: opacity 0.3s ease;
}

.free-shipping-link:hover {
    opacity: 0.8;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Adjust header if banner overlaps */
.header {
    margin-top: 50px; /* Banner height */
}