/* ===================================
   CORE FOUNDATION
   =================================== */

/* MODERN COLOR SCHEME & VARIABLES */
:root {
  /* Color Palette */
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #ef4444;
  --secondary: #7c3aed;
  --secondary-dark: #6d28d9;
  --secondary-light: #8b5cf6;
  --accent: #f59e0b;
  --accent-neon: #06b6d4;
  --neon-pink: #ec4899;
  --neon-green: #10b981;
              --carousel-bg: #0a0a0f;
            --text-primary: #f5f0e8;
            --text-secondary: #a8a199;
            --accent: #d4af37;
            --accent-glow: rgba(212, 175, 55, 0.3);
            --card-bg: #1a1a24;
            --shadow-color: rgba(0, 0, 0, 0.6);
  /* Neutral Colors */
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray: #475569;
  --gray-light: #94a3b8;
  --gray-lighter: #e2e8f0;
  --gray-lightest: #f1f5f9;
  --white: #ffffff;
  --black: #000000;
  --color-darker: #05050c;
  --color-gray-800: #171b26;
  
  /* Status Colors */
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #000000;
  --bg-overlay: rgba(15, 23, 42, 0.8);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  --gradient-hero: linear-gradient(135deg, var(--secondary), var(--primary));
  --gradient-neon: linear-gradient(135deg, var(--neon-pink), var(--accent-neon));
  
  /* Spacing */
  --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-25: 6rem;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-neon: 0 0 20px rgba(220, 38, 38, 0.3);
  --shadow-neon-purple: 0 0 30px rgba(124, 58, 237, 0.4);
  
  /* Borders */
  --border-radius: 0.75rem;
  --border-radius-sm: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Z-index */
  --z-negative: -1;
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal-backdrop: 500;
  --z-modal: 600;
  --z-popover: 700;
  --z-tooltip: 800;
  --z-toast: 900;
  --z-age-gate: 950;
  --z-critical: 1000;
  --z-chat: 2147483647; /* Maximum for chat widgets */
  
  /* Animations */
  --float-animation: float 6s ease-in-out infinite;
  --glow-animation: glow 2s ease-in-out infinite alternate;
  --slide-up: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  
  /* Mobile Safe Areas */
  --safe-area-inset-top: env(safe-area-inset-top);
  --safe-area-inset-bottom: env(safe-area-inset-bottom);
  --safe-area-inset-left: env(safe-area-inset-left);
  --safe-area-inset-right: env(safe-area-inset-right);
}

/* ENHANCED RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #b91c1c;
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    text-decoration: none;
    border-radius: 0 0 4px 0;
}
.skip-link:focus {
    top: 0;
}
:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}
/* Remove default outline on mouse click only (keep for keyboard) */
:focus:not(:focus-visible) {
    outline: none;
}
:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
  background: radial-gradient(circle at center, #530505, #5b0140eb, #000000);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: -1;
}
/* When any modal is open, reduce header interaction but keep it visible */
body.modal-open .header {
  z-index: calc(var(--z-modal) - 150) !important; /* 450 */
  pointer-events: none; /* Prevent interaction with header when modal is open */
}
/* Allow dropdown to still work when no modal is open */
body:not(.modal-open) .header {
  pointer-events: auto;
}
/* Modal Open State Management */
body.modal-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

ul, ol {
  list-style: none;
}
/* ENHANCED UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  padding-left: calc(var(--space-4) + var(--safe-area-inset-left));
  padding-right: calc(var(--space-4) + var(--safe-area-inset-right));
}

/* CUSTOM ANIMATIONS */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(220, 38, 38, 0.3); }
  to { box-shadow: 0 0 30px rgba(220, 38, 38, 0.6), 0 0 40px rgba(124, 58, 237, 0.4); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromBottom {
  from { opacity: 0; transform: translateY(100px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(236, 72, 153, 0.8); }
  50% { text-shadow: 0 0 20px rgba(236, 72, 153, 1), 0 0 30px rgba(236, 72, 153, 0.6); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gentleFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}



.w-full { width: 100%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }

.fade-in { animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-up { animation: var(--slide-up); }
.float { animation: var(--float-animation); }
.neon-pulse { animation: neonPulse 2s ease-in-out infinite; }

.loading {
  text-align: center;
  padding: var(--space-8);
  color: var(--gray);
  font-size: var(--text-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================================
   COMPONENTS & UI ELEMENTS
   =================================== */

/* ENHANCED BUTTONS WITH NEW COLORS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--border-radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.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-primary);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
  animation: var(--glow-animation);
}

.btn--secondary {
  background: var(--gradient-secondary);
  box-shadow: var(--shadow-md);
}

.btn--secondary:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon-purple);
}

.btn--outline {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
  text-shadow: none;
}

.btn--outline:hover:not(:disabled) {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-3px);
}

.btn--neon {
  background: transparent;
  color: var(--neon-pink) !important;
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
  text-shadow: none;
}

.btn--neon:hover:not(:disabled) {
  background: var(--neon-pink);
  color: var(--white) !important;
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
  animation: neonPulse 1s ease-in-out infinite;
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.read-more-btn {
  display: inline-block;
  padding: var(--space-4) var(--space-10);
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--border-radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
  animation: var(--glow-animation);
}
.btn-verify {
  background: none;
  border: 1px solid #f39c12;
  color: #856404;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  margin-left: auto;
}
a.verification-menu-item {
    color: var(--white);
    text-align: center;
    padding: var(--space-4);
    background: var(--gradient-primary);
}
.btn-verify:hover {
  background: #f39c12;
  color: white;
}
.logout-actions .btn {
  min-width: 140px;
  padding: var(--space-3) var(--space-5);
  font-weight: 500;
}
.add-to-wishlist-btn.added {
  color: #ffffff !important; 
  background: red;
  border-color: #dc26266b;
}
.filter-actions .btn {
  width: 100%;
  justify-content: center;
}
.cart-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
}
.btn .fa-spinner {
  margin-right: 0.5rem;
}

/*==LOGO==*/
.logo {
  height: auto;
  width: 100px;
  object-fit: contain;
}
.logo h1 {
  font-size: var(--text-2xl);
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: neonPulse 3s ease-in-out infinite;
}

/*==Search==*/
/* Search Bar Styles */
/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.search-suggestions.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestions-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestions-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.clear-recent {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.clear-recent:hover {
    background: #f3f4f6;
    color: #374151;
}

.suggestions-list {
    max-height: 300px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f9fafb;
}

.suggestion-item i {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 14px;
}

.suggestion-details {
    flex: 1;
}

.suggestion-title {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
}

.suggestion-title strong {
    color: #3b82f6;
    font-weight: 600;
}

.suggestion-category {
    font-size: 12px;
    color: #6b7280;
}

.suggestions-footer {
    padding: 12px 16px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    margin:var(--space-1);
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.view-all:hover {
    color: #2563eb;
}

.no-recent-searches {
    padding: 32px 16px;
    text-align: center;
    color: #9ca3af;
}

.no-recent-searches i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.recent-searches-list {
    padding: 8px 0;
}

.recent-search-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.recent-search-item:hover {
    background-color: #f9fafb;
}

.recent-search-item i {
    color: #9ca3af;
    margin-right: 12px;
    font-size: 14px;
}

.recent-search-item span {
    flex: 1;
    color: #374151;
}

.remove-search {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-search:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: calc(var(--z-modal) - 50) !important;
    display: none;
    flex-direction: column;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-container {
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-search-header {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--space-8);
}

.mobile-search-header .search-form {
    flex: 1;
}

.mobile-search-close {
    background: none;
    border: none;
    color: #374151;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
}

.mobile-search-close:hover {
    background: #f3f4f6;
}

.mobile-search-suggestions {
    flex: 1;
    overflow-y: auto;
    display: none;
}

.recent-searches {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.recent-searches h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.recent-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.recent-tag:hover {
    background: #e5e7eb;
}

.remove-tag {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.remove-tag:hover {
    background: #d1d5db;
    color: #374151;
}

.no-tags {
    color: #9ca3af;
    font-size: 14px;
}

/* Mobile Search Toggle in Header */
.header__action.mobile-search-toggle {
    display: none;
}

@media (max-width: 768px) {
.header__search {
        display: none !important;
    }
.search-container {
        width: 100%;
        display: none;
    }
    .header__action.mobile-search-toggle {
        display: flex;
            flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
    }
}

/* Search Error */
.search-error {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ef4444;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
.header__search {
    margin: 0 2rem;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}
.search-form {
    position: relative;
}
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 800px;
}
.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: #f8fafc;
    transition: all 0.3s ease;
}
.search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.search-btn {
    position: absolute;
    left: 0.75rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
.search-container {
    width: 100%;
}
}

/*user actions(login,cart)*/
.user-actions {
    display: flex;
    flex-direction: row;
}
/* Navigation */
.nav {
  display: flex;
  gap: var(--space-8);
}
.nav--desktop {
  display: none;
}
.nav__dropdown {
    position: relative;
}
.nav__dropdown-arrow {
    margin-left: 0.25em;
    opacity: 0.7;
}
.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 0.5rem 0;
    z-index: calc(var(--z-modal) - 50) !important;
}

#searchSuggestions.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: calc(var(--z-modal) - 50) !important; /* 550 */
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.nav__dropdown:hover .nav__dropdown-menu {
    display: block;
}
.nav__dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #555;
    transition: all 0.2s ease;
}
.nav__dropdown-item:hover {
    background: #f8f9ff;
    color: #007bff;
    padding-left: 1.75rem;
}
.nav__dropdown-item--highlight {
    color: #dc3545;
    font-weight: 600;
}
/* Dropdown fixes */
.nav__link--dropdown-trigger.active {
    background-color: rgba(59, 130, 246, 0.1);
}
.nav__dropdown-menu {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Close dropdown when clicking outside */
body.dropdown-open {
    overflow: hidden;
}

/* Ensure dropdowns close properly on mobile */
@media (max-width: 768px) {
    .nav__dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
    }
}
.nav__link {
  position: relative;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  padding: var(--space-3) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  border-bottom: 2px solid red;
  transition: width 0.3s ease;
}
.nav__link:hover::after {
  width: 100%;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__action-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*==home banner==*/
.home-image{
    width:100%;
}
/*==Sales section==*/
.sales-section {
    display: flex;
    margin: 0 auto;
    padding: var(--space-3);
    border-radius: 50px;
    justify-content: center;
}

img.desktop-image,.img.desktop-image{
    border-radius:10px;
}

.hero-actions__grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero-actions__grid {
   flex-direction: column;
}
}
/* USER ACCOUNT STYLES */
.auth-element.logged-in { 
    display: none;
    padding: 8px;
}
.auth-element.logged-out { display: block; }

.user-account {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
}

.user-menu {
  position: relative;
  z-index: calc(var(--z-modal) - 50) !important;
}

.user-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

.user-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.user-icon i {
  color: white;
  font-size: 20px;
}

/* DROPDOWN STYLES */
.dropdown-content,
.user-dropdown {
  position: absolute;
  top: 100%;
  right: 30px;
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: calc(var(--z-dropdown) + 50) !important;
}

.user-account:hover .dropdown-content,
.user-menu:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header,
.user-info {
  padding: 20px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px 12px 0 0;
}

.dropdown-header h3,
.user-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.user-email {
  font-size: 14px;
  opacity: 0.9;
}

.dropdown-body {
  padding: 20px;
}
.login-links {
    padding-top: var(--space-2);
    text-align: center;
}
.login-btn {
  display: block;
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-md);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
/*Login btn container*/
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
/*login text*/
.login-text{
    font-size: 14px;
    font-weight: 500;
    color:var(--bg-primary);
}
/*user icon*/
i.fas.fa-user{
    font-size:20px;
    color:var(--bg-primary);
}
i.fas.fa-user-circle{
    font-size:20px;
    color:var(--bg-primary);
}
i.fas.fa-search {
    color: var(--bg-primary);
    font-size: 20px;
}
.register-link {
  text-align: center;
  display: block;
  color: var(--primary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: var(--transition);
  padding: var(--space-2);
  font-weight: 600;
}

.register-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.user-menu__items {
  padding: 10px 0;
}

.user-menu__item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}
.user-menu__item i {
  margin-right: 10px;
  width: 16px;
  text-align: center;
}
.user-menu__divider {
  height: 1px;
  background: #e8e8e8;
  margin: 8px 0;
}
.user-menu__item--logout {
  color: var(--danger);
}
.user-menu__item--logout:hover {
  background: #fff5f5;
  color: var(--danger);
}
.user-dropdown.show {
  display: block;
}

.user-dropdown::before,
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 12px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
}

/* FORM STYLES */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: #4a6572;
  box-shadow: 0 0 0 3px rgba(74, 101, 114, 0.1);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #e53e3e;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #6b7280;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.forgot-link {
  color: #4a6572;
  text-decoration: none;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* DATA-ACTION INTERACTIVE ELEMENTS */
[data-action] {
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-action]:hover {
  opacity: 0.8;
}

[data-action="open-login-modal"]:hover {
  transform: scale(1.1);
}

.user-icon[data-action] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.user-icon[data-action]:hover {
  background: #e9ecef;
  transform: scale(1.05);
}

.close-btn[data-action] {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-btn[data-action]:hover {
  background: #f8f9fa;
  color: #495057;
}

.user-menu__item--logout[data-action] {
  color: #dc3545;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.user-menu__item--logout[data-action]:hover {
  background: #f8d7da;
  color: #721c24;
}

/* ===================================
   MODALS & OVERLAYS
   =================================== */

/* MODAL STYLES */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal__content {
  background: white;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  background: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h3 {
  margin: 0;
  color: #2d3748;
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e9ecef;
  text-align: center;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

/* AUTH MODAL STYLES */
#loginModal.auth-modal,
#verificationModal.auth-modal,
#logoutModal,
#registerModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: var(--z-modal) !important;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#loginModal.auth-modal.active,
#verificationModal.auth-modal.active {
  display: flex !important;
}

.auth-modal__content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: slideUp 0.3s ease;
  overflow: hidden;
  margin: 0;
}

.auth-modal__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.auth-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.auth-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.auth-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.auth-modal__body {
  padding: 2rem;
}

/* Auth Form Styles */
.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.auth-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 101, 114, 0.1);
}

.auth-form input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
}

.auth-submit-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 101, 114, 0.3);
}

.auth-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Auth Links */
.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.auth-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.auth-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.auth-links span {
  color: #9ca3af;
  margin: 0 0.5rem;
}

/* Verification styles */
.verification-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.verification-alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #856404;
}

.verification-alert i {
  color: #f39c12;
}



.verification-prompt {
  text-align: center;
  padding: 1rem;
}

.verification-prompt i {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 1rem;
}

/* Error States */
.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: none;
}

.auth-error.active {
  display: block;
  animation: shake 0.5s ease;
}

/* Success States */
.auth-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: none;
}

.auth-success.active {
  display: block;
}

/* Loading Animation */
.auth-loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* AGE VERIFICATION MODAL */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-age-gate) !important;
  padding: var(--space-4);
  padding-top: calc(var(--space-4) + var(--safe-area-inset-top));
  padding-bottom: calc(var(--space-4) + var(--safe-area-inset-bottom));
  min-height: -webkit-fill-available;
  min-height: fill-available;
}
.age-gate__content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6) var(--space-4);
  max-width: 100%;
  max-height: 90vh;
  max-height: 90dvh;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.5s ease-out;
  margin: 0 var(--space-4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.age-gate__icon {
  font-size: 2rem;
  color: var(--warning);
  margin-bottom: var(--space-6);
}
.age-gate__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-4);
}
.age-gate__description {
  font-size: var(--text-base);
  color: var(--gray);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.age-gate__buttons {
    display: flex;
    flex-direction: row;
    gap: var(--space-3);
    align-content: center;
    justify-content: center;
}
/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

/* COOKIE BANNER STYLES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: var(--space-4) 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: calc(var(--z-toast) - 50) !important;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.cookie-banner p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
  max-width: 800px;
}

.cookie-banner p a {
  color: var(--primary-light);
  text-decoration: underline;
  transition: var(--transition);
}

.cookie-banner p a:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.cookie-actions .btn {
  min-width: 120px;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: calc(var(--z-age-gate) + 20);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.cookie-settings-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.cookie-settings-content {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6);
  border-bottom: 1px solid var(--gray-lighter);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  color: var(--white);
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.cookie-settings-header h3 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 700;
}

.cookie-settings-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.cookie-settings-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.cookie-settings-body {
  padding: var(--space-6);
}

.cookie-intro {
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
  color: var(--gray);
  line-height: 1.6;
}

.cookie-types {
  margin-bottom: var(--space-8);
}

.cookie-type {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  border: 1px solid var(--gray-lighter);
  transition: var(--transition);
}

.cookie-type:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cookie-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.cookie-type-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cookie-type-title i {
  color: var(--primary);
  font-size: 1.2em;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gray-lighter);
  transition: .4s;
  border-radius: 34px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: var(--white);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--success);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(30px);
}

.cookie-toggle.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle.disabled .cookie-toggle-slider {
  background: var(--gray-light);
}

.cookie-type-description {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.cookie-type-details {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-4);
  font-size: var(--text-xs);
  color: var(--gray-light);
  border: 1px solid var(--gray-lighter);
}

.cookie-type-details ul {
  margin: var(--space-2) 0 var(--space-2) var(--space-4);
  padding-left: var(--space-2);
}

.cookie-type-details li {
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.cookie-settings-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6);
  border-top: 1px solid var(--gray-lighter);
  background: var(--bg-secondary);
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.cookie-save-btn {
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-base);
}

/* Cookie Preferences Button */
.cookie-preferences-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: calc(var(--z-fixed) + 40);
  border: 2px solid var(--primary);
}

.cookie-preferences-btn:hover {
  transform: scale(1.1);
  background: var(--primary);
}

.cookie-preferences-btn i {
  font-size: 1.2rem;
}

/* Cookie Details List (for policy page) */
.cookie-details-list {
  margin-top: var(--space-8);
}

.cookie-details-item {
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}

.cookie-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.cookie-details-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark);
}

.cookie-details-duration {
  background: var(--primary-light);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--border-radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.cookie-details-description {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.cookie-details-purpose {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-4);
  font-size: var(--text-sm);
  border-left: 3px solid var(--primary);
}

.cookie-details-purpose strong {
  color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-banner {
    padding: var(--space-3) 0;
  }
  
  .cookie-banner p {
    font-size: var(--text-xs);
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-actions .btn {
    flex: 1;
    max-width: 200px;
  }
  
  .cookie-settings-content {
    max-height: 95vh;
  }
  
  .cookie-settings-header {
    padding: var(--space-4);
  }
  
  .cookie-settings-body {
    padding: var(--space-4);
  }
  
  .cookie-type {
    padding: var(--space-4);
  }
  
  .cookie-settings-footer {
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  
  .cookie-save-btn {
    width: 100%;
  }
  
  .cookie-preferences-btn {
    bottom: 60px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .cookie-banner p {
    font-size: 0.75rem;
  }
  
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-actions .btn {
    max-width: none;
  }
  
  .cookie-type-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
  
  .cookie-toggle {
    align-self: flex-end;
  }
}

/* Animation for cookie acceptance */
@keyframes cookieAcceptance {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

.cookie-banner.accepted {
  animation: cookieAcceptance 0.5s ease forwards;
}

/* Style for required cookies (cannot be disabled) */
.cookie-type.required .cookie-toggle-slider {
  background: var(--primary) !important;
  cursor: not-allowed;
}

.cookie-type.required .cookie-type-title:after {
  content: "Required";
  background: var(--primary);
  color: var(--white);
  font-size: var(--text-xs);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: var(--space-2);
}

/* Cookie policy link in footer */
.footer__links .cookie-policy-link {
  color: var(--primary-light);
}

.footer__links .cookie-policy-link:hover {
  color: var(--white);
  text-decoration: underline;
}
/* Add to your existing CSS, after the cookie consent styles */

/* Floating Action Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: calc(var(--z-fixed) + 10) !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* Reposition existing floating elements */
.floating-whatsapp,
.back-to-top,
.cookie-preferences-btn {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0;
    flex-shrink: 0;
    z-index: calc(var(--z-fixed) + 5);
}

/* Remove old positioning styles */
.floating-whatsapp {
    bottom: auto !important;
    right: auto !important;
    flex-direction: row;
}

.back-to-top {
    bottom: auto !important;
    right: auto !important;
}

/* Adjust cookie button positioning */
.cookie-preferences-btn {
    bottom: auto !important;
    right: auto !important;
    width: 50px;
    height: 50px;
    margin: 0;
    z-index: calc(var(--z-fixed) + 5) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-whatsapp,
    .back-to-top,
    .cookie-preferences-btn {
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .floating-whatsapp,
    .back-to-top,
    .cookie-preferences-btn {
        transform: scale(0.85);
    }
}


/* LOGOUT MODAL STYLES */
.logout-confirmation {
  text-align: center;
  padding: var(--space-6) 0;
}

.logout-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: var(--space-5);
  opacity: 0.8;
}

.logout-confirmation h3 {
  margin-bottom: var(--space-3);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 600;
}

.logout-confirmation p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.logout-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

/* Modal backdrop and focus management */
.auth-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.auth-modal:focus {
  outline: none;
}

/* ===================================
   PRODUCTS & E-COMMERCE
   =================================== */

/* ENHANCED PRODUCT CARDS & GRID */
.products-slider {
  display: none;
}
.products-section{
    background-color:var(--bg-primary);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-8);
  padding: var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
}

#all-products-grid:empty {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.product-card {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  outline: 2px solid #ff0404c4;
}

.product-card:hover {
  box-shadow: 0px 2px 19px #ffffff80;
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
}

.placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-secondary);
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--white);
  font-weight: 600;
  text-align: center;
}

.placeholder-content i {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

/* Enhanced Badges */
.featured-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: var(--shadow-neon);
  animation: neonPulse 2s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.new-product-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--gradient-neon);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.product-image .new-product-badge + .featured-badge {
  top: 60px;
}

.product-info {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    flex: 1;
    align-items: center;
    background: #1a1a24;
}
.detail-product-info{
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    flex: 1;
}
.product-name {
  font-size: var(--text-lg);
  font-weight: 700;
      color: var(--white);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.product-brand {
  font-size: var(--text-sm);
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.product-category {
  font-size: var(--text-xs);
  color: var(--gray);
  margin: 0;
  padding: var(--space-1) var(--space-3);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  display: inline-block;
  width: fit-content;
}

.product-description {
  font-size: var(--text-sm);
  color: var(--white);
  margin: 0;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
}

.current-price {
  font-size: var(--text-xl);
  font-weight: 800;
  color:var(--white);
}
.detail-current-price {
  font-size: var(--text-xl);
  font-weight: 800;
}

.compare-price {
  font-size: var(--text-base);
  color: var(--gray-light);
  text-decoration: line-through;
  font-weight: 500;
}

.discount-badge {
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius-sm);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-left: auto;
}

.product-stock {
  margin: var(--space-2) 0;
}

.product-stock span {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.in-stock {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.low-stock {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  border: 1px solid #ffeaa7;
}

.out-of-stock {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.product-actions {
  margin-top: var(--space-3);
  display: flex;
  gap: var(--space-3);
  flex-direction: column;
  align-items: flex-start;
}

.add-to-cart-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
}

.add-to-cart-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.wishlist-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--gray);
}

.wishlist-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

.wishlist-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}



.quick-view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--border-radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quick-view-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1) !important;
}

/* PRODUCTS PAGE*/
/*.products-page {*/
/*  background: var(--bg-primary);*/
/*}*/

.products-page__header {
  text-align: center;
  padding: var(--space-10);
}

.products-page__header h1 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: var(--space-4);
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.products-page__header p {
  font-size: var(--text-lg);
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

/* Products Controls */
.products-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-4);
  /*background: var(--white);*/
  /*border-bottom: 1px solid var(--gray-lighter);*/
  /*position: sticky;*/
  top: 60px;
  z-index: var(--z-sticky);
  margin-bottom: var(--space-6);
}

.filter-search {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-lighter);
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  transition: var(--transition);
}

.filter-search:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.mobile-filter-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--white);
  border: 2px solid var(--gray-lighter);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  justify-content: center;
}

.mobile-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-badge {
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  padding: 2px 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  display: none;
}

.filter-badge:not(:empty) {
  display: inline-block;
}

.sort-container {
  width: 100%;
}

.sort-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--gray-lighter);
  border-radius: var(--border-radius);
  font-size: var(--text-base);
  background: var(--white);
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Products Layout */
.products-layout {
  display: block;
  padding: var(--space-5);
}

/* Filters Sidebar */
.filters-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: auto;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.filters-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: calc(var(--z-modal-backdrop) + 5) !important;
}
/* Fix Product Badges - keep them relatively low */
.featured-badge,
.new-product-badge,
.value-badge,
.product-badge,
.combo-badge,
.category-card-badge {
  z-index: calc(var(--z-base) + 5) !important; /* 6 */
}
.filters-backdrop.active {
  display: block;
}

.filters-sidebar.active {
  left: 0;
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) var(--space-6) var(--space-4);
  border-bottom: 1px solid var(--gray-lighter);
  background: var(--white);
}

.filters-header h3 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
}

.close-filters {
  background: none;
  border: none;
  font-size: var(--text-xl);
  color: var(--gray);
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.close-filters:hover {
  background: var(--bg-secondary);
  color: var(--dark);
}

.filters-content {
  overflow-y: auto;
  padding: var(--space-6);
}

.filter-group {
  margin-bottom: var(--space-6);
}

.filter-group h4 {
  margin: 0 0 var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: var(--transition);
}

.filter-checkbox:hover {
  color: var(--primary);
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.price-range {
  padding: var(--space-2) 0;
}

.price-slider {
  width: 100%;
  margin: var(--space-3) 0;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--gray);
  font-weight: 600;
}

.filter-actions {
  padding: var(--space-6);
  border-top: 1px solid var(--gray-lighter);
  background: var(--white);
}



/* Products Main */
.products-main {
  padding: 0;
}

.products-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: linear-gradient(135deg, #570101, #000000, #97026a);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.results-count {
  font-weight: 600;
  color: var(--white);
  font-size: var(--text-sm);
}

/* Loading and Empty States */
.loading-spinner {
  text-align: center;
  padding: var(--space-12);
  color: var(--gray);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-lighter);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-4);
}

.no-products {
  text-align: center;
  padding: var(--space-12);
  color: var(--gray);
}

.no-products p {
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-lighter);
}

.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pagination-btn {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--gray-lighter);
  background: var(--white);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--text-sm);
}

.pagination-btn:hover:not(:disabled) {
  background: var(--bg-secondary);
  border-color: var(--primary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-pages {
  display: flex;
  gap: var(--space-1);
}

.page-number {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--gray-lighter);
  background: var(--white);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--text-sm);
  min-width: 40px;
  text-align: center;
}

.page-number:hover {
  background: var(--bg-secondary);
}

.page-number.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.products-per-page {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--gray);
}

.per-page-select {
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--gray-lighter);
  border-radius: var(--border-radius);
  background: var(--white);
  font-size: var(--text-sm);
}

/* WISHLIST SPECIFIC STYLES */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

.wishlist-item {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #0000001f;
}

.wishlist-item__info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  justify-content: space-between;
  flex: 1;
}

.brand {
  font-size: var(--text-sm);
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.price {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--dark);
}

.remove-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
  font-size: 14px;
}

.wishlist-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #dc2626;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.wishlist-remove-btn:hover {
  background: #dc2626;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.remove-from-wishlist-btn {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  transition: all 0.3s ease;
}

.remove-from-wishlist-btn:hover {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
  transform: translateY(-1px);
}

/* Wishlist Header */
.wishlist-header {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid #e5e7eb;
}

.wishlist-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.wishlist-title-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wishlist-title-section h3 {
  margin: 0;
  color: #1f2937;
  font-size: 1.5rem;
}

.wishlist-subtitle {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.wishlist-actions {
  display: flex;
  gap: 12px;
}

/* Empty State for Wishlist */
.wishlist-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
}

.wishlist-empty-state i {
  font-size: 4rem;
  color: #d1d5db;
  margin-bottom: 20px;
}

.wishlist-empty-state h3 {
  margin: 0 0 12px 0;
  color: #374151;
  font-size: 1.5rem;
}

.wishlist-empty-state p {
  margin: 0 0 30px 0;
  font-size: 1.1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* CART STYLES & SIDEBAR */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    z-index: calc(var(--z-modal-backdrop) + 25) !important;
    border-radius: 0 0 0 10px;
    overflow-y:scroll;
    scrollbar-width: thin;
}

.cart-sidebar.open {
  right: 0;
  z-index: calc(var(--z-modal-backdrop) + 25) !important;
  padding: var(--space-6);
}

.cart-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: calc(var(--z-modal-backdrop) + 20) !important;
}

.cart-backdrop.active {
  display: block;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-lighter);
  background: var(--white);
}

.cart-header h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.close-cart {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--gray);
  cursor: pointer;
}

.close-cart:hover {
  background: var(--bg-secondary);
  color: var(--dark);
}

.cart-sidebar__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.cart-item {
  display: flex;
  gap: var(--space-4);
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-4);
  transition: var(--transition);
}

.cart-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.cart-item__image {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item__title {
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.4;
}

.cart-item__price {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-lg);
  margin: 0;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--gray-lighter);
  cursor: pointer;
  font-weight: 600;
}

.quantity-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.quantity-value {
  min-width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
i.fas.fa-trash {
    color: var(--primary);
}
.cart-item__remove {
  color: var(--danger);
  font-size: var(--text-sm);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0.25rem 0;
  text-align: left;
  font-weight: 600;
}
.cart-item__remove:hover {
  color: var(--danger);
  text-decoration: underline;
  transform: translateX(2px);
}
.cart-sidebar__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-lighter);
  background: var(--white);
  padding-bottom: calc(1.5rem + var(--safe-area-inset-bottom));
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--dark);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    padding: var(--space-4);
}
.cart-total-row--total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}
.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: var(--space-3);
}
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--gray);
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gray-light);
}

.empty-cart p {
  margin: 0 0 1.5rem 0;
  font-size: 1.1rem;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

/* SECTIONS COMMON STYLES */
.section {
  padding: var(--space-20) 0;
  position: relative;
  background-color:var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  -webkit-background-clip: text;
  background-clip: text;
}

.section__description {
  font-size: var(--text-lg);
  color: var(--white);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 600px;
}

.about-us-title {
  color: var(--white);
  -webkit-text-fill-color: #f3f3f3;
  text-align:center;
}

/* NEW ARRIVALS SECTION */
.new-arrivals {
  padding: var(--space-16) 0;
}

.badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    animation: pulse 2s infinite;
}

/* BRANDS SECTION */
.brands-section {
    padding: var(--space-20) 0;
    background: url(/assets/images/homepage/contact-us.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-8);
  align-items: center;
  justify-items: center;
  margin-top: var(--space-12);
}

.brand-logo {
  max-width: 150px;
  height: auto;
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}
        /* Slider Container */
        .brands-slider-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
                -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    background-color: #ffffff66;
    border-radius: 10px;
        }

.brands-track {
    display: flex;
    animation: scroll 30s linear infinite;
    -webkit-animation: scroll 30s linear infinite;
    width: max-content;
    will-change: transform;
}
        .brands-track:hover {
            animation-play-state: paused;
            -webkit-animation-play-state: paused;
        }

        .brand-item {
            flex: 0 0 auto;
            width: 200px;
            margin: 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .brand-item:hover {
            transform: scale(1.1);
        }

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.brands-slider-container::before,
.brands-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Prevent interference with touch events */
}

        /* Responsive Design */
        @media (max-width: 768px) {
            .brands-section {
                padding: 50px 0;
                background-attachment: scroll;
                background-size: contain;
            }

            .section__title {
                font-size: 2rem;
            }
            
            .section__description {
                font-size: 1rem;
            }
            
            .brand-item {
                width: 150px;
                margin: 0 20px;
            }
            
            .brand-logo {
                max-width: 100px;
            }
            .pagination-container {
justify-content: center;
  gap: 10px;
  flex-direction: column;
}
        }

        @media (max-width: 480px) {
            .brand-item {
                width: 120px;
                margin: 0 15px;
            }
            
            .brand-logo {
                max-width: 80px;
            }
.pagination-container {
justify-content: center;
  gap: 10px;
    flex-direction: column;
}

}

/* FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 2rem;
  color: var(--white);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
}

.feature-description {
  font-size: var(--text-base);
  color: var(--gray);
  line-height: 1.7;
}

/* ===================================
   TESTIMONIALS SECTION - FIXED
   =================================== */
.reviews-section {
    padding: 80px 20px;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.reviews-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: var(--space-2);
    color: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
}
.reviews-subtitle {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-12);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: 20px;
}
.review-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--space-6);
    text-align: left;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary);
}

.review-stars {
    color: #ffd700;
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    letter-spacing: 2px;
    display: flex;
    gap: 2px;
}
div#featuredProducts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vh;
    padding: 2vh;
}
@media (max-width: 768px) {
div#featuredProducts {
    grid-template-columns: repeat(1, 1fr);
}
}
.review-text {
    color: var(--dark);
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    flex: 1;
    font-style: italic;
    position: relative;
    padding-left: var(--space-4);
}
.review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}
.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: var(--gray);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-lighter);
}
.review-name {
    font-weight: 700;
    color: var(--dark);
    font-size: var(--text-base);
}
.review-time {
    color: var(--gray-light);
    font-size: var(--text-sm);
}

/* Responsive Design */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .reviews-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        max-width: 500px;
        margin: 0 auto;
        padding: var(--space-4);
    }
    
    .reviews-section {
        padding: 40px 15px;
    }
    
    .reviews-title {
        font-size: var(--text-3xl);
    }
    
    .reviews-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-8);
    }
    
    .review-card {
        padding: var(--space-4);
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 30px 10px;
    }
    
    .reviews-title {
        font-size: var(--text-2xl);
    }
    
    .review-card {
        padding: var(--space-3);
    }
    
    .review-text {
        font-size: var(--text-sm);
    }
    
    .review-name {
        font-size: var(--text-sm);
    }
    
    .review-time {
        font-size: var(--text-xs);
    }
}

/* Animation enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.6s ease backwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

/* Hover effects */
.review-card:hover .review-stars {
    color: var(--accent);
    transform: scale(1.05);
}

.review-card:hover .review-name {
    color: var(--primary);
}

/* Add decorative elements */
.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, transparent 30%, var(--secondary-light) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}
/* BLOG SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.blog-card:hover {
  box-shadow: var(--shadow-xl);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--white);
  object-fit: cover;
}

.blog-content {
  padding: var(--space-6);
}

.blog-category {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.blog-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.blog-excerpt {
  font-size: var(--text-base);
  color: var(--gray);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--gray);
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-lighter);
}

.blog-actions {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* FAQ SECTION */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-5) var(--space-5);
}

.faq-answer-content p {
  color: var(--gray);
  line-height: 1.7;
}

/* ABOUT SECTION */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.about-image:hover {
  box-shadow: var(--shadow-neon-purple);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.about-text h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.about-text p {
  font-size: var(--text-lg);
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000000b5;
    padding: var(--space-8);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.contact-card:hover {
  transform: translateY(-5px);
}

i.fab.fa-whatsapp {
  color: green !important;
}

.contact-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.contact-card p {
  color: var(--white);
  line-height: 1.7;
}

.contact-card a {
  color: var(--white);
  transition: var(--transition);
}

.contact-card a:hover {
  text-decoration: underline;
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
  position: relative;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #128C7E;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  background: var(--dark);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  text-align: center;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--dark);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
  animation: var(--glow-animation);
}

.back-to-top i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* ===================================
   FOOTER
   =================================== */

/* ENHANCED FOOTER */
.footer {
  background: radial-gradient(circle at center, #530505, #5b0140eb, #000000);
  color: var(--white);
  padding: var(--space-20) 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.footer__section h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--white);
  position: relative;
  display: inline-block;
}

.footer__section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
}

.footer__section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

/* Footer Social Links */
.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.social-link:hover::before {
  left: 0;
}

.social-link i {
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover i {
  transform: scale(1.1);
}

/* Footer Links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links li {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  transition: var(--transition);
}

.footer__links li i {
  width: 16px;
  color: var(--primary);
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.footer__links li a {
  color: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
}

.footer__links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.footer__links li a:hover::before {
  width: 20px;
}

.footer__links li a:hover i {
  color: var(--primary-light);
  transform: scale(1.2);
}

/* Footer Bottom */
.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ===================================
   MOBILE NAVIGATION - FIXED VERSION
   =================================== */

/* MOBILE NAVIGATION ENHANCEMENTS */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: calc(var(--z-modal-backdrop) + 35) !important;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav__backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  z-index: calc(var(--z-modal-backdrop) + 30) !important;
  backdrop-filter: blur(4px);
}

.mobile-nav__backdrop.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--gray-lighter);
  background: var(--bg-secondary);
  flex-shrink: 0;
}

.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
  width: 60px;
  margin: 0 auto;
}

.mobile-nav__logo i {
  font-size: 1.5em;
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav__close:hover {
  background: var(--gray-lighter);
  color: var(--dark);
}

/* FIXED SCROLLING CONTENT - THIS IS THE KEY FIX */
.mobile-nav__content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: var(--space-4) 0;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  height: 100%; /* Add this crucial property */
}

/* Ensure proper scrolling behavior */
.mobile-nav__content::-webkit-scrollbar {
  width: 4px;
}

.mobile-nav__content::-webkit-scrollbar-track {
  background: var(--gray-lightest);
}

.mobile-nav__content::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 2px;
}

.mobile-nav__content::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

.mobile-nav__section {
  margin-bottom: var(--space-6);
}

.mobile-nav__section:last-child {
  margin-bottom: 0;
}

/* Mobile Navigation Headings */
.mobile-nav__heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    padding: 0.5rem 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-secondary);
    position: relative;
}

.mobile-nav__subheading {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
}

.mobile-nav__text {
  margin: 0 0 1rem 0;
  line-height: 1.5;
  text-align: center;
  color: var(--gray);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  background: var(--bg-secondary);
  color: var(--primary);
  border-left-color: var(--primary);
}

.mobile-nav__link i {
  width: 20px;
  text-align: center;
  font-size: var(--text-lg);
}

/* Mobile Nav Dropdown */
.mobile-nav__dropdown {
  border-bottom: 1px solid var(--gray-lighter);
}

.mobile-nav__dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  color: var(--dark);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav__dropdown-btn:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.mobile-nav__dropdown-btn i:first-child {
  width: 20px;
  text-align: center;
  margin-right: var(--space-4);
}

.mobile-nav__dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: var(--text-sm);
}

.mobile-nav__dropdown.active .mobile-nav__dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-nav__dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-secondary);
}

.mobile-nav__dropdown.active .mobile-nav__dropdown-content {
  max-height: 400px;
}

.mobile-nav__dropdown-link {
  display: block;
  padding: var(--space-3) var(--space-5) var(--space-3) calc(var(--space-5) + 28px);
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
  font-size: var(--text-sm);
}

.mobile-nav__dropdown-link:hover {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.05);
  border-left-color: var(--primary);
}

/* Mobile Nav Footer - Fixed to bottom */
.mobile-nav__info {
  padding: 0 var(--space-5);
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid var(--gray-lighter);
  padding-top: var(--space-4);
}

.mobile-nav__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--gray);
  font-size: var(--text-sm);
  text-align: center;
}

.mobile-nav__info-item i {
  width: 16px;
  text-align: center;
  color: var(--primary);
}

.mobile-nav__social {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--gray-lighter);
  flex-shrink: 0;
}

.mobile-nav__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-full);
  color: var(--gray);
  transition: var(--transition);
  text-decoration: none;
}

.mobile-nav__social-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile Contact Info Styles */
.mobile-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display:flex;
    flex-direction:column;
    text-align:center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ff6b6b; /* Your brand accent color */
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    margin-bottom: var(--space-6);
}

.contact-icon i {
    font-size: 1.1rem;
}

.contact-content {
    flex: 1;
}

.contact-heading {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #0f172a;
}

.contact-line {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0.125rem;
}

.contact-day {
    font-weight: 500;
}

.contact-time {
    color: #b91c1c;
}

.contact-value {
    font-weight: 500;
}

/* ===================================
   ENHANCED HEADER & NAVIGATION
   =================================== */

/* FIXED HEADER Z-INDEX */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: radial-gradient(circle at center, #530505, #5b0140eb, #000000);
  backdrop-filter: blur(8px);
  z-index: calc(var(--z-modal) - 100) !important;
  padding: var(--space-2) 0;
  padding-top: calc(var(--space-2) + var(--safe-area-inset-top));
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-direction:row;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -20px;
    background: #ff3b30;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
.cart-label {
    font-size: 14px;
    font-weight: 500;
    color:var(--bg-primary);
}

i.fas.fa-shopping-cart {
    color: var(--bg-primary);
    font-size: 20px;
}
.cart-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.cart-toggle:hover {
    transform: scale(1.1);
}
.cart-icon-container {
    position: relative;
    display: inline-block;
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Mobile Styles */
@media (max-width: 480px) {
.mobile-nav {
    width: 90%;
  }

.mobile-nav__link {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
  }

  .mobile-nav__dropdown-btn {
    padding: var(--space-3) var(--space-4);
  }

  .mobile-nav__dropdown-link {
    padding-left: calc(var(--space-4) + 28px);
  }

  /* Improved touch targets for mobile */
  .mobile-nav__link,
  .mobile-nav__dropdown-btn {
    min-height: 44px;
  }
      .contact-item {
        padding: 0.875rem 0;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.875rem;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    .contact-heading {
        font-size: 0.85rem;
    }
    
    .contact-details {
        font-size: 0.8rem;
    }
}

/* Prevent body scroll when mobile nav is open */
body.mobile-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ===================================
   USER DASHBOARD
   =================================== */

/* USER DASHBOARD STYLES */
.user-dashboard {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: calc(var(--z-modal) + 10) !important;
  display: none;
}

.user-dashboard__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.user-dashboard__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.user-dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}

.user-dashboard__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 5px;
}

.user-dashboard__close:hover {
  color: #374151;
  background: #e5e7eb;
  border-radius: 4px;
}

.user-dashboard__welcome {
  padding: 20px;
  background: #f0f9ff;
  border-bottom: 1px solid #e5e7eb;
}

.user-dashboard__welcome h3 {
  margin: 0;
  color: #1e40af;
  font-size: 1.25rem;
}

.user-dashboard__nav {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
  overflow: hidden;
}

.user-nav__item {
  padding: 15px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: #6b7280;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.user-nav__item.active {
  color: #1e40af;
  border-bottom-color: #1e40af;
}

.user-nav__item:hover {
  color: #374151;
}

.user-dashboard__pages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.user-page {
  display: none;
}

.user-page.active {
  display: block;
}

/* PROFILE FORM STYLES */
.profile-form {
  max-width: 500px;
  margin-bottom: 30px;
}

.profile-form h3 {
  margin-bottom: 20px;
  color: #1f2937;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #374151;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.readonly-field {
  padding: 10px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #6b7280;
}

.verification-status {
  margin-top: 5px;
  font-size: 12px;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Stats Grid */
.profile-stats {
  margin-top: 30px;
}

.profile-stats h3 {
  margin-bottom: 20px;
  color: #1f2937;
  font-size: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.stat-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: transform 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1e40af;
  margin-bottom: 5px;
}

.stat-label {
  color: #6b7280;
  font-size: 14px;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

.empty-state i {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 15px;
}

.empty-state h3 {
  margin: 0 0 10px 0;
  color: #374151;
}

.empty-state p {
  margin: 0 0 20px 0;
}

/* Badges */
.badge {
  background: var(--primary);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
}

/* Page Headers */
.page-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.page-header h3 {
  margin: 0;
  color: #1f2937;
}

/* ===================================
   NOTIFICATIONS & FEEDBACK
   =================================== */

/* TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: var(--z-toast) !important;
  max-width: 400px;
}
/* Fix Cookie Settings Modal */
#cookieSettingsModal.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: calc(var(--z-toast) + 20) !important; /* 920 */
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.toast {
  background: white;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #ccc;
  animation: slideInRight 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 300px;
}

.toast-success {
  border-left-color: #10b981;
}

.toast-error {
  border-left-color: #ef4444;
}

.toast-info {
  border-left-color: #3b82f6;
}

.toast-warning {
  border-left-color: #f59e0b;
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-success .toast-icon {
  color: #10b981;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-info .toast-icon {
  color: #3b82f6;
}

.toast-warning .toast-icon {
  color: #f59e0b;
}

.toast-message {
  flex: 1;
  font-weight: 500;
}

.toast.hiding {
  animation: slideOutRight 0.3s ease;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  /* Enhanced Mobile Typography */
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.75rem;
    --text-2xl: 1.5rem;
  }

  /* Mobile-Optimized Header */
  .header {
    position: sticky;
    padding: var(--space-2) 0;
    padding-top: calc(var(--space-2) + var(--safe-area-inset-top));
    transition: transform 0.3s ease;
  }

  .header.hide-on-scroll {
    transform: translateY(-100%);
  }

  .header__content {
    padding: var(--space-3) 0;
    justify-content: space-between;
    margin: 0 10px;
  }

  .logo {
    width: 50px;
    display:none;
  }

  .logo h1 {
    font-size: var(--text-xl);
  }

  .user-account:hover .dropdown-content {
    display: none !important;
  }
    .mobile-nav-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary);
  }

  /* Hide desktop nav on mobile */
  .nav--desktop {
    display: none;
  }

  /* Improved Mobile Nav Structure */
  .mobile-nav {
   z-index: var(--z-age-gate);
  }

  .mobile-nav.active ~ .header {
    z-index: calc(var(--z-modal) - 2);
  }
    .mobile-nav__content {
    scrollbar-width: thin;
    scrollbar-color: var(--gray-light) var(--gray-lightest);
    overflow-y: auto;
  }
  /* Mobile Navigation Toggle Button */
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: var(--text-lg);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
    z-index: calc(var(--z-modal) + 1);
  }
  
  /* Hide grid layout on mobile when slider is active */
  #new-products-slider:has(.products-slider),
  #featuredProducts:has(.products-slider) {
    display: block;
  }

  .products-slider {
    display: block;
    padding: 1rem;
    position: relative;
  }

  .products-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .products-slider__title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
  }

  .products-slider__controls {
    display: flex;
    gap: 0.5rem;
    margin: 0 auto;
  }

  .products-slider__btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--border-radius-full);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--text-sm);
  }

  .products-slider__btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }

  .products-slider__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .products-slider__container {
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch; 
    scroll-behavior: smooth;
  }

  .products-slider__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
    will-change: transform;
  }

  .products-slider__track::-webkit-scrollbar {
    display: none;
  }

  .products-slider__track.dragging {
    scroll-behavior: auto !important;
    cursor: grabbing;
  }

  .products-slider__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
    transform: translateZ(0);
    will-change: transform;
  }

  .products-slider__slide .product-card {
    margin: 0;
    height: 100%;
  }

  .products-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
  }

  .products-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: var(--border-radius-full);
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
  }

  .products-slider__dot.active {
    background: var(--primary);
    width: 24px;
  }

  .products-slider__dot:hover:not(.active) {
    background: var(--gray);
  }

  /* Ensure product cards in slider look good */
  .products-slider .product-card {
    transform: none !important;
  }

  .products-slider .product-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  /* Mobile Carousel Optimizations */
  .hero-carousel {
    height: 100vh;
  }

  .carousel-slide.slide-1 {
    background-image: url(/assets/images/homepage/mobile-home-image-1.webp);
    background-size: cover;
  }

  .carousel-arrows {
    display: none;
  }

  .carousel-dots {
    bottom: var(--space-4);
    padding: var(--space-2) var(--space-3);
  }

  .slide-content {
    padding: var(--space-4);
  }

  .slide-content h2 {
    margin-bottom: var(--space-4);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Mobile Product Grid */
  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-4);
  }

  /* Mobile-Safe Touch Targets */
  .btn, .nav__link, .header__action {
    min-height: 44px;
    min-width: 44px;
  }

  /* Products Page Mobile Layout */
  .products-page__layout {
    flex-direction: column;
    gap: var(--space-6);
  }

  .products-filters {
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    background: var(--white);
    z-index: var(--z-modal);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: var(--space-4);
  }

  .products-filters.active {
    left: 0;
  }

  .filters-sidebar {
    box-shadow: none;
    border: 1px solid var(--gray-lighter);
    margin-top: 80px;
    height: 99.9%;
    z-index: calc(var(--z-modal-backdrop) + 10)
  }
  .filter-actions {
    bottom: 60px;
    position: relative;
  }

  #product-type {
    margin-bottom: var(--space-10);
  }

  .products-controls {
    top: 80px;
  }

  .cart-sidebar {
    height: 99.5% !important;
    width:400px;
  }

  /* About Section Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .about-image {
    transform: none;
    order: -1;
  }

  .about-text h3 {
    font-size: var(--text-3xl);
  }

  .section__title {
    font-size: var(--text-3xl);
  }

  .section__description {
    font-size: var(--text-base);
    padding: 0 var(--space-4);
  }

  /* Contact Section Mobile */
  section#contact {
    background: var(--gradient-neon);
  }

  .contact-card {
    backdrop-filter: none !important;
  }

  /* Floating Elements Mobile */
  .floating-whatsapp {
    bottom: 80px;
    right: 15px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }

  .back-to-top i {
    font-size: 1.1rem;
  }

  /* Footer Mobile */
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .footer__section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer__social {
    justify-content: center;
  }

  .footer__links li {
    justify-content: center;
  }

  /* User Dashboard Mobile */
  .user-dashboard__content {
    width: 95%;
    height: 95vh;
  }

  .user-dashboard__nav {
    padding: 0 10px;
  }

  .user-nav__item {
    padding: 12px 15px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Auth Modal Mobile */
  .auth-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .auth-modal__content {
    border-radius: 12px 12px 0 0;
    max-width: none;
    animation: slideUpMobile 0.3s ease;
  }

  .auth-modal__body {
    padding: 1.5rem;
  }
}

@keyframes slideUpMobile {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* TABLET OPTIMIZATIONS */
@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-6);
    padding: var(--space-6);
  }

  .hero-carousel {
    height: 80vh;
  }

  .nav--desktop {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .products-controls {
    flex-direction: row;
    align-items: center;
  }
  .mobile-filter-btn {
    display: none;
  }

  .sort-container {
    width: auto;
    min-width: 200px;
  }

  .products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }

  .filters-sidebar {
    position: sticky;
    top: 120px;
    height: auto;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  .filters-header {
    display: none;
  }

  .filters-content {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
  }

  .filter-actions {
    padding: 1rem 1.5rem 1.5rem;
  }
}

/* DESKTOP ENHANCEMENTS */
@media (min-width: 1025px) {
  .nav--desktop {
    display: flex;
    flex-direction: row;
    align-items: baseline;
     justify-content: center;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .products-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    top: 80px;
    padding: 5vh;
  }
  .mobile-filter-btn {
    display: none;
  }

  .sort-container {
    width: auto;
    min-width: 200px;
  }

  .products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }

  .filters-sidebar {
    position: sticky;
    top: 120px;
    height: auto;
    border: 1px solid var(--gray-lighter);
    border-radius: 12px;
    overflow: hidden;
    z-index: var(--z-dropdown);
  }

  .filters-header {
    display: none;
  }

  .filters-content {
    padding: 1.5rem;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .filter-actions {
    padding: 1rem 1.5rem 1.5rem;
  }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* FIREFOX SPECIFIC OPTIMIZATIONS */
@-moz-document url-prefix() {
  .header {
    backdrop-filter: blur(20px);
  }
  
  .carousel-arrow {
    backdrop-filter: blur(20px);
  }
  
  .carousel-dots {
    backdrop-filter: blur(10px);
  }
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .btn::before,
  .social-link::before {
    display: none;
  }

  .auth-modal,
  .auth-modal__content,
  .auth-submit-btn,
  .auth-modal__close {
    animation: none;
    transition: none;
  }

  .whatsapp-btn {
    animation: none;
  }

  .back-to-top:hover {
    animation: none;
  }
}

/* ACCESSIBILITY ENHANCEMENTS */
@media (prefers-reduced-transparency: reduce) {
  .header, .carousel-arrow, .carousel-dots {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm);
}

/* Skip to main content link */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: var(--space-4);
  background: var(--primary);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius);
  text-decoration: none;
  z-index: var(--z-tooltip);
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: var(--space-4);
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .auth-modal__content {
    border: 2px solid #000;
  }

  .auth-form input {
    border-width: 2px;
  }
}

/* ===================================
   UTILITIES & MISC
   =================================== */

/* CREATOR SIGNATURE */
.creator-container {
  text-align: center;
  margin: 1rem 0;
}

.creator {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00a8ff 0%, #9c88ff 50%, #e84118 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gentleFlow 6s ease-in-out infinite;
  padding: 0.5rem 1rem;
  display: inline-block;
  position: relative;
}

.creator:hover {
  animation-duration: 3s;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}


.categories-section {
    padding: var(--space-4);
}
.category-card-badge{
    position: absolute;
    background: var(--accent);
    color: var(--carousel-bg);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    animation: fadeInScale 0.6s ease 0.3s backwards;
}
.category-card.eliquids{
    background-image:url(/assets/images/products/liquids.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
}
.category-card.disposable-vapes{
    background-image:url(/assets/images/products/disposable-vapes.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
}
.category-card.coilsandpods{
    background-image:url(/assets/images/products/coilsandpods.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
}
.category-card.accessories{
    background-image:url(/assets/images/products/Accessories.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
}
.category-card.pod-systems{
    background-image:url(/assets/images/products/Pod-systems.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
}
.category-card.starter-kits{
    background-image:url(/assets/images/products/vape-starter-kit.webp);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
}
        .section-header {
            text-align:center;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 400;
        }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    align-items: stretch;
    padding: 2rem 0;
}

        .category-card {
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            padding: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 260px;
        }

        .category-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0%;
            background: var(--accent-color);
            transition: height 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            border-color: var(--accent-color);
        }

        .category-card:hover::after {
            height: 100%;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .category-count {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .category-card:hover .count-badge {
            background: var(--accent-color);
            color: white;
        }

        .category-info {
            margin-bottom: 16px;
            text-align:center;
        }

        .category-name {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 8px;
            font-weight: 600;
            letter-spacing: -0.3px;
            text-align:center;
        }

        .category-description {
            font-size: 0.95rem;
            color: var(--white);
            line-height: 1.5;
            text-align:center;
}

.category-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
}
.category-backdrop{
    background: rgb(0 0 0 / 31%);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--space-8);
}
.category-card:hover .view-all {
    gap: 10px;
}
/* Responsive Design */
@media (max-width: 768px) {
.section-title {
    font-size: 1.8rem;
}
.section-subtitle {
    font-size: 1rem;
}
.categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}

.category-card {
    padding: 24px;
}
.category-name {
    font-size: 1.3rem;
}
}

        @media (min-width: 769px) and (max-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

/* ===== SUBNavigation STYLES ===== */

.subnav {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subnav__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.subnav__content::-webkit-scrollbar {
    display: none;
}

/* Subnav Items */
.subnav-item {
    position: relative;
}

.subnav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.subnav-link i {
    font-size: 0.9rem;
}

.subnav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-1px);
}

.subnav-item:hover .subnav-link {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

/* Simple Links (without dropdown) */
.subnav-link.simple {
    position: relative;
}

.subnav-link.highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.subnav-link.highlight:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown */
.subnav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    pointer-events: none;
}

.subnav-item:hover .subnav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.subnav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.subnav-dropdown-content {
    padding: 1rem;
}

.subnav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.subnav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.subnav-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--color-primary);
}

.subnav-dropdown-item:hover {
    background: var(--color-primary-lightest);
    border-color: var(--color-primary-light);
    transform: translateX(2px);
    color: var(--color-primary-dark);
}

.subnav-dropdown-item.view-all {
    margin-top: 0.5rem;
    background: var(--color-primary-lightest);
    font-weight: 600;
    color: var(--color-primary);
}

.subnav-dropdown-item.view-all:hover {
    background: var(--color-primary-light);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .subnav {
        position: relative;
        top: auto;
    }
    
    .subnav__content {
        justify-content: flex-start;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .subnav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .subnav-link i {
        font-size: 0.85rem;
    }
    
    .subnav-dropdown {
        position: fixed;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .subnav {
        display: none; /* Hide subnav on mobile, use mobile menu instead */
    }
}

/* Animation for dropdown items */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.subnav-dropdown-item {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
}

.subnav-dropdown-item:nth-child(1) { animation-delay: 0.1s; }
.subnav-dropdown-item:nth-child(2) { animation-delay: 0.15s; }
.subnav-dropdown-item:nth-child(3) { animation-delay: 0.2s; }
.subnav-dropdown-item:nth-child(4) { animation-delay: 0.25s; }


/* Responsive */
@media (max-width:900px){
  .reviews-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:600px){
  .reviews-grid{
    grid-template-columns:1fr;
  }
}

/* Original styles */
.banner-container {
    width: 100%;
    height: auto;
    min-height: 140px;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #33001a 100%);
    color: white;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid #ff3366;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.age-warning {
    background: #ffcc00;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
    text-align: center;
    color: #000;
    width: 100%;
    padding:var(--space-3);
}

.promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
}

.promo-item {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    min-width: 140px;
    position: relative;
    flex: 1;
}

.promo-title {
    font-weight: bold;
    color: #00ccff;
    font-size: 14px;
    margin-bottom: 3px;
}

.promo-detail {
    font-size: 12px;
    color: #ffffff;
}

.moving-text {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #ffcc00;
    font-weight: bold;
    padding: 5px 0;
}

.sale-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffcc00;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 10px;
    transform: rotate(15deg);
}

.promo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
}

.promo-title {
    display: flex;
    align-items: center;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Enhanced styles integrated with existing */
.enhanced-promo {
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enhanced-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.image-wrapper {
    width: 150px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin-right: 10px;
    flex-shrink: 0;
}

.enhanced-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.enhanced-promo:hover {
    transform: scale(1.02);
}

.text-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.promo-product-name {
    font-weight: bold;
    color: #00ccff;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.promo-current-price {
    font-size: 16px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.value-text {
    font-size: 11px;
    color: #33ff99;
    background: rgba(51, 255, 153, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.promo-savings {
    font-size: 11px;
    color: #33ff99;
    font-weight: bold;
    margin-top: 3px;
    opacity: 0.9;
}

.enhanced-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    transform: rotate(15deg);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.enhanced-badge.sale {
    background: linear-gradient(135deg, #ff3366, #ff0000);
    color: white;
}

.enhanced-badge.hot {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    color: white;
}

.enhanced-badge.new {
    background: linear-gradient(135deg, #33cc33, #009900);
    color: white;
}

/* Enhanced moving text */
.moving-text span {
    display: inline-block;
    padding-left: 100%;
    animation: slide 20s linear infinite;
    white-space: nowrap;
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .banner-container {
        padding: 8px;
    }
    
    .age-warning {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .promo-container {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .promo-item {
        min-width: calc(50% - 6px);
        padding: 10px 8px;
    }
    
    .promo-title {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .promo-detail {
        font-size: 10px;
    }
    
    .moving-text {
        font-size: 10px;
        padding: 4px 0;
    }
    
    .sale-badge {
        font-size: 8px;
        padding: 2px 6px;
    }
    
    .desktop-image {
        display: none;
    }
    
    /* Enhanced styles for mobile */
    .enhanced-promo {
        min-height: 90px;
    }
    
    .image-wrapper {
        width: 35px;
        height: 35px;
        margin-right: 8px;
        padding: 4px;
    }
    
    .promo-product-name {
        font-size: 12px;
        white-space:normal;
    }
    
    ..promo-current-price {
        font-size: 14px;
    }
    
    
    .promo-savings {
        font-size: 10px;
    }
    
    .enhanced-badge {
        top: -6px;
        right: -6px;
        padding: 3px 8px;
        font-size: 9px;
    }
}

/* Mobile (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .banner-container {
        height: auto;
        padding: 10px;
    }
    
    .age-warning {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .promo-container {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .promo-item {
        min-width: calc(33.33% - 10px);
        padding: 12px 10px;
    }
    
    .promo-title {
        font-size: 13px;
    }
    
    .promo-detail {
        font-size: 11px;
    }
    
    .moving-text {
        font-size: 11px;
    }
    
    .desktop-image {
        display: none;
    }
    
    /* Enhanced styles for tablet mobile */
    .enhanced-promo {
        min-height: 95px;
    }
    
    .image-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .promo-product-name {
        font-size: 13px;
        white-space:normal;
    }
    
    .promo-current-price {
        font-size: 15px;
    }
}

 /*Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .mobile-image {
        display: none;
    }
}

 /*Desktop (1025px and above) - Original layout */
@media (min-width: 1025px) {
    
    .mobile-image {
        display: none;
    }
    
}


/* Products Showcase Header */
.products-showcase-header {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.products-showcase-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
}

.products-showcase-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.showcase-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.showcase-title span {
    display: block;
}

.showcase-title .highlight {
    background: linear-gradient(90deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.showcase-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, white, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.showcase-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-tabs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tabs Header */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    background: white;
    padding: 8px;
    border-radius: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-btn {
    flex: 1;
    padding: 14px 32px;
    border: none;
    outline: none;
    color: #64748b; /* Default color */
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
    background: transparent !important; /* Force no background */
}
button.tab-btn.active{
    color:var(--white);
}
/* INACTIVE TAB: #5c0a4d color */
.tab-btn:not(.active) {
    color: #5c0a4d !important;
}

.tab-btn:hover {
    color: #475569;
}

.tab-indicator {
    position: absolute;
    height: calc(100% - 16px);
    background: #5b0140eb;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    top: 8px;
}

/* Position indicator based on active tab */
.tabs-header:has(.tab-btn:first-child.active) .tab-indicator {
    left: 8px;
    width: calc(50% - 12px);
}

.tabs-header:has(.tab-btn:last-child.active) .tab-indicator {
    left: calc(50% + 4px);
    width: calc(50% - 12px);
}

/* Tab Content */
.tabs-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-size: 16px;
    position: relative;
}
.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    margin-left: 12px;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
/* ===================================
   ENHANCED RESPONSIVE DESIGN
=================================== */
/* Tablet & Small Desktop */
@media (max-width: 1024px) {
.products-tabs {
    padding: 0 30px;
}
.products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
}
/* Tablet */
@media (max-width: 768px) {
.products-section {
    padding: 50px 0;
}
.products-tabs {
    padding: 0 20px;
}
.tabs-header {
    max-width: 400px;
}
    
    .tab-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
        .showcase-title{
        font-size:20px;
    }
}

/* Mobile Large */
@media (max-width: 640px) {
    .products-section {
        padding: 40px 0;
    }
    
    .tabs-header {
        max-width: 350px;
    }
    
    .tab-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    
        .showcase-title{
        font-size:18px;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
    }
    .showcase-description {
    font-size: 16px;
}
}

/* Mobile Small */
@media (max-width: 480px) {
    .products-section {
        padding: 30px 0;
    }
    .showcase-title{
        font-size:18px;
    }
    .showcase-description {
    font-size: 16px;
    }
    .products-tabs {
        padding: 0 16px;
    }
    
    .tabs-header {
        max-width: 100%;
        padding: 6px;
        border-radius: 14px;
    }
    
    .tab-indicator {
        height: calc(100% - 12px);
        top: 6px;
    }
    
    .tabs-header:has(.tab-btn:first-child.active) .tab-indicator {
        left: 6px;
        width: calc(50% - 9px);
    }
    
    .tabs-header:has(.tab-btn:last-child.active) .tab-indicator {
        left: calc(50% + 3px);
        width: calc(50% - 9px);
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .loading {
        padding: 40px 20px;
        font-size: 14px;
    }
    
    .loading::after {
        width: 18px;
        height: 18px;
    }
}

/* Very Small Mobile */
@media (max-width: 375px) {
    .products-tabs {
        padding: 0 12px;
    }
        .showcase-description {
    font-size: 16px;
    }
    .tabs-header {
        padding: 5px;
        border-radius: 12px;
    }
    
    .tab-indicator {
        height: calc(100% - 10px);
        top: 5px;
        border-radius: 10px;
    }
    
    .tabs-header:has(.tab-btn:first-child.active) .tab-indicator {
        left: 5px;
        width: calc(50% - 7.5px);
    }
    
    .tabs-header:has(.tab-btn:last-child.active) .tab-indicator {
        left: calc(50% + 2.5px);
        width: calc(50% - 7.5px);
    }
    
    .tab-btn {
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 9px;
    }
    
    .products-grid {
        gap: 12px;
    }
}

/* ===================================
   SAFE AREA SUPPORT FOR NOTCHED DEVICES
=================================== */
@supports (padding: max(0px)) {
    .products-tabs {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    @media (max-width: 768px) {
        .products-tabs {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }
    
    @media (max-width: 480px) {
        .products-tabs {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}



/*==About Us page*/
    /* About Page Specific Styles */
    .hero-about-stats {
        display: flex;
        justify-content: center;
        gap: var(--space-12);
        margin-top: var(--space-8);
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        padding: var(--space-4);
    }
    
    .stat-number {
        display: block;
        font-size: var(--text-4xl);
        font-weight: 800;
        color: var(--primary);
        margin-bottom: var(--space-2);
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    
    .stat-label {
        font-size: var(--text-sm);
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.8);
    }
    
    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: center;
        margin-top: var(--space-12);
    }
    
    .story-image {
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }
    
    .story-image img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .story-image:hover img {
        transform: scale(1.05);
    }
    
    .story-text h3 {
        font-size: var(--text-2xl);
        font-weight: 700;
        margin-bottom: var(--space-4);
        color: var(--dark);
    }
    
    .story-text p {
        margin-bottom: var(--space-4);
        line-height: 1.8;
        color: var(--gray);
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
    }
    
    .value-card {
        background: var(--white);
        padding: var(--space-8);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow);
        text-align: center;
        transition: var(--transition);
    }
    
    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-primary);
        border-radius: var(--border-radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-6);
        font-size: 2rem;
        color: var(--white);
    }
    
    .value-card h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin-bottom: var(--space-3);
        color: var(--dark);
    }
    
    /* Product Gallery Styles */
    .products-gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-8);
    }
    
    .gallery-category {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        padding: var(--space-6);
        box-shadow: var(--shadow);
    }
    
    .gallery-category h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin-bottom: var(--space-4);
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: var(--space-3);
    }
    
    .gallery-category h3 i {
        color: var(--primary);
    }
    
    .gallery-products {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
    
    .gallery-product {
        background: var(--bg-secondary);
        border-radius: var(--border-radius);
        overflow: hidden;
        transition: var(--transition);
    }
    
    .gallery-product:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }
    
    .gallery-product .product-image {
        height: 120px;
        background: var(--white);
    }
    
    .gallery-product .product-info {
        padding: var(--space-4);
    }
    
    .gallery-product h4 {
        font-size: var(--text-base);
        font-weight: 700;
        margin-bottom: var(--space-1);
        color: var(--dark);
    }
    
    .gallery-product p {
        font-size: var(--text-sm);
        color: var(--gray);
    }
    
    /* Team Styles */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
    }
    
    .team-member {
        background: var(--white);
        padding: var(--space-8);
        border-radius: var(--border-radius-lg);
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .member-image {
        width: 120px;
        height: 120px;
        background: var(--gradient-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-4);
        font-size: 3rem;
        color: var(--white);
    }
    
    .team-member h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin-bottom: var(--space-1);
        color: var(--dark);
    }
    
    .member-role {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: var(--space-3);
        text-transform: uppercase;
        font-size: var(--text-sm);
        letter-spacing: 0.5px;
    }
    
    .member-bio {
        color: var(--gray);
        line-height: 1.6;
    }
    
    /* Store Visit Section */
    .store-visit-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: center;
    }
    
    .store-info h2 {
        font-size: var(--text-3xl);
        font-weight: 800;
        margin-bottom: var(--space-4);
        color: var(--dark);
    }
    
    .store-info > p {
        font-size: var(--text-lg);
        color: var(--gray);
        margin-bottom: var(--space-6);
        line-height: 1.7;
    }
    
    .store-details {
        margin-bottom: var(--space-8);
    }
    
    .store-details h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin: var(--space-4) 0 var(--space-3);
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: var(--space-3);
    }
    
    .store-details h3 i {
        color: var(--primary);
    }
    
    .store-cta {
        display: flex;
        gap: var(--space-4);
        flex-wrap: wrap;
    }
    
    .store-image {
        border-radius: var(--border-radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }
    
    .store-image img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }
    
    .store-image:hover img {
        transform: scale(1.05);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-about-stats {
            gap: var(--space-6);
        }
        
        .stat-number {
            font-size: var(--text-2xl);
        }
        
        .story-content,
        .store-visit-content {
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }
        
        .story-image {
            order: -1;
        }
        
        .store-image {
            order: -1;
        }
        
        .gallery-products {
            grid-template-columns: 1fr;
        }
        
        .store-cta {
            flex-direction: column;
        }
        
        .store-cta .btn {
            width: 100%;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .products-gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .team-grid {
            grid-template-columns: 1fr;
        }
        
        .value-card,
        .team-member {
            padding: var(--space-6);
        }
    }
    
    
/*==contact us page*/
    /* Contact Page Specific Styles */
    .contact-hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        text-align: center;
        padding: var(--space-6);
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius-lg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
    }
    
    .stat-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }
    
    .stat-icon {
        display: block;
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: var(--space-3);
    }
    
    .stat-label {
        display: block;
        font-size: var(--text-lg);
        font-weight: 700;
        margin-bottom: var(--space-2);
        color: var(--white);
    }
    
    .stat-text {
        font-size: var(--text-sm);
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Contact Options Grid */
    .contact-options-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
    }
    
    .contact-option-card {
        background: #79797938;
        border-radius: var(--border-radius-lg);
        padding: var(--space-8);
        box-shadow: var(--shadow);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .contact-option-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }
    
    .whatsapp-option {
        border-top: 4px solid #25D366;
    }
    
    .phone-option {
        border-top: 4px solid var(--primary);
    }
    
    .store-option {
        border-top: 4px solid var(--secondary);
    }
    
    .email-option {
        border-top: 4px solid var(--accent);
    }
    
    .option-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--space-6);
        font-size: 2rem;
        color: var(--white);
    }
    
    .whatsapp-option .option-icon {
        background: #25D366;
    }
    
    .phone-option .option-icon {
        background: var(--primary);
    }
    
    .store-option .option-icon {
        background: var(--secondary);
    }
    
    .email-option .option-icon {
        background: var(--accent);
    }
    
    .contact-option-card h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin-bottom: var(--space-3);
        color: var(--dark);
    }
    
    .contact-option-card > p {
        color: var(--gray);
        margin-bottom: var(--space-6);
        line-height: 1.6;
        flex: 1;
    }
    
    .option-details {
        background: var(--bg-secondary);
        padding: var(--space-4);
        border-radius: var(--border-radius);
        margin-bottom: var(--space-6);
    }
    
    .option-details p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-2);
        color: var(--gray);
    }
    
    .option-details p strong {
        color: var(--dark);
    }
    
    /* Contact Form Styles */
    .contact-form-wrapper {
        max-width: 1000px;
        margin: var(--space-12) auto 0;
    }
    
    .contact-form-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        background: #79797938;
        border-radius: var(--border-radius-xl);
        padding: var(--space-8);
        box-shadow: var(--shadow-lg);
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .form-group label {
        display: block;
        margin-bottom: var(--space-2);
        font-weight: 600;
        color: var(--dark);
        font-size: var(--text-sm);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: var(--space-3) var(--space-4);
        border: 2px solid var(--gray-lighter);
        border-radius: var(--border-radius);
        font-size: var(--text-base);
        transition: var(--transition);
        font-family: inherit;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: var(--space-3);
        font-size: var(--text-sm);
        color: var(--gray);
        cursor: pointer;
    }
    
    .checkbox-label input[type="checkbox"] {
        margin-top: 0.25rem;
        flex-shrink: 0;
    }
    
    .checkbox-label a {
        color: var(--primary);
        text-decoration: none;
    }
    
    .checkbox-label a:hover {
        text-decoration: underline;
    }
    
    .form-message {
        padding: var(--space-4);
        border-radius: var(--border-radius);
        font-weight: 600;
        margin-top: var(--space-4);
    }
    
    .form-message.success {
        background: var(--success-light);
        color: var(--success-dark);
        border: 1px solid var(--success);
    }
    
    .form-message.error {
        background: var(--danger-light);
        color: var(--danger-dark);
        border: 1px solid var(--danger);
    }
    
    .contact-form-info {
        padding: var(--space-6);
        background: var(--bg-secondary);
        border-radius: var(--border-radius-lg);
    }
    
    .contact-form-info h3 {
        font-size: var(--text-lg);
        font-weight: 700;
        margin-bottom: var(--space-4);
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: var(--space-3);
    }
    
    .contact-form-info h3 i {
        color: var(--primary);
    }
    
    .contact-form-info ul {
        margin-bottom: var(--space-8);
        padding-left: var(--space-4);
    }
    
    .contact-form-info li {
        margin-bottom: var(--space-3);
        color: var(--gray);
        line-height: 1.6;
    }
    
    .contact-form-info li strong {
        color: var(--dark);
    }
    
    .response-time-info {
        padding: var(--space-4);
        background: var(--white);
        border-radius: var(--border-radius);
        border-left: 4px solid var(--primary);
    }
    
    .response-time-info h4 {
        font-size: var(--text-base);
        font-weight: 700;
        margin-bottom: var(--space-2);
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: var(--space-2);
    }
    
    .response-time-info h4 i {
        color: var(--primary);
    }
    
    .response-time-info p {
        font-size: var(--text-sm);
        color: var(--gray);
        margin-bottom: var(--space-2);
    }
    
    /* Store Location Styles */
    .store-location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        margin-top: var(--space-12);
    }
    
    .store-map {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .map-container {
        width: 100%;
        height: 450px;
    }
    
    .map-actions {
        padding: var(--space-6);
        display: flex;
        gap: var(--space-4);
        justify-content: center;
        border-top: 1px solid var(--gray-lighter);
    }
    
    .store-details {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .detail-card {
        background: #79797938;
        border-radius: var(--border-radius-lg);
        padding: var(--space-6);
        box-shadow: var(--shadow);
        display: flex;
        gap: var(--space-4);
        align-items: flex-start;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: var(--border-radius);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--white);
        flex-shrink: 0;
    }
    
    .detail-content h3 {
        font-size: var(--text-lg);
        font-weight: 700;
        margin-bottom: var(--space-3);
        color: var(--dark);
    }
    
    .detail-content p {
        color: var(--gray);
        line-height: 1.7;
    }
    
    .hours-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }
    
    .hours-day {
        font-weight: 600;
        color: var(--dark);
    }
    
    .hours-time {
        color: var(--gray);
        text-align: right;
    }
    
    .detail-content ul {
        margin-top: var(--space-2);
        padding-left: var(--space-4);
    }
    
    .detail-content li {
        margin-bottom: var(--space-2);
        color: var(--gray);
    }
    
    .payment-methods {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-3);
        margin-top: var(--space-2);
    }
    
    .payment-method {
        display: inline-flex;
        align-items: center;
        gap: var(--space-2);
        padding: var(--space-2) var(--space-3);
        background: var(--bg-secondary);
        border-radius: var(--border-radius);
        font-size: var(--text-sm);
        color: var(--gray);
    }
    
    .payment-method i {
        color: var(--primary);
    }
    
    /* FAQ Contact Styles */
    .faq-contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
    }
    
    .faq-contact-item {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        padding: var(--space-6);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .faq-contact-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .faq-contact-question {
        display: flex;
        align-items: center;
        gap: var(--space-4);
        margin-bottom: var(--space-4);
    }
    
    .faq-contact-question i {
        font-size: 1.5rem;
        color: var(--primary);
        flex-shrink: 0;
    }
    
    .faq-contact-question h3 {
        font-size: var(--text-lg);
        font-weight: 700;
        color: var(--dark);
        margin: 0;
    }
    
    .faq-contact-answer {
        padding-left: calc(1.5rem + var(--space-4));
    }
    
    .faq-contact-answer p {
        color: var(--gray);
        line-height: 1.7;
    }
    
    /* Social Contact Styles */
    .social-contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
    }
    
    .social-contact-card {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        padding: var(--space-8);
        text-align: center;
        box-shadow: var(--shadow);
        transition: var(--transition);
        display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    
    .social-contact-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
    
    .social-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-6);
        font-size: 2.5rem;
        color: var(--white);
    }
    
    .social-icon.facebook {
        background: #1877F2;
    }
    
    .social-icon.instagram {
        background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    }
    
    .social-icon.tiktok {
        background: #000000;
    }
    
    .social-icon.whatsapp-community {
        background: #25D366;
    }
    
    .social-contact-card h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin-bottom: var(--space-3);
        color: var(--dark);
    }
    
    .social-contact-card p {
        color: var(--gray);
        margin-bottom: var(--space-6);
        line-height: 1.6;
    }
    
    /* Emergency Banner */
    .emergency-contact-banner {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        color: var(--white);
        padding: var(--space-6) 0;
    }
    
    .emergency-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-6);
        flex-wrap: wrap;
    }
    
    .emergency-icon {
        font-size: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .emergency-text h3 {
        font-size: var(--text-xl);
        font-weight: 700;
        margin-bottom: var(--space-2);
    }
    
    .emergency-text p {
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
    }
    
    .emergency-actions .btn {
        color: var(--primary);
        font-weight: 700;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .contact-form-container {
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }
        
        .store-location-content {
            grid-template-columns: 1fr;
            gap: var(--space-8);
        }
        
        .emergency-content {
            flex-direction: column;
            text-align: center;
        }
    }
    
    @media (max-width: 768px) {
        .contact-hero-stats {
            grid-template-columns: 1fr;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: var(--space-4);
        }
        
        .faq-contact-grid {
            grid-template-columns: 1fr;
        }
        
        .social-contact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .map-actions {
            flex-direction: column;
        }
        
        .map-actions .btn {
            width: 100%;
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .contact-options-grid {
            grid-template-columns: 1fr;
        }
        
        .social-contact-grid {
            grid-template-columns: 1fr;
        }
        
        .detail-card {
            flex-direction: column;
            text-align: center;
        }
        
        .detail-icon {
            margin: 0 auto var(--space-4);
        }
        
        .hours-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .hours-time {
            text-align: center;
        }
    }
    
    /* ===================================
   PRIVACY POLICY PAGE STYLES
   =================================== */

.privacy-policy-page {
    padding: var(--space-12) 0 var(--space-16);
    background: var(--bg-secondary);
    min-height: calc(100vh - 400px);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--gray);
}

.breadcrumbs a {
    color: var(--primary);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumbs i {
    font-size: var(--text-xs);
    opacity: 0.6;
}

.page-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--gray);
    margin-bottom: var(--space-6);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.privacy-section {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--gray-lighter);
}

.privacy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.privacy-section h2 i {
    color: var(--secondary);
    font-size: var(--text-xl);
}

.privacy-section h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--dark-light);
    margin: var(--space-4) 0 var(--space-2);
}

.privacy-section ul {
    margin: var(--space-4) 0 var(--space-6) var(--space-6);
}

.privacy-section li {
    line-height: 1.8;
    margin-bottom: var(--space-2);
    color: var(--gray);
    position: relative;
    padding-left: var(--space-2);
}

.privacy-section li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: -var(--space-3);
}

.privacy-section strong {
    color: var(--dark);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
}

.privacy-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding: var(--space-8) 0;
    flex-wrap: wrap;
}

.privacy-actions .btn {
    padding: var(--space-3) var(--space-6);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 600;
}

/* Mobile Navigation Active Link */
.mobile-nav__link--active {
    color: var(--primary);
    background: var(--primary-light);
    opacity: 0.1;
}

.mobile-nav__link--active i {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-page {
        padding: var(--space-8) 0;
    }
    
    .page-title {
        font-size: var(--text-3xl);
    }
    
    .page-subtitle {
        font-size: var(--text-base);
    }
    
    .privacy-content {
        padding: var(--space-6) var(--space-4);
    }
    
    .privacy-section h2 {
        font-size: var(--text-xl);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
    }
    
    .privacy-section h3 {
        font-size: var(--text-lg);
    }
    
    .privacy-section ul {
        margin-left: var(--space-4);
    }
    
    .privacy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .privacy-policy-page {
        padding: 0;
        background: white;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 0;
    }
    
    .privacy-actions,
    .breadcrumbs,
    .footer,
    .header,
    .mobile-nav,
    .floating-whatsapp,
    .back-to-top {
        display: none !important;
    }
    
    .privacy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

        /* Terms of Service specific styles */
        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .terms-header {
            background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
            color: var(--white);
            padding: 4rem 2rem;
            border-radius: 1rem;
            margin-bottom: 3rem;
            text-align: center;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .terms-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .last-updated {
            color: var(--gray);
            font-size: 0.875rem;
            margin-top: 1rem;
        }
        
        .warning-banner {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0.5rem;
        }
        
        .warning-banner h3 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }
        
        .terms-content {
            background: var(--white);
            padding: 3rem;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .all-section {
    padding: var(--space-6);
    border-top: 1px solid grey;
}
        .section h2 {
            color: var(--dark);
            font-size: 1.875rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
        }
        
        .section h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin: 1.5rem 0 1rem;
        }
        
        .section p {
            margin-bottom: 1rem;
            color: var(--gray);
        }
        
        .section ul, .section ol {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .section li {
            margin-bottom: 0.5rem;
            color: var(--gray);
        }
        
        .age-requirement {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 2px solid #f59e0b;
            padding: 1.5rem;
            border-radius: 0.75rem;
            margin: 2rem 0;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }
        
        .footer-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-dark);
        }
        
        .back-to-home {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .back-to-home:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
        }
        
        @media (max-width: 768px) {
            .terms-container {
                padding: 1rem;
            }
            
            .terms-header {
                padding: 2rem 1rem;
            }
            
            .terms-header h1 {
                font-size: 2rem;
            }
            
            .terms-content {
                padding: 1.5rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
        
/* ===================================
   RETURN & WARRANTY POLICY STYLES
   =================================== */

.policy-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
}

.policy-container .policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: var(--white);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.policy-container .policy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-container .subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.policy-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.policy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.policy-card.warning {
    border-color: var(--warning);
}

.policy-card.caution {
    border-color: var(--danger);
}

.policy-card.info {
    border-color: var(--info);
}

.policy-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-card.warning .policy-icon {
    color: var(--warning);
}

.policy-card.caution .policy-icon {
    color: var(--danger);
}

.policy-card.info .policy-icon {
    color: var(--info);
}

.policy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.policy-card p {
    color: var(--gray);
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.policy-summary {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 2px solid var(--primary-light);
}

.policy-summary h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.policy-summary ul {
    list-style: none;
}

.policy-summary li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-lighter);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.policy-summary li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.policy-summary .warning-item:before {
    content: "⚠";
    color: var(--warning);
}

.policy-summary li strong {
    color: var(--dark);
    min-width: 200px;
    display: inline-block;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 3rem;
}
.detail-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info strong {
    font-weight: 700;
    color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-container {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .policy-container .policy-header {
        padding: 2rem 1rem;
    }
    
    .policy-container .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-summary {
        padding: 1.5rem;
    }
    
    .policy-summary li {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .policy-summary li strong {
        min-width: auto;
        width: 100%;
    }
    
    .contact-info {
        padding: 2rem 1rem;
    }
}

/* Enhanced Hero CTA Styles */
.hero-cta-section {
    position: relative;
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 30%, 
        #334155 100%);
    color: white;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.hero-cta-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

/* Content Styles */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #7dd3fc;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(90deg, #38bdf8, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #ec4899);
    border-radius: 2px;
    transform: scaleX(0.8);
    transform-origin: left;
    animation: underlinePulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #38bdf8, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Trust Section */
.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #38bdf8, #ec4899);
    border-radius: 10px;
    font-size: 1.25rem;
}

.trust-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.trust-content p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Visual Section */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-product {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 1rem;
}

.floating-product:nth-child(1) {
    top: 10%;
    left: 10%;
}

.floating-product:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.floating-product:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.product-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.visual-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 3;
}
.hero-CTA{
    background: radial-gradient(circle at center, #530505, #5b0140eb, #000000);
    padding: 0 0 var(--space-4);
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    color: #94a3b8;
    letter-spacing: 1px;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

.scroll-icon i {
    font-size: 1rem;
    color: #38bdf8;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes underlinePulse {
    0%, 100% {
        transform: scaleX(0.8);
    }
    50% {
        transform: scaleX(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-product {
        width: 150px;
        height: 150px;
    }
    
    .hero-trust {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .hero-cta-section {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        padding: var(--space-8);
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-product {
        width: 120px;
        height: 120px;
    }
}



@media (max-width: 480px) {
    .hero-cta-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn.btn--primary.btn--lg.btn--icon,
    .btn.btn--outline.btn--lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
video.hero-video {
    min-width: 100%;
    height: auto;
}
}
video.hero-video{
    border-radius:10px;
}
video.hero-video.mobile-image {
    width: 100%;
}

.brand-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.brand-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Sticky Cart Bar (Mobile) */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .sticky-cart-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Newsletter */
.newsletter{
    padding:var(--space-6);
}
.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 1rem auto;
    gap: 10px;
    flex-direction: column;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}
h2.newsletter-heading {
    color: var(--white);
    text-align: center;
}

p.disclaimer {
    text-align: center;
    color: var(--white);
}

/* Airscream Section Styles */
.brand-showcase {
    padding: 4rem 0;
    background: url(/assets/images/homepage/Airscream/Airscream-background.webp);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

/* UPDATED: Fixed brand-header with better background image handling */
.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    min-height: 200px; 
}

/* UPDATED: Added spacing for text and CTA */
.brand-header-text {
    flex: 1;
    padding-top: 2rem; 
    text-align: center;
}

.brand-header-cta {
    flex-shrink: 0;
    padding-top: 2rem; 
}

/* UPDATED: Make CTA button smaller on all screens */
.brand-header-cta .btn--primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.brand-logo-title {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.brand-title-logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

.value-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

/* Benefits Grid */
.brand-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 4rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 0px 2px 5px #00000057;
    background-color: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #45b7d1;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Brand CTA */
.brand-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-radius: 12px;
    margin-top: 2rem;
}

.brand-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.brand-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Benefits */
.trust-brand-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 4rem;
}

.trust-benefit-card {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 0px 2px 5px #00000057;
    background-color: white;
}

.add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.quick-view-btn {
    width: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-note {
    font-size: 12px;
    color: #666;
    margin-left: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-header {
        flex-direction: column;
        text-align: center;
        background-size: contain;
        background-position: top center;
        background-repeat: no-repeat;
        padding-top: 140px; /* Reduced padding for mobile */
        min-height: auto; /* Allow it to shrink */
        height: auto; /* Remove any fixed height */
        gap: 1.5rem; /* Reduced gap */
        margin-bottom: 2rem; /* Reduced margin */
    }
    .brand-header-text,
    .brand-header-cta {
        padding-top: 0; /* Reset padding on mobile */
        width: 100%; /* Full width on mobile */
    }
    
    .brand-header-text {
        order: 1; /* Text first */
    }
    
    .brand-header-cta {
        order: 2; /* CTA second */
    }
    
    /* UPDATED: Smaller CTA button on mobile */
    .brand-header-cta .btn--primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: auto;
        display: inline-block;
        margin-top: 0.5rem;
    }
    
    .brand-logo-title {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-title-logo {
        height: 50px;
    }
    
    .brand-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: var(--space-1);
    }
    
    /* Additional mobile optimization */
.brand-showcase {
    padding: 2rem 0;
    background:url(/assets/images/homepage/Airscream/airscream-mobile.webp);
    background-size: contain;
    background-attachment: fixed;
}
}

@media (max-width: 480px) {
    .brand-header {
        padding: 1rem;
        padding-top: 120px; /* Even smaller padding for very small screens */
    }
    
    /* UPDATED: Even smaller CTA button on very small screens */
    .brand-header-cta .btn--primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .brand-header-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .brand-header-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .quick-view-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}
.carousel-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

/* Slide controls positioned next to slides */
.slide-control {
    position: absolute;
top: 50%;
    transform: translateY(-50%);
    z-index: calc(var(--z-base) + 10) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 26, 36, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.slide-control-left {
    left: 20px;
}

.slide-control-right {
    right: 20px;
}

.slide-control:hover:not(:disabled) {
    background: var(--accent);
    color: var(--carousel-bg);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.slide-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.carousel-track:active {
    cursor: grabbing;
}

/* Keep the existing slide styles but add mobile adjustments */
.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Mobile-specific image handling */
.mobile-image {
    display: none;
}

.desktop-image {
    display: block;
}

.slide-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
        .carousel-product-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px 50px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.product-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--carousel-bg);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 3;
    box-shadow: -1px 2px 25px 9px rgb(255 255 255);
    animation: fadeInScale 0.6s ease 0.3s backwards;
    border: 5px solid red;
    backdrop-filter: blur(8px);
}

        .product-badge.sale {
            background: #e74c3c;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
        }

        .product-badge.hot {
            background: #ff6b6b;
            animation: fadeInScale 0.6s ease 0.3s backwards, pulse 2s ease-in-out 0.9s infinite;
        }

        .slide-label {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.4s forwards;
        }

        .slide-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.5s forwards;
        }

        .slide-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 600px;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.6s forwards;
        }

        .product-price {
            display: flex;
            align-items: baseline;
            gap: 15px;
            opacity: 0;
            animation: fadeInUp 0.6s ease 0.7s forwards;
        }

        .price-current {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--accent);
        }

        .price-original {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            color: var(--text-secondary);
            text-decoration: line-through;
            opacity: 0.6;
        }
        .desktop-image{
            width:100%;
        }
/* Different height for mobile vs desktop */
.carousel-slide .slide-image {
    height: 500px; /* Desktop height */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    /* Use different images for mobile */
    .mobile-image {
        display: block;
    }
    
    .desktop-image {
        display: none;
        width:100%;
    }
    
    /* Adjust slide image height for mobile */
    .carousel-slide .slide-image {
        height: 300px;
        min-height: 300px;
    }
    
    /* Position controls closer to edges on mobile */
    .slide-control {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .slide-control-left {
        left: 10px;
        top: 20%;
    }
    
    .slide-control-right {
        right: 10px;
        top: 18%;
    }
    
    /* Adjust product info for mobile */
    .carousel-product-info {
        padding: 50px 20px;
        align-items: center;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .product-badge{
        top: unset;
        right: unset;
    }
    .slide-description {
        font-size: 1rem;
    }
    
    .price-current {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    /* Hide controls on very small screens if needed */
    @media (max-width: 480px) {
        .carousel-slide .slide-image {
            height: 350px;
            min-height: 350px;
        }
        
        .slide-control {
            width: 40px;
            height: 40px;
        }
    }
}

@media (max-width: 480px) {
    /* Optional: Hide slide controls on very small screens */
    /* .slide-control {
        display: none;
    } */
    
    /* Or make them visible on hover/touch */
    .slide-control {
        opacity: 0.8;
    }
    
    .slide-control:hover,
    .slide-control:active {
        opacity: 1;
    }
}

/* Dots positioning - keep at bottom */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 10px 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: scale(1.3);
}

/* Hide dots on desktop if you prefer */
@media (min-width: 769px) {
    .carousel-dots {
        display: none; /* Optional: hide dots on desktop */
    }
}

/* Fix touch scrolling issue */
.carousel-track {
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    touch-action: pan-y pinch-zoom; /* Allow vertical scrolling, prevent horizontal */
}

/* Prevent vertical scroll when dragging horizontally */
.carousel-wrapper {
    touch-action: pan-y;
}

/* Your existing animations remain the same */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        
                /* Combo Hero Section */
        .combos-hero {
            color: white;
            padding: 60px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .combos-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/assets/images/patterns/vape-pattern.png') repeat;
            opacity: 0.1;
            pointer-events: none;
        }
        
        .combos-hero__title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #ffffff 0%, #f5f0e8 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .combos-hero__subtitle {
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        /* Combo Grid */
        .combos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            padding: 40px 0;
            max-width: 1200px;
            margin: 0 auto;
        }
        
.combo-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-color);
}
.combo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.combo-card__image {
    width: 100%;
    height: 200px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.combo-card__image::after {
            content: '2';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }
        
        .combo-image {
position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
        }
        
        .combo-card__content {
            padding: 25px;
        }
        
        .combo-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        
        .combo-description {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
            min-height: 48px;
        }
        
        .combo-specs {
            margin-bottom: 25px;
        }
        
        .combo-spec {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: white;
        }
        
        .combo-spec i {
            color: var(--accent);
            width: 16px;
        }
        
        .combo-price-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            flex-direction: column;
        }
        
        .combo-price {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;
        }
        
        .combo-price__label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 4px;
        }
        
        .combo-price__amount {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }
        
        .combo-price__per-unit {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        
        .combo-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn-combo {
            padding: 12px 24px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-combo:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }
        
        .btn-combo.whatsapp {
            background: #25D366;
        }
        
        .btn-combo.whatsapp:hover {
            background: #128C7E;
        }
        
        /* Savings Banner */
        .savings-banner {
            color: white;
            text-align: center;
            padding: 30px 20px;
            margin: 30px 0;
            border-radius: 15px;
        }
        
        .savings-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .savings-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Combo Benefits */
        .combo-benefits {
            padding: 40px 0;
            background: var(--bg-color);
            border-radius: 20px;
            margin: 40px 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .combos-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px;
            }
            
            .combo-actions {
                flex-direction: column;
            }
            
            .btn-combo {
                justify-content: center;
            }
            
            .savings-banner {
                margin: 20px;
                padding: 20px;
            }
            
            .savings-banner h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .combo-card__content {
                padding: 20px;
            }
            
            .combo-price-section {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .combo-card {
            animation: fadeIn 0.6s ease forwards;
            opacity: 0;
        }
        
        .combo-card:nth-child(1) { animation-delay: 0.1s; }
        .combo-card:nth-child(2) { animation-delay: 0.2s; }
        .combo-card:nth-child(3) { animation-delay: 0.3s; }