        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            font-weight: 600;
        }
        
       /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            padding: 10px 0;
            box-shadow: 0 2px 30px rgba(0,0,0,0.15);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 23px;
            font-weight: 700;
            color: #2c3e50;
            letter-spacing: -1px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            font-size: .95rem !important;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
         }
        
        .nav-links a:hover {
            color: #c7a875;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #c7a875;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-btn {
            background: #c7a875;
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(199, 168, 117, 0.3);
        }
        
        .cta-btn:hover {
            background: #b39565;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(199, 168, 117, 0.4);
        }

        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 40px 30px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 12px;
        }
        
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #2c3e50;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                display: none;
            }
            
                 
            .section-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
    /* Hide the CTA button and the original nav-links by default on mobile */
    .nav-container .cta-btn {
        display: none;
    }

    .nav-links {
        display: none; /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Sits right under the nav */
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    /* Show the menu when the 'active' class is added via JS */
    .nav-links.active {
        display: flex;
    }

    /* Ensure links take full width for easier tapping */
    .nav-links li {
        width: 100%;
        text-align: center;
    }
}

/* --- THE FINAL GAP FIX --- */

/* 1. Eliminate space created by the Promo Banner and Navbar height */
.breadcrumb {
    margin-top: 0 !important;
    padding-top: 80px !important; /* Adjust this number to match your navbar height */
    border-top: none !important;
}

/* 2. Pull the Hero up if the Breadcrumb is what's causing the gap */
.hero {
    margin-top: 0 !important;
    border-top: none !important;
}

/* 3. Remove default top padding/margin from the first heading in the Hero */
.hero-content h1 {
    margin-top: 0 !important;
}

/* 4. Fix for Mobile: Sometimes the Promo Banner + Fixed Nav creates a double-gap */
@media (max-width: 768px) {
    .breadcrumb {
        padding-top: 70px !important; /* Slightly smaller for mobile navbar */
    }
}
        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }
        
        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.95;
            text-shadow: 0 1px 10px rgba(0,0,0,0.3);
        }
        
        .breadcrumb {
            background: #f8f9fa;
            padding: 15px 40px;
        }
        
        .breadcrumb-content {
            max-width: 1400px;
            margin: 0 auto;
            color: #666;
        }
        
        .breadcrumb a {
            color: #c7a875;
            text-decoration: none;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
        }
        
        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #666;
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .filters {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .filter-btn {
            padding: 12px 30px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
            font-family: 'Quicksand', sans-serif;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #2c3e50;
            color: white;
            border-color: transparent;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.2);
        }
        
        .product-image {
            height: 300px;
            position: relative;
            overflow: hidden;
            background: #f0f0f0;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff6b6b;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .product-badge.new { background: #51cf66; }
        .product-badge.bestseller { background: #ffd700; color: #333; }
        
        .product-info { padding: 25px; }
        
        .product-category {
            color: #c7a875;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        
        .product-name {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .product-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
            height: 75px;
            overflow: hidden;
        }
        
        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        /* Updated WhatsApp Button Style */
        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 10px 18px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .whatsapp-btn:hover {
            background: #128C7E;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn i {
            font-size: 18px;
        }
        
        .info-section {
            background: #f8f9fa;
            padding: 80px 40px;
            margin-top: 80px;
        }
        
        .info-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .info-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .info-icon { font-size: 48px; margin-bottom: 20px; }
        .info-card h3 { font-size: 24px; color: #2c3e50; margin-bottom: 15px; }
        .info-card p { color: #666; line-height: 1.8; }
        
        .cta-banner {
            background: linear-gradient(rgba(199, 168, 117, 0.9), rgba(44, 62, 80, 0.9)), 
                        url('https://images.unsplash.com/photo-1540518614846-7eded433c457?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            padding: 80px 40px;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .cta-banner h2 { font-size: 42px; margin-bottom: 20px; }
        .cta-banner p { font-size: 20px; margin-bottom: 30px; opacity: 0.95; }
        
        .cta-banner-btn {
            background: white;
            color: #2c3e50;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .cta-banner-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        
        footer {
            background: #776851;
            color: white;
            padding: 60px 40px 30px;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 { font-size: 20px; margin-bottom: 20px; }
        .footer-section ul { list-style: none; }
        .footer-section ul li { margin-bottom: 12px; }
        .footer-section a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
        .footer-section a:hover { color: white; }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
        }
        
        @media (max-width: 768px) {
            .hero h1 { font-size: 36px; }
            .products-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
        }

        /* --- FORCED RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    /* Force the side spacing to be smaller on mobile */
    .container, .breadcrumb {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Force the mobile menu to behave and stay on top */
    .nav-links {
        display: none !important; /* Start hidden */
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: white !important;
        flex-direction: column !important;
        z-index: 9999 !important; /* Force it above everything else */
        padding: 30px !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

    /* Force the menu to show when JavaScript adds the 'active' class */
    .nav-links.active {
        display: flex !important;
    }

    /* Fix the button visibility */
    .mobile-menu-btn {
        display: block !important;
    }

    /* Force products to stack nicely with less wasted space */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}
/* FORCE OPENING LOGIC */
@media (max-width: 768px) {
    /* This ensures that when JS adds the 'active' class, it OVERRIDES the hidden state */
    #navbar .nav-links.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Ensure the button itself is clickable and on top */
    .mobile-menu-btn {
        display: block !important;
        position: relative !important;
        z-index: 10001 !important;
        cursor: pointer !important;
    }
}