/* Modern CSS Reset and Variables */
:root {
    /* Color Palette - REVISED for Professional, Strong, and Gender-Neutral Supplement Brand */
    /* Inspired by leading supplement brands: Focus on deep blues, greens, and strong accents */
    --primary-gradient: linear-gradient(135deg, #1A4D2E 0%, #009966 100%); /* Deep Forest Green to Vibrant Green - Strong, natural, trustworthy */
    --secondary-gradient: linear-gradient(135deg, #0056B3 0%, #007BFF 100%); /* Deep Blue to Bright Blue - Professional, reliable, performance */
    --tertiary-gradient: linear-gradient(135deg, #4A4A4A 0%, #757575 100%); /* Charcoal to Medium Gray - Modern, sleek, foundational */
    --accent-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gold to Orange - Energy, premium, highlight */
    
    --primary-color: #009966; /* Solid Vibrant Green - Main accent color for icons, text highlights */
    --secondary-color: #007BFF; /* Solid Bright Blue - Secondary accent for buttons, links */
    --accent-color: #FFA500; /* Solid Orange - Tertiary accent for badges, warnings */
    --warning-color: #FFC107; /* Yellow - For warnings, stars */
    --danger-color: #DC3545; /* Red - For discounts, errors */
    --success-color: #28A745; /* Green - For success messages, savings */
    
    --dark-bg: #121212; /* Very Dark Gray/Black - Main background for depth and contrast */
    --dark-card: #1E1E1E; /* Slightly Lighter Dark Gray - Card backgrounds, footer */
    --dark-text: #E0E0E0; /* Light Gray - Primary text color for readability */
    --light-text: #A0A0A0; /* Muted Gray - Secondary text color, subtle details */
    
    /* Glass Effect Properties */
    --glass-bg: rgba(255, 255, 255, 0.08); /* More subtle transparency for dark theme */
    --glass-border: rgba(255, 255, 255, 0.15); /* Slightly less transparent border */
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow for depth */
    
    /* Typography */
    --font-primary: 'Inter', sans-serif; /* Modern, clean sans-serif for body */
    --font-secondary: 'Poppins', sans-serif; /* Bold, impactful sans-serif for headings */
    
    /* Spacing & Layout */
    --container-max-width: 1200px; /* Max width for content */
    --section-padding: 100px 0; /* Standard vertical padding for sections */
    --card-padding: 30px; /* Standard padding inside cards */
    
    /* Animation Timings & Functions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55); /* For bouncy animations */
}

/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--dark-bg);
    overflow-x: hidden; /* Prevents horizontal scroll from animations */
    position: relative;
}

/* --- */
/* Animated Background (Subtle & Engaging) */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Send to back */
    background: linear-gradient(45deg, #121212, #1E1E1E, #2A2A2A); /* Base gradient for background */
    background-size: 400% 400%; /* For animating the gradient position */
    animation: gradientShift 15s ease infinite; /* Continuous subtle background shift */
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gradient); /* Uses dynamic primary color */
    opacity: 0.08; /* More subtle transparency */
    animation: float 20s infinite linear; /* Gentle floating movement */
}

/* Unique properties for each shape for varied movement */
.shape-1 {
    width: 80px; height: 80px;
    top: 20%; left: 10%;
    animation-delay: 0s;
}
.shape-2 {
    width: 120px; height: 120px;
    top: 60%; right: 10%;
    animation-delay: 5s;
}
.shape-3 {
    width: 60px; height: 60px;
    top: 80%; left: 50%;
    animation-delay: 10s;
}
.shape-4 {
    width: 100px; height: 100px;
    top: 30%; right: 30%;
    animation-delay: 15s;
}
.shape-5 {
    width: 140px; height: 140px;
    top: 70%; left: 20%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* --- */
/* Global Container & Glassmorphism Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px; /* Horizontal padding */
}

/* General Glass Card Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px); /* The core glass effect */
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* General Glass Button Style */
.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--dark-text);
    transition: all var(--transition-normal);
}
.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15); /* Slightly more opaque on hover */
    transform: translateY(-2px);
}

/* --- */
/* Promotional Banner (Top Strip) */
.promo-banner {
    background: var(--primary-gradient); /* Uses dynamic primary gradient */
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1000;
}
.promo-banner::before { /* Shimmer effect */
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
.promo-text {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.promo-text i {
    color: var(--accent-color); /* Uses accent color for fire icons */
    animation: pulse 2s infinite;
}

/* --- */
/* Header & Navigation */
.header {
    background: rgba(18, 18, 18, 0.95); /* Semi-transparent dark background, slightly darker */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all var(--transition-normal);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0; /* Slightly reduced padding */
}

/* Logo Styling - UPDATED for image logo */
.logo {
    display: flex;
    align-items: center;
    /* Removed gap and text-specific styles as logo is now an image */
}
.logo-link {
    display: flex; /* Ensure the link wraps the image correctly */
    align-items: center;
    text-decoration: none;
}
.main-logo {
    height: 55px; /* Adjust height as needed */
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 153, 102, 0.5)); /* Subtle glow matching primary color */
    transition: transform var(--transition-normal);
}
.main-logo:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}
/* Removed .logo-icon and .logo-text styles as they are no longer used */

/* Main Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}
.nav-link {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-normal);
    position: relative;
    padding: 10px 0;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--primary-gradient); /* Dynamic gradient underline */
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}
.nav-link:hover,
.nav-link.active {
    color: var(--dark-text);
}
.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Header Action Buttons (Search, Wishlist, Cart) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.search-container { position: relative; }
.search-box { display: flex; align-items: center; position: relative; }
.search-input {
    width: 300px;
    padding: 12px 50px 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--dark-text);
    font-size: 14px;
    outline: none;
    transition: all var(--transition-normal);
}
.search-input::placeholder { color: var(--light-text); }
.search-input:focus {
    border-color: var(--primary-color); /* Dynamic border color on focus */
    box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.2); /* Dynamic shadow using new primary color */
}
.search-btn {
    position: absolute;
    right: 5px; top: 50%;
    transform: translateY(-50%);
    width: 35px; height: 35px;
    background: var(--primary-gradient); /* Dynamic primary gradient */
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
}
.search-btn:hover { transform: translateY(-50%) scale(1.1); }

.action-btn {
    position: relative;
    width: 45px; height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--dark-text);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.action-btn:hover {
    background: rgba(255, 255, 255, 0.15); /* Slightly more opaque on hover */
    transform: translateY(-2px);
}

/* Count bubbles for cart/wishlist */
.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px; right: -8px;
    background: var(--danger-color); /* Red for alerts */
    color: white;
    border-radius: 50%;
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 600;
}
/* This class is added by JavaScript for bounce animation */
.bounce-effect {
    animation: bounce 0.5s var(--bounce);
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: 4px;
    background: none; border: none;
    cursor: pointer;
    padding: 10px;
}
.mobile-menu-btn span {
    width: 25px; height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* --- */
/* Hero Section (Main Banner with Slider) */
.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    overflow: hidden;
    display: flex; align-items: center;
}
.hero-slider {
    position: relative;
    width: 100%; height: 100%;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transform: translateX(100%); /* Start off-screen */
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth slide transition */
    display: flex; align-items: center;
    padding: 1rem;
}
.slide.active {
    opacity: 1;
    transform: translateX(0); /* Slide into view */
}
.slide-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
}
/* Dynamic background gradients for each slide - REVISED FOR STRONGER COLORS */
.slide[data-bg="gradient1"] .slide-bg { background: var(--primary-gradient); } /* Deep Green */
.slide[data-bg="gradient2"] .slide-bg { background: var(--secondary-gradient); } /* Deep Blue */
.slide[data-bg="gradient3"] .slide-bg { background: linear-gradient(135deg, #6A0572 0%, #8E2DE2 100%); } /* Royal Purple - for a strong alternative */

/* Hero Content Layout (Mobile First) */
.hero-content {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    align-items: center;
    text-align: center;
    width: 100%; max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    height: 100%;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.hero-text {
    color: white;
    width: 100%; max-width: 500px;
}

/* Hero Badge (e.g., "Premium Quality") */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 12px; font-weight: 500;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out 0.2s both; /* Entrance animation */
}

/* Hero Title */
.hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    word-wrap: break-word; hyphens: auto;
}
.title-line {
    display: block;
    animation: slideInUp 1s ease-out both; /* Each line animates in */
}
.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.highlight {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.8s both;
    padding: 0 1rem;
}

/* Hero Stats (e.g., Grams Protein, Servings) */
.hero-stats {
    display: flex; gap: 1.5rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 1s both;
    flex-wrap: wrap; justify-content: center;
}
.stat { text-align: center; min-width: 70px; }
.stat-number {
    display: block;
    font-size: 1.8rem; font-weight: 800;
    color: white;
    font-family: var(--font-secondary);
    line-height: 1; margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 11px; opacity: 0.8;
    text-transform: uppercase; letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Call-to-Action Buttons */
.hero-actions {
    display: flex; gap: 0.75rem;
    animation: slideInUp 1s ease-out 1.2s both;
    flex-wrap: wrap; justify-content: center;
    margin-bottom: 1rem;
}
.cta-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 20px;
    border: none; border-radius: 50px;
    font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative; overflow: hidden;
    white-space: nowrap;
}
.cta-btn.primary {
    background: white;
    color: var(--primary-color); /* Dynamic text color to match primary */
}
.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.cta-btn::before { /* Shimmer effect on hover */
    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;
}
.cta-btn:hover::before { left: 100%; }

/* Hero Product Image Showcase */
.hero-image {
    display: flex; justify-content: center; align-items: center;
    position: relative;
    width: 100%; max-width: 300px;
}
.product-showcase {
    position: relative;
    animation: heroFloat 4s ease-in-out infinite; /* Gentle floating animation */
    width: 100%;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
.product-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}
.hero-product {
    width: 100%; max-width: 250px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3)); /* Soft shadow */
    transition: transform var(--transition-slow);
    position: relative; z-index: 2;
}
.hero-product:hover { transform: scale(1.05) rotate(2deg); }

/* Floating Badges on Hero Image */
.floating-elements {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; /* Allows clicks to pass through */
}
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 10px; font-weight: 600;
    color: var(--primary-color); /* Dynamic text color */
    display: flex; align-items: center; gap: 4px;
    animation: floatBadge 3s ease-in-out infinite;
}
/* Unique positions and animation delays for each badge */
.badge-1 { top: 15%; right: -5%; animation-delay: 0s; }
.badge-2 { top: 55%; left: -10%; animation-delay: 1s; }
.badge-3 { bottom: 15%; right: 0%; animation-delay: 2s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* --- */
/* Slider Controls & Indicators */
.slider-controls {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 100%;
    display: flex; justify-content: space-between;
    padding: 0 50px;
    z-index: 3;
}
.slider-btn {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 50px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 15px;
    z-index: 3;
}
.indicator {
    width: 60px; height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none; border-radius: 2px;
    cursor: pointer;
    position: relative; overflow: hidden;
}
.indicator-progress {
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 100%;
    background: white;
    border-radius: 2px;
    transition: width var(--transition-normal);
}
.indicator.active .indicator-progress { width: 100%; }

/* Scroll Indicator (Arrow & Text) */
.scroll-indicator {
    position: absolute;
    bottom: 30px; right: 50px;
    color: white;
    text-align: center;
    animation: bounce 2s infinite; /* Pulsing bounce effect */
}
.scroll-text {
    font-size: 12px; margin-bottom: 10px; opacity: 0.8;
}
.scroll-arrow { font-size: 20px; }
/* Reusing global bounce keyframe for this */

/* --- */
/* Global Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px; font-weight: 500;
    color: var(--primary-color); /* Dynamic primary color */
    margin-bottom: 20px;
}
.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- */
/* Categories Section */
.categories {
    padding: var(--section-padding);
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative; overflow: hidden;
}
.category-card::before { /* Subtle hover overlay */
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-gradient); /* Dynamic primary gradient */
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.category-card:hover::before { opacity: 0.1; }
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.category-icon {
    width: 80px; height: 80px;
    background: var(--primary-gradient); /* Dynamic primary gradient */
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    transition: all var(--transition-normal);
}
.category-card:hover .category-icon { transform: scale(1.1) rotate(10deg); }
.category-card h3 {
    font-size: 1.3rem; font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}
.category-count {
    color: var(--light-text);
    font-size: 14px;
}

/* --- */
/* Products Section */
.products {
    padding: var(--section-padding);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badges {
    position: absolute;
    top: 15px; left: 15px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 2;
}
.badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}
/* Specific badge colors */
.badge.discount { background: var(--danger-color); color: white; }
.badge.hot { background: var(--warning-color); color: var(--dark-bg); }
.badge.bestseller { background: var(--success-color); color: white; }
.badge.new { background: var(--primary-color); color: white; } /* Uses dynamic primary color */
.badge.limited { background: var(--secondary-color); color: white; }
.badge.verified { background: var(--accent-color); color: var(--dark-bg); }
.badge.trending { background: linear-gradient(45deg, #ff6b6b, #ffd93d); color: white; }

/* Product Overlay with Action Buttons */
.product-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex; align-items: center; justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all var(--transition-normal);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
    width: 45px; height: 45px;
    background: white; border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    position: relative;
    transform: translateY(20px); /* Slide up effect */
}
.product-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover {
    background: var(--primary-color); /* Dynamic primary color on hover */
    color: white;
    transform: scale(1.1);
}
.overlay-btn[data-tooltip]:hover::after { /* Tooltips for overlay buttons */
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px; left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}

/* Product Information */
.product-info { padding: 25px; }
.product-brand {
    font-size: 12px; font-weight: 600;
    color: var(--primary-color); /* Dynamic primary color */
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 8px;
}
.product-name {
    font-size: 16px; font-weight: 600;
    color: var(--dark-text);
    line-height: 1.4; margin-bottom: 15px;
    display: -webkit-box; /* For multi-line ellipsis */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-rating {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 15px;
}
.stars { color: var(--warning-color); font-size: 14px; }
.rating-text { font-size: 13px; color: var(--light-text); }
.product-features {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 20px;
}
.feature {
    background: rgba(0, 153, 102, 0.1); /* Dynamic primary color with transparency */
    color: var(--primary-color); /* Dynamic primary color */
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px; font-weight: 500;
}
.product-price {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; flex-wrap: wrap;
}
.current-price {
    font-size: 20px; font-weight: 700;
    color: var(--dark-text);
}
.original-price {
    font-size: 14px; color: var(--light-text);
    text-decoration: line-through;
}
.savings {
    font-size: 12px; color: var(--success-color); font-weight: 600;
}
.add-to-cart-btn {
    width: 100%;
    background: var(--primary-gradient); /* Dynamic primary gradient */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
}
.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 153, 102, 0.3); /* Dynamic primary color for shadow */
}

/* Product options for Snipcart (e.g., flavors) */
.product-options {
    margin-top: 15px;
    text-align: center;
    font-size: 1rem;
    color: var(--light-text);
}
.product-options label {
    margin-right: 8px;
    font-weight: 500;
}
.product-options select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--dark-text);
    font-size: 0.9rem;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-normal);
}
.product-options select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.15);
}
.product-options select option {
    background: var(--dark-card); /* Ensure options are readable in dark mode */
    color: var(--dark-text);
}


.view-all-container { text-align: center; }
.view-all-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px; font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex; align-items: center; gap: 10px;
}

/* --- */
/* Features Section (Benefits) */
.features {
    padding: 80px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon {
    width: 70px; height: 70px;
    background: var(--accent-gradient); /* Dynamic accent gradient */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}
.feature-card h3 {
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* --- */
/* About Us Section */
.about-us {
    padding: var(--section-padding) 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first: single column */
    gap: 40px;
    align-items: center;
}
@media (min-width: 768px) { /* Desktop: two columns */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .about-image { order: 2; } /* Image on right on desktop */
    .about-text {
        order: 1; /* Text on left on desktop */
        text-align: left;
    }
}
.about-image {
    position: relative;
    padding: 20px; /* Space for glow effect */
    display: flex; justify-content: center; align-items: center;
}
.about-image::before { /* Glow effect around image */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 25px;
    background: var(--primary-gradient); /* Dynamic primary gradient */
    opacity: 0.15;
    filter: blur(25px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite alternate;
}
.about-image img {
    max-width: 100%; height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-normal);
}
.about-image img:hover { transform: scale(1.02); }
.about-text { text-align: center; } /* Mobile default */
.about-text h3 {
    font-size: 1.8rem; font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}
.about-text p {
    font-size: 1rem; color: var(--light-text);
    line-height: 1.7; margin-bottom: 20px;
}
.about-text ul {
    list-style: none; padding: 0; margin-bottom: 20px;
    text-align: left; /* List items left-aligned */
    max-width: 500px; /* Constrain width for readability */
    margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .about-text ul { margin-left: 0; } } /* Align left on desktop */
.about-text ul li {
    display: flex; align-items: flex-start; /* Align icon and text at top */
    gap: 12px;
    font-size: 1rem; color: var(--dark-text);
    margin-bottom: 15px;
}
.about-text ul li i {
    color: var(--primary-color); /* Dynamic primary color */
    font-size: 1.2rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
    margin-top: 3px; /* Adjust vertical alignment */
}

/* --- */
/* Help / FAQ Section (Accordion) */
.help-faq {
    padding: var(--section-padding) 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 25px;
    max-width: 800px; /* Max width for readability */
    margin: 0 auto 50px auto;
}
@media (min-width: 768px) { /* Desktop: two columns */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.faq-item {
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-normal);
    overflow: hidden; /* Essential for accordion height transition */
}
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
    font-size: 1.1rem; font-weight: 600;
    color: var(--dark-text);
    padding-bottom: 10px;
    border-bottom: 1px solid transparent; /* For active state border */
    transition: all var(--transition-normal);
}
.faq-question h3 {
    margin: 0;
    font-size: inherit; font-weight: inherit; color: inherit;
}
.faq-question i {
    color: var(--primary-color); /* Dynamic primary color */
    font-size: 1.1rem;
    transition: transform var(--transition-normal);
}
.faq-item.active .faq-question {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color); /* Highlight active question */
}
.faq-item.active .faq-question i {
    transform: rotate(45deg); /* Rotates plus icon to cross for active state */
}
.faq-answer {
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out, opacity var(--transition-normal);
    opacity: 0;
    padding-top: 0;
}
.faq-item.active .faq-answer {
    max-height: 200px; /* Max height for open state, adjust if answers are longer */
    opacity: 1;
    padding-top: 15px; /* Space after question */
}
.faq-answer p {
    font-size: 0.95rem; color: var(--light-text);
    line-height: 1.6;
}
.faq-more-info { text-align: center; margin-top: 40px; }
.faq-more-info p {
    color: var(--light-text); font-size: 1rem;
    margin-bottom: 25px;
}

/* --- */
/* Contact Us Section */
.contact-us {
    padding: var(--section-padding) 0;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr; /* Mobile first: single column */
    gap: 40px;
}
@media (min-width: 768px) { /* Desktop: two columns (form wider) */
    .contact-content {
        grid-template-columns: 1.5fr 1fr;
    }
}
.contact-form-container { /* Form styling */
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}
.contact-form-container h3 {
    font-size: 1.8rem; font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    text-align: center;
}
.form-group { margin-bottom: 25px; }
.form-group label {
    display: block;
    font-size: 1rem; color: var(--dark-text);
    margin-bottom: 8px; font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05); /* Slightly less transparent for inputs */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--dark-text);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-normal);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--light-text); opacity: 0.7;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color); /* Dynamic primary color for focus */
    box-shadow: 0 0 0 4px rgba(0, 153, 102, 0.2); /* Dynamic primary color for focus glow */
    background: rgba(255, 255, 255, 0.08);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .cta-btn {
    width: 100%; margin-top: 15px;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    padding: 40px 25px;
    background: var(--dark-card); /* A slightly darker card for contrast */
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    display: flex; flex-direction: column; justify-content: space-between;
    text-align: center; /* Mobile default */
}
.contact-info-sidebar h3 {
    font-size: 1.8rem; font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}
.contact-info-sidebar .contact-item {
    justify-content: center; /* Center align on mobile */
    margin-bottom: 20px;
}
@media (min-width: 768px) { .contact-info-sidebar .contact-item { justify-content: flex-start; } } /* Left align on desktop */
.contact-info-sidebar .contact-item i {
    color: var(--primary-color); /* Dynamic primary color */
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-sidebar .contact-item p,
.contact-info-sidebar .contact-item a {
    color: var(--light-text); text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 1rem;
}
.contact-info-sidebar .contact-item a:hover { color: var(--primary-color); } /* Dynamic primary color */

/* Contact Social Links */
.social-links-contact { margin-top: 40px; text-align: center; }
.social-links-contact h4 {
    font-size: 1.2rem; color: var(--dark-text);
    margin-bottom: 20px;
}
.social-links-contact .social-link {
    background: rgba(255, 255, 255, 0.08); /* Slightly transparent for background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
}
.social-links-contact .social-link:hover {
    background: var(--primary-gradient); /* Dynamic primary gradient on hover */
    color: white;
}

/* --- */
/* Newsletter Section */
.newsletter {
    padding: var(--section-padding);
}
.newsletter-content {
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.newsletter-text h2 {
    font-size: 2.5rem; font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}
.newsletter-text p {
    color: var(--light-text);
    font-size: 1.1rem; margin-bottom: 40px;
    line-height: 1.6;
}
.input-group {
    display: flex; gap: 15px;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--dark-text);
    font-size: 16px;
    outline: none;
    transition: all var(--transition-normal);
}
.newsletter-input::placeholder { color: var(--light-text); }
.newsletter-input:focus {
    border-color: var(--primary-color); /* Dynamic primary color */
    box-shadow: 0 0 0 3px rgba(0, 153, 102, 0.1); /* Dynamic primary color for shadow */
}
.newsletter-btn {
    background: var(--primary-gradient); /* Dynamic primary gradient */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 153, 102, 0.3); /* Dynamic primary color for shadow */
}
.newsletter-note {
    font-size: 12px; color: var(--light-text); opacity: 0.8;
}

/* --- */
/* Footer */
.footer {
    background: var(--dark-card); /* Dark background for footer */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Layout for sections */
    gap: 60px;
    margin-bottom: 50px;
}
.footer-logo { 
    /* Removed old flex/gap as logo is now image */
    margin-bottom: 25px;
}
.main-logo-footer {
    height: 50px; /* Adjust height for footer logo */
    width: auto;
    filter: drop-shadow(0 0 6px rgba(0, 153, 102, 0.4)); /* Subtle glow matching primary color */
    transition: transform var(--transition-normal);
}
.main-logo-footer:hover {
    transform: scale(1.03);
}
/* Removed .footer-logo .logo-icon, .footer-logo h3, .footer-logo span, .footer-logo p */

.footer-description {
    color: var(--light-text); line-height: 1.6; margin-bottom: 30px;
}
.social-links { display: flex; gap: 15px; }
.social-link {
    width: 45px; height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--dark-text);
    text-decoration: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: all var(--transition-normal);
}
.social-link:hover {
    background: var(--primary-gradient); /* Dynamic primary gradient on hover */
    color: white;
    transform: translateY(-3px);
}
.footer-title {
    font-size: 18px; font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 25px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--light-text); text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 14px;
}
.footer-links a:hover { color: var(--primary-color); } /* Dynamic primary color */
.contact-info { display: flex; flex-direction: column; gap: 15px; }
.contact-item {
    display: flex; align-items: center; gap: 12px;
    color: var(--light-text); font-size: 14px;
}
.contact-item i {
    color: var(--primary-color); /* Dynamic primary color */
    width: 16px;
}
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; }
.footer-bottom-content {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--light-text); font-size: 14px;
}
.payment-methods { display: flex; align-items: center; gap: 15px; }
.payment-methods i {
    font-size: 24px; color: var(--light-text);
    transition: color var(--transition-normal);
}
.payment-methods i:hover { color: var(--primary-color); } /* Dynamic primary color */

/* --- */
/* Floating Action Buttons (WhatsApp, Call, Back to Top) */
.floating-actions {
    position: fixed;
    bottom: 30px; right: 30px;
    display: flex; flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.fab-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.whatsapp-btn { background: #25d366; } /* Standard WhatsApp green */
.call-btn { background: var(--primary-gradient); } /* Dynamic primary gradient */
.back-to-top {
    background: var(--dark-card);
    opacity: 0; visibility: hidden; /* Hidden until scrolled down */
    transition: all var(--transition-normal);
}
.back-to-top.visible { opacity: 1; visibility: visible; } /* Show when visible */
.fab-btn:hover { transform: scale(1.1) translateY(-3px); }
.fab-btn[data-tooltip]:hover::before { /* Tooltips for FABs */
    content: attr(data-tooltip);
    position: absolute;
    right: 70px; top: 50%;
    transform: translateY(-50%);
    background: var(--dark-bg);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- */
/* Loading Screen (Preloader) */
.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark-bg);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}
.loading-content { text-align: center; }
.loading-logo {
    /* Removed old icon styles */
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    animation: loadingPulse 2s ease-in-out infinite;
}
.loading-logo-img { /* New style for image logo in loading screen */
    width: 80px; /* Adjust size as needed */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 153, 102, 0.6)); /* Stronger glow for loading */
}
@keyframes loadingPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.loading-text {
    font-size: 24px; font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}
.loading-bar {
    width: 200px; height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.loading-progress {
    width: 0; height: 100%;
    background: var(--primary-gradient); /* Dynamic primary gradient */
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}
@keyframes loadingProgress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* --- */
/* Global Animations (used by JS and throughout CSS) */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}
@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- */
/* Custom Scrollbar Styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-card); }
::-webkit-scrollbar-thumb {
    background: var(--primary-gradient); /* Dynamic primary gradient */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gradient); /* Dynamic accent gradient on hover */
}

/* --- */
/* Selection & Focus Styles (Accessibility & UX) */
::selection {
    background: var(--primary-color); /* Dynamic primary color for selected text */
    color: white;
}
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-color); /* Dynamic primary color outline for focus */
    outline-offset: 2px; /* Offset from element border */
}

/* --- */
/* Responsive Design Breakpoints */
/* Tablets and larger phones (landscape) */
@media (max-width: 1024px) {
    .hero-content { gap: 50px; }
    .hero-title { font-size: 3rem; }
    .hero-product { width: 350px; }
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Smaller Tablets and Mobile Landscape */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .nav { display: none; } /* Hide desktop nav */
    .mobile-menu-btn { display: flex; } /* Show mobile hamburger menu */
    .search-input { width: 200px; }
    
    .hero-content {
        grid-template-columns: 1fr; /* Stack vertically */
        text-align: center;
        gap: 40px;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-product { width: 280px; }
    .hero-stats { justify-content: center; gap: 30px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on smaller screens */
        gap: 20px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr; /* Stack footer sections */
        gap: 40px;
        text-align: center;
    }
    .footer-bottom-content {
        flex-direction: column; /* Stack footer bottom elements */
        gap: 20px;
        text-align: center;
    }
    
    .input-group {
        flex-direction: column; /* Stack form inputs */
        gap: 15px;
    }
    .newsletter-content { padding: 40px 20px; }
    .floating-actions { bottom: 20px; right: 20px; } /* Adjust FAB position */

    /* Responsive adjustments for new sections padding */
    .about-us, .help-faq, .contact-us {
        padding: 60px 0;
    }

    /* Mobile menu specific styles (controlled by JS toggle) */
    body.no-scroll {
        overflow: hidden; /* Prevent background scroll when mobile menu is open */
    }
    .nav.mobile-open {
        display: flex;
        position: fixed;
        top: 80px; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        height: calc(100% - 80px); /* Fill remaining height */
        background: rgba(15, 15, 35, 0.98); /* More opaque for mobile menu */
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        z-index: 1000;
        overflow-y: auto; /* Enable scrolling for long menus */
        transition: top 0.3s ease; /* Smooth transition */
    }
    .nav.mobile-open .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center; /* Center menu items */
    }
    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

/* Small Phones (Portrait) */
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; } /* Single column for products */
    .category-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 2rem; }
    
    .slider-controls { padding: 0 20px; }
    .slider-btn { width: 45px; height: 45px; font-size: 16px; }
}

/* --- */
/* Print Styles (for when users print the page) */
@media print {
    /* Hide non-essential elements for printing */
    .floating-actions,
    .loading-screen,
    .animated-bg {
        display: none !important;
    }
    /* You might want to adjust colors for print, e.g., print all text black on white */
    body {
        background: white !important;
        color: black !important;
    }
    /* Make sure links are visible */
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    /* Remove background images/gradients to save ink */
    * {
        background-color: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
        filter: none !important;
        -webkit-print-color-adjust: exact; /* Preserve colors for background (use with caution) */
        color-adjust: exact;
    }
    /* Print glass cards clearly */
    .glass-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        background: #f8f8f8 !important;
    }
}
