         /* =========================================
            GLOBAL STYLES & CSS RESET
            ========================================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden; 
            transition: background 0.5s ease, color 0.5s ease;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            overflow: hidden;
        }

      
         /* =========================================
           NAVBAR STYLES
           ========================================= */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; padding: 20px 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 100; background: rgba(15, 15, 15, 0.85);
            backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .logo { display: flex; align-items: center; z-index: 101; text-decoration: none; }
        .nav-logo {height: 50px; width: auto; object-fit: contain; transition: all 0.3s ease;}
        .nav-links { display: flex; gap: 30px; list-style: none; }
        .nav-item { position: relative; }
        .nav-link { color: #e0e0e0; text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; padding: 10px 0; display: flex; align-items: center; cursor: pointer; transition: color 0.3s; }
        .nav-link:hover { color: #fff; }
        .has-dropdown .nav-link::after { content: '▾'; margin-left: 6px; font-size: 0.8rem; }
        .dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: rgba(20, 20, 20, 0.95); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 20px; min-width: 220px; opacity: 0; visibility: hidden; pointer-events: none; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        
        /* THIS IS THE FIX: Creates an invisible bridge to cover the hover gap */
        .dropdown::before { content: ""; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: transparent; }

        .dropdown.wide { min-width: 450px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; }
        .dropdown a { color: #fff; text-decoration: none; font-size: 0.85rem; padding: 8px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; }
        .dropdown a:last-child { border-bottom: none; }
        .dropdown a:hover { color: #f39c12; padding-left: 5px; }
        .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 101; }
        .menu-toggle span { width: 30px; height: 2px; background: #fff; transition: 0.3s; }

        @media (max-width: 1024px) {
            .menu-toggle { display: flex; }
            .nav-links { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #0f0f0f; flex-direction: column; justify-content: center; align-items: center; gap: 20px; opacity: 0; visibility: hidden; pointer-events: none; }
            .nav-links.mobile-active { opacity: 1; visibility: visible; pointer-events: all; }
            .nav-item { text-align: center; }
            .nav-link { font-size: 1.5rem; }
            .dropdown, .dropdown.wide { position: relative; top: 0; left: 0; transform: none; background: transparent; box-shadow: none; border: none; min-width: 100%; display: none; grid-template-columns: 1fr; padding: 10px 0; }
            .dropdown a { font-size: 1rem; justify-content: center; display: flex;}
            
            /* Remove the bridge on mobile so it doesn't overlap text */
            .dropdown::before { display: none; }
        }

        /* =========================================
           HERO SECTION STYLES
           ========================================= */
        .hero-container { position: relative; width: 100vw; height: 100vh; overflow: hidden; display: flex; align-items: center; }
        .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; z-index: 1; visibility: hidden; }
        .slide.active { z-index: 2; opacity: 1; visibility: visible; }
        .slide-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.1); }
        .slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
        .slide-content { position: relative; z-index: 3; width: 90%; max-width: 1300px; margin: 0 auto; color: #fff; padding: 0 20px; display: flex; flex-direction: column; justify-content: center; height: 100%; }
        .text-wrap { overflow: hidden; margin-bottom: 5px; }
        .slide-title { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 800; text-transform: uppercase; line-height: 1.1; transform: translateY(100%); }
        .slide-desc { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300; opacity: 0; transform: translateY(20px); margin-top: 20px; margin-bottom: 40px; max-width: 500px; line-height: 1.6; }
        .btn { display: inline-block; padding: 18px 40px; background: #fff; color: #000; text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.9rem; opacity: 0; transform: translateY(20px); transition: transform 0.3s ease, background 0.3s ease; align-self: flex-start; }
        .btn:hover { background: #e0e0e0; transform: translateY(-3px) !important; }
        .controls { position: absolute; bottom: 50px; right: 5%; z-index: 10; display: flex; gap: 20px; }
        .ctrl-btn { width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.2); backdrop-filter: blur(5px); color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
        .ctrl-btn:hover { background: #fff; color: #000; border-color: #fff; }

        @media (max-width: 768px) {
            .slide-bg::after { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%); }
            .slide-content { justify-content: flex-end; padding-bottom: 150px; }
            .controls { right: auto; left: 5%; bottom: 40px; }
        }

        /* =========================================
           CATEGORIES SECTION STYLES
           ========================================= */
        .categories-section { padding: 100px 5%; background: #050505; overflow: hidden; }
        .categories-section .section-header { text-align: center; margin-bottom: 60px; }
        .categories-section .section-title { display: inline-block; }
        .bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 20px; max-width: 1400px; margin: 0 auto; }
        .category-card { position: relative; display: block; border-radius: 16px; overflow: hidden; text-decoration: none; opacity: 0; transform: translateY(50px); }
        .card-nets { grid-column: span 2; grid-row: span 2; }
        .card-bags { grid-column: span 2; grid-row: span 1; }
        .card-cricket { grid-column: span 1; grid-row: span 1; }
        .card-badminton { grid-column: span 1; grid-row: span 1; }
        .card-accessories { grid-column: span 2; grid-row: span 1; }
        .card-fitness { grid-column: span 2; grid-row: span 1; }
        .card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1); }
        .card-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%); transition: background 0.5s ease; }
        .card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
        .card-title { color: #fff; font-size: 1.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; transition: transform 0.4s ease; }
        .view-all { color: #f39c12; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0; transform: translateY(15px); transition: all 0.4s ease; display: flex; align-items: center; gap: 8px; }
        .category-card:hover .card-bg { transform: scale(1.08); }
        .category-card:hover .card-bg::after { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%); }
        .category-card:hover .card-title { transform: translateY(-5px); }
        .category-card:hover .view-all { opacity: 1; transform: translateY(0); }

        @media (max-width: 1024px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
            .card-nets { grid-column: span 2; grid-row: span 1; }
            .card-bags { grid-column: span 1; grid-row: span 1; }
            .card-cricket { grid-column: span 1; grid-row: span 1; }
            .card-badminton { grid-column: span 1; grid-row: span 1; }
            .card-accessories { grid-column: span 1; grid-row: span 1; }
            .card-fitness { grid-column: span 2; grid-row: span 1; }
        }
        @media (max-width: 600px) {
            .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
            .category-card { grid-column: span 1 !important; grid-row: span 1 !important; }
            .view-all { opacity: 1; transform: translateY(0); } 
        }

        /* =========================================
           RECOMMENDED SECTION STYLES
           ========================================= */
        .recommended-section { padding: 100px 5%; background: #000; position: relative; }
        .recommended-section .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
        .carousel-controls { display: flex; gap: 15px; }
        .nav-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(20, 20, 20, 0.8); color: #fff; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
        .nav-btn:hover { background: #fff; color: #000; border-color: #fff; transform: scale(1.1); }
        .carousel-track { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 40px; -ms-overflow-style: none; scrollbar-width: none; }
        .carousel-track::-webkit-scrollbar { display: none; }
        .product-card { flex: 0 0 calc(25% - 22.5px); scroll-snap-align: start; background: #0a0a0a; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; text-decoration: none; color: #fff; position: relative; overflow: hidden; opacity: 0; transform: translateX(100px); }
        .image-wrapper { width: 100%; aspect-ratio: 1 / 1; background: #111; border-radius: 12px; margin-bottom: 20px; overflow: hidden; position: relative; }
        .product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
        .product-title { font-size: 1rem; font-weight: 600; line-height: 1.5; margin-bottom: 15px; color: #e0e0e0; transition: color 0.3s ease; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .buy-now-btn { margin-top: auto; padding: 12px 0; width: 100%; text-align: center; background: transparent; border: 1px solid #f39c12; color: #f39c12; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; border-radius: 8px; transition: all 0.3s ease; }
        .product-card:hover { border-color: rgba(255, 255, 255, 0.15); background: #111; }
        .product-card:hover .product-img { transform: scale(1.1); }
        .product-card:hover .product-title { color: #fff; }
        .product-card:hover .buy-now-btn { background: #f39c12; color: #000; }

        @media (max-width: 1200px) { .product-card { flex: 0 0 calc(33.333% - 20px); } }
        @media (max-width: 900px) { .product-card { flex: 0 0 calc(50% - 15px); } }
        @media (max-width: 600px) { .product-card { flex: 0 0 100%; } .recommended-section .section-header { flex-direction: column; align-items: flex-start; gap: 20px; } .carousel-controls { align-self: flex-end; } }

        /* =========================================
           SHOP BY CONTENT SECTION STYLES
           ========================================= */
        .shop-content-section { padding: 100px 5%; background: #050505; position: relative; display: flex; flex-direction: column; align-items: center; }
        .shop-content-section .section-header { text-align: center; margin-bottom: 50px; width: 100%; }
        .content-gallery { display: flex; width: 100%; max-width: 1400px; height: 60vh; min-height: 450px; gap: 15px; margin-bottom: 50px; }
        .gallery-panel { position: relative; flex: 1; border-radius: 20px; overflow: hidden; text-decoration: none; cursor: pointer; transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1); opacity: 0; transform: translateY(80px); }
        .panel-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.7s ease; }
        .panel-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); transition: background 0.5s ease; }
        .panel-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 2; }
        .panel-title { color: #fff; font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; transition: transform 0.5s ease; }
        .shop-all-btn { display: inline-block; padding: 12px 30px; background: #f39c12; color: #000; font-weight: 800; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; border-radius: 30px; opacity: 0; transform: translateY(20px) scale(0.9); transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); white-space: nowrap; }
        .gallery-panel:hover { flex: 4; }
        .gallery-panel:hover .panel-bg { transform: scale(1.05); }
        .gallery-panel:hover .panel-bg::after { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0) 100%); }
        .gallery-panel:hover .shop-all-btn { opacity: 1; transform: translateY(0) scale(1); }
        .view-all-content { display: inline-block; padding: 16px 40px; background: transparent; color: #fff; border: 2px solid #fff; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; border-radius: 4px; transition: all 0.3s ease; opacity: 0; }
        .view-all-content:hover { background: #fff; color: #000; }
        @media (max-width: 900px) { .content-gallery { flex-direction: column; height: 80vh; } .gallery-panel { flex: 1; width: 100%; } .gallery-panel:hover { flex: 3; } .panel-content { padding: 20px; } .shop-all-btn { opacity: 1; transform: translateY(0) scale(1); } }

        /* =========================================
           PREMIUM DEALERS SECTION STYLES
           ========================================= */
        .dealers-section { padding: 100px 0; background: #020202; position: relative; display: flex; flex-direction: column; align-items: center; overflow: hidden; }
        .dealers-header { text-align: center; margin-bottom: 60px; padding: 0 5%; }
        .section-subtitle { font-size: 1rem; color: #888; margin-top: 10px; text-transform: uppercase; letter-spacing: 4px; font-weight: 600; }
        .marquee-container { width: 100%; overflow: hidden; position: relative; padding: 20px 0; -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
        .marquee-track { display: flex; width: max-content; gap: 30px; align-items: center; padding-left: 30px; }
        .dealer-card { width: 220px; height: 120px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; display: flex; justify-content: center; align-items: center; padding: 20px; transition: all 0.4s ease; cursor: pointer; position: relative; overflow: hidden; }
        .dealer-card:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(243, 156, 18, 0.5); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .dealer-logo { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: all 0.4s ease; }
        .dealer-card:hover .dealer-logo { filter: grayscale(0%) opacity(1); transform: scale(1.05); }
        @media (max-width: 768px) { .dealer-card { width: 160px; height: 90px; padding: 15px; } }

        /* =========================================
           CHAMPIONS SECTION STYLES
           ========================================= */
        .champions-section { position: relative; width: 100vw; min-height: 80vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 100px 5%; }
        .champ-bg { position: absolute; top: -10%; left: -10%; width: 120%; height: 120%; background-image: url('https://sanassportswear.in/hero2.jpeg'); background-size: cover; background-position: center; z-index: 1; filter: grayscale(80%); opacity: 0.4; }
        .champions-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 0%, #000 90%); z-index: 2; transition: background 0.5s ease; }
        .champ-content { position: relative; z-index: 3; text-align: center; max-width: 1200px; display: flex; flex-direction: column; align-items: center; }
        .champ-text-wrap { overflow: hidden; margin-bottom: 5px; }
        .champ-line { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900; text-transform: uppercase; line-height: 1.1; letter-spacing: 1px; transform: translateY(110%); }
        .champ-line.accent { color: #f39c12; margin-top: 20px; }
        .champ-btn-wrap { overflow: hidden; margin-top: 50px; }
        .champ-btn { display: inline-block; padding: 18px 45px; background: #fff; color: #000; text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; border-radius: 50px; transition: all 0.3s ease; transform: translateY(110%); }
        .champ-btn:hover { background: #f39c12; color: #fff; transform: scale(1.05) !important; box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3); }
        @media (max-width: 768px) { .champ-line { margin-bottom: 10px; } .champions-section { min-height: 60vh; } }

        /* =========================================
           FOOTER SECTION STYLES
           ========================================= */
        .site-footer { background: #050505; position: relative; padding-top: 80px; overflow: hidden; }
        .footer-accent-line { position: absolute; top: 0; left: 0; height: 2px; width: 100%; background: linear-gradient(90deg, transparent, #f39c12, transparent); transform: scaleX(0); transform-origin: center; }
        .footer-container { max-width: 1300px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 50px; padding-bottom: 60px; }
        .footer-col { opacity: 0; transform: translateY(30px); }
        .footer-logo { width: 150px; border-radius: 8px; margin-bottom: 25px; display: block; filter: grayscale(20%); transition: filter 0.3s ease; }
        .footer-logo:hover { filter: grayscale(0%); }
        .footer-address { color: #aaa; font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
        .footer-contact-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
        .footer-contact-links a { color: #e0e0e0; text-decoration: none; font-size: 0.95rem; font-weight: 600; transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
        .footer-contact-links a:hover { color: #f39c12; }
        .wa-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
        .wa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(37, 211, 102, 0.1); color: #25D366; border: 1px solid rgba(37, 211, 102, 0.3); border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
        .wa-btn:hover { background: #25D366; color: #000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }
        .footer-heading { color: #fff; font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 25px; }
        .mt-4 { margin-top: 30px; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; display: inline-block; }
        .footer-links a:hover { color: #f39c12; transform: translateX(8px); }
        .newsletter-desc { color: #aaa; font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; }
        .newsletter-form { display: flex; flex-direction: column; gap: 15px; }
        .newsletter-input { width: 100%; padding: 15px 0; background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; transition: border-color 0.3s ease; }
        .newsletter-input:focus { outline: none; border-bottom-color: #f39c12; }
        .newsletter-input::placeholder { color: #666; }
        .subscribe-btn { align-self: flex-start; padding: 12px 30px; background: #fff; color: #000; border: none; font-family: 'Montserrat', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease; }
        .subscribe-btn:hover { background: #f39c12; color: #fff; }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #666; opacity: 0; }
        @media (max-width: 900px) { .footer-container { grid-template-columns: 1fr 1fr; } .footer-col:nth-child(1) { grid-column: span 2; } }
        @media (max-width: 600px) { .footer-container { grid-template-columns: 1fr; gap: 40px; } .footer-col:nth-child(1) { grid-column: span 1; } .footer-bottom { flex-direction: column; text-align: center; gap: 10px; } }
    
        /* =========================================
           LIGHT THEME OVERRIDES (NEW CODE)
           ========================================= */
        .theme-toggle-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #fff;
            color: #000;
            border: none;
            cursor: pointer;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        body.light-theme .theme-toggle-btn {
            background: #000;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        body.light-theme { background: #fff; color: #000; }
        body.light-theme .navbar { background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(0,0,0,0.1); }
        body.light-theme .nav-logo {filter: none; mix-blend-mode: multiply;}
        body.light-theme .nav-link { color: #333; }
        body.light-theme .nav-link:hover { color: #000; }
        body.light-theme .menu-toggle span { background: #000; }
        body.light-theme .dropdown { background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        body.light-theme .dropdown a { color: #555; border-bottom: 1px solid rgba(0,0,0,0.05); }
        body.light-theme .dropdown a:hover { color: #f39c12; }
        
        @media (max-width: 1024px) {
            body.light-theme .nav-links { background: #fff; }
        }

        body.light-theme .categories-section, 
        body.light-theme .shop-content-section, 
        body.light-theme .site-footer { background: #f5f5f5; }
        body.light-theme .recommended-section, 
        body.light-theme .dealers-section { background: #fff; }
        
        body.light-theme .product-card { background: #fff; border: 1px solid rgba(0,0,0,0.1); color: #000;}
        body.light-theme .product-title { color: #222; }
        body.light-theme .product-card:hover { background: #f9f9f9; border-color: rgba(0,0,0,0.2); }
        body.light-theme .product-card:hover .product-title { color: #000; }
        
        body.light-theme .dealer-card { background: #fff; border: 1px solid rgba(0,0,0,0.1); }
        body.light-theme .dealer-card:hover { background: #fafafa; border-color: #f39c12; }
        body.light-theme .dealer-logo { filter: grayscale(100%) invert(1) opacity(0.8); }
        body.light-theme .dealer-card:hover .dealer-logo { filter: grayscale(0%) invert(0) opacity(1); transform: scale(1.05); }
        
        body.light-theme .champions-section::after { background: radial-gradient(circle at center, transparent 0%, #fff 90%); }
        
        /* New Glassmorphism Trust Section Light Theme Overrides */
        body.light-theme .trust-section { background: #fdfbfb; }
        body.light-theme .trust-card { background: rgba(255, 255, 255, 0.45); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 10px 40px rgba(31, 38, 135, 0.05); }
        body.light-theme .trust-card:hover { background: rgba(255, 255, 255, 0.65); box-shadow: 0 20px 50px rgba(31, 38, 135, 0.1); }
        body.light-theme .trust-title { color: #2d3436; }
        body.light-theme .trust-desc { color: #636e72; }

        body.light-theme .footer-heading { color: #000; }
        body.light-theme .footer-address, body.light-theme .newsletter-desc, body.light-theme .footer-links a, body.light-theme .footer-bottom { color: #555; }
        body.light-theme .footer-contact-links a { color: #333; }
        body.light-theme .footer-logo { filter: grayscale(20%) invert(1); }
        body.light-theme .newsletter-input { color: #000; border-bottom: 1px solid rgba(0,0,0,0.2); }
        body.light-theme .newsletter-input::placeholder { color: #888; }
        body.light-theme .subscribe-btn { background: #000; color: #fff; }
        body.light-theme .subscribe-btn:hover { background: #f39c12; }
        
        body.light-theme .nav-btn, body.light-theme .ctrl-btn { background: rgba(255,255,255,0.9); color: #000; border-color: rgba(0,0,0,0.2); }
        body.light-theme .nav-btn:hover, body.light-theme .ctrl-btn:hover { background: #000; color: #fff; }
        body.light-theme .view-all-content { color: #000; border-color: #000; }
        body.light-theme .view-all-content:hover { background: #000; color: #fff; }

        body:not(.light-theme) .nav-logo {filter: invert(1); mix-blend-mode: screen; }

     #scroll-nav {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99; /* Ensures it stays on top of other elements */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#scroll-nav button {
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    background-color: #333; /* Dark grey */
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%; /* Makes it a circle */
    font-size: 18px;
    transition: background-color 0.3s, opacity 0.3s;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

#scroll-nav button:hover {
    background-color: #555; /* Lighter grey on hover */
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.floating-wa-btn {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-wa-btn svg {
    width: 32px;
    height: 32px;
}

.floating-wa-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20b858;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Make it slightly smaller on mobile and shift up to avoid overlap */
@media (max-width: 768px) {
    .floating-wa-btn {
        /* Shifted up to 130px so it sits above the scroll buttons */
        bottom: 130px; 
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    #scroll-nav {
        bottom: 20px;
        right: 20px;
        gap: 8px; /* Slightly tighter gap for mobile */
    }

    .floating-wa-btn svg {
        width: 28px;
        height: 28px;
    }
}
