        :root {
            --bg: #050505;
            --surface: #0f0f0f;
            --primary: #ff9f1a;
            --gold: #d4af37;
            --white: #ffffff;
            --grey: #a0a0a0;
            --glass: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.08);
            --shadow: 0 20px 40px rgba(0,0,0,0.4);
            --accent-glow: 0 0 20px rgba(255, 159, 26, 0.2);
        }

        /* Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        body { 
            background: var(--bg); 
            color: var(--white); 
            font-family: 'Inter', sans-serif; 
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, .logo { font-family: 'Poppins', sans-serif; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal { opacity: 0; transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0) !important; }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg); }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        /* --- Header --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 25px 5%; transition: 0.4s ease;
        }
        header.sticky {
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(15px);
            padding: 15px 5%;
            border-bottom: 1px solid var(--border);
        }
        nav { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: auto; }
        .logo { font-size: 26px; font-weight: 800; color: var(--gold); letter-spacing: -1px; }
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 35px; }
        .nav-links a { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); transition: 0.3s; }
        .nav-links a:hover { color: var(--primary); }

        /* --- Hero --- */
        .hero {
            height: 100vh; position: relative; overflow: hidden;
            display: flex; align-items: center; justify-content: center; text-align: center;
        }
        .hero-video {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover; z-index: -1; filter: brightness(0.4);
        }
        .hero-content h1 { font-size: clamp(3rem, 10vw, 5.5rem); line-height: 1; margin-bottom: 25px; }
        .hero-content p { font-size: 1.1rem; color: var(--grey); max-width: 600px; margin: 0 auto 40px; }

        /* --- Buttons --- */
        .btn {
            padding: 15px 35px; border-radius: 50px; font-weight: 700; 
            cursor: pointer; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex; align-items: center; gap: 10px; border: none;
        }
        .btn-gold { background: linear-gradient(to right, var(--primary), var(--gold)); color: #000; }
        .btn-gold:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 159, 26, 0.4); }
        .btn-outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
        .btn-outline:hover { background: var(--white); color: #000; }

        /* --- Category Section --- */
        .scroller { 
            padding: 40px 5%; display: flex; gap: 20px; overflow-x: auto; 
            scrollbar-width: none; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }
        .cat-card {
            min-width: 180px; padding: 30px; text-align: center; border-radius: 20px;
            background: var(--glass); border: 1px solid var(--border); transition: 0.4s;
        }
        .cat-card:hover { background: var(--primary); color: #000; border-color: var(--primary); transform: translateY(-5px); }
        .cat-card i { margin-bottom: 15px; display: block; }

        /* --- Products --- */
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 42px; margin-bottom: 10px; }
        .grid { 
            display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 30px; padding: 0 5%; max-width: 1400px; margin: auto; 
        }
        .card {
            background: var(--surface); border-radius: 24px; padding: 20px;
            border: 1px solid var(--border); transition: 0.4s; position: relative;
        }
        .card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: var(--shadow); }
        .card img { width: 100%; height: 220px; object-fit: cover; border-radius: 18px; margin-bottom: 20px; }
        .card h3 { font-size: 20px; margin-bottom: 5px; }
        .card .price { font-size: 22px; font-weight: 700; color: var(--primary); margin: 15px 0; }

        /* --- Special Offers --- */
        .offers { padding: 100px 5%; background: #080808; margin: 80px 0; }
        .offer-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #050505 100%);
            border: 2px solid var(--gold); border-radius: 30px; padding: 50px;
            display: flex; align-items: center; justify-content: space-between;
            position: relative; overflow: hidden; box-shadow: var(--accent-glow);
        }

        /* --- Contact Form --- */
        .contact-container {
            display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
            padding: 100px 5%; max-width: 1300px; margin: auto;
        }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 15px; background: var(--glass);
            border: 1px solid var(--border); border-radius: 12px; color: #fff;
        }

        /* --- Footer --- */
        footer { background: #030303; padding: 100px 5% 40px; border-top: 1px solid var(--border); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; max-width: 1400px; margin: auto; }
        .footer-col h4 { color: var(--gold); margin-bottom: 25px; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; }
        .footer-col li { margin-bottom: 12px; color: var(--grey); font-size: 14px; cursor: pointer; transition: 0.3s; }
        .footer-col li:hover { color: var(--primary); padding-left: 5px; }

        /* --- Cart Sidebar --- */
        .cart-sidebar {
            position: fixed; right: -450px; top: 0; width: 400px; height: 100%;
            background: var(--surface); z-index: 2000; padding: 40px;
            box-shadow: -20px 0 50px rgba(0,0,0,0.8); transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        }
        .cart-sidebar.open { right: 0; }
        .cart-item { display: flex; justify-content: space-between; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }

        /* Float WA */
        .wa-float {
            position: fixed; bottom: 30px; right: 30px; background: #25D366;
            width: 65px; height: 65px; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; z-index: 999; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        @media (max-width: 968px) {
            .contact-container, .footer-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 3.5rem; }
            .cart-sidebar { width: 100%; }
        }