:root {
            --primary-orange: #FF6B00;
            --orange-hover: #E65A00;
            --dark-bg: #121212;
            --white: #ffffff;
            --text-main: #2d3436;
            --glass: rgba(255, 255, 255, 0.95);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        body {
            background-color: #fff;
            color: var(--text-main);
        }

        /* --- NAVBAR --- */
        .navbar {
            display: grid;
            grid-template-columns: 1fr 4fr 1fr; /* Logo | Links | Icons */
            align-items: center;
            padding: 20px 12%;
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-size: 22px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
        }

        .logo span { color: var(--primary-orange); }

        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 35px;
        }

        .nav-links li { position: relative; }

        .nav-links a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            font-size: 16px;
            transition: 0.3s;
        }

        .nav-links a:hover { color: var(--primary-orange); }

        /* --- MEGA MENU --- */
        .mega-menu {
            position: absolute;
            top: 45px;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            width: 960px;
            
            background: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
            gap: 15px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            transition-delay: 0.2s;
            border-top: 4px solid var(--primary-orange);
        }

        .has-dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .menu-item { cursor: pointer; transition: 0.3s; padding: 10px; border-radius: 8px; }
        .menu-item:hover { background: #fff9f5; }
        .menu-item img { width: 100%; border-radius: 6px; margin-bottom: 8px; height: 90px; object-fit: cover; }
        .menu-item h4 { font-size: 14px; margin-bottom: 4px; }
        .menu-item p { font-size: 12px; color: #777; line-height: 1.4; }

        /* --- RIGHT UTILITY --- */
        .nav-icons {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }

        .icon-btn {
            font-size: 18px;
            color: var(--text-main);
            position: relative;
            cursor: pointer;
            transition: 0.3s;
        }

        .icon-btn:hover { color: var(--primary-orange); }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -10px;
            background: var(--primary-orange);
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
        }

        .hamburger { display: none; font-size: 22px; cursor: pointer; }

        /* --- SIDE DRAWER --- */
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            z-index: 1500;
            display: none;
        }

        .side-drawer {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100%;
            background: var(--white);
            z-index: 2000;
            transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
        }

        .side-drawer.active { right: 0; }
        .drawer-overlay.active { display: block; }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .side-drawer ul { list-style: none; }
        .side-drawer ul li { margin-bottom: 25px; }
        .side-drawer ul li a {
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .side-drawer ul li a i { color: var(--primary-orange); width: 25px; }

         @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .navbar { grid-template-columns: 1fr 1fr; }
            .nav-links, .nav-icons .icon-btn:not(.hamburger) { display: none; }
            .hamburger { display: block; }
            .hero { flex-direction: column; text-align: center; padding-top: 40px; }
            .hero-content h1 { font-size: 2.8rem; }
            .btn-group { justify-content: center; }
            .hero-image { text-align: center; }
        }
