  :root {
            --accent: #D2DE32;
            --black: #000000;
            --white: #FFFFFF;
            --gray: #111111;
            --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Fjalla One', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            text-transform: uppercase;
            line-height: 1.2;
        }

        /* --- Global Components --- */
        .btn-accent {
            background: black;
            color: var(--accent);
            padding: 18px 36px;
            border: none;
            font-family: 'Fjalla One', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .btn-accent:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(210, 222, 50, 0.3); }

        .section-padding { padding: 120px 8%; }
        .dark-bg { background: var(--black); color: var(--white); }
        .accent-bg { background: var(--accent); color: var(--black); }

        /* --- Header --- */
        header {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 20px 5%;
            display: flex; align-items: center; justify-content: space-between;
            transition: var(--transition);
        }
        header.scrolled { background: rgba(0,0,0,0.95); padding: 15px 5%; border-bottom: 1px solid #222; }

        .logo { font-size: 1.8rem; letter-spacing: -1px; display: flex; align-items: center; gap: 8px; cursor: pointer; }
        .logo i { color: var(--accent); }

        .nav-card {
            background: var(--accent); color: var(--black);
            padding: 8px 20px; font-size: 0.8rem;
            display: flex; align-items: center; gap: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .nav-card b { cursor: pointer; border-bottom: 2px solid var(--black); }

        .header-actions { display: flex; align-items: center; gap: 20px; }
        .icon-btn { background: none; border: none; color: inherit; cursor: pointer; position: relative; font-family: inherit; }
        .cart-dot {
            position: absolute; top: -5px; right: -5px; background: var(--accent);
            color: var(--black); width: 18px; height: 18px; border-radius: 50%;
            font-size: 0.65rem; display: flex; align-items: center; justify-content: center;
        }

        /* --- Hamburger Menu --- */
        #side-menu {
            position: fixed; top: 0; right: -100%; width: 450px; height: 100vh;
            background: var(--black); z-index: 2000; transition: var(--transition);
            padding: 100px 60px; display: flex; flex-direction: column; gap: 40px;
            border-left: 1px solid #333;
        }
        #side-menu.active { right: 0; }
        .menu-item {
            font-size: 3.5rem; color: var(--white); text-decoration: none;
            transition: 0.3s; cursor: pointer;
        }
        .menu-item:hover { color: var(--accent); transform: translateX(15px); }

        /* --- Hero Section --- */
        .hero { height: 100vh; display: flex; position: relative; overflow: hidden; }
        .hero-side { width: 50%; height: 100%; position: relative; }
        .hero-side img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
        .hero-title-container {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 80%; text-align: center; z-index: 10; pointer-events: none;
        }
        .hero-title {
            font-size: clamp(1rem, 4vw, 5rem); color: var(--accent);
            white-space: nowrap; text-shadow: 0 10px 30px rgba(0,0,0,0.5);
            animation: slideInText 1.5s ease-out;
        }
        @keyframes slideInText { from { letter-spacing: 50px; opacity: 0; } to { letter-spacing: normal; opacity: 1; } }

        .hero-card {
            position: absolute; bottom: 80px; right: 5%;
            background: var(--accent); color: var(--black);
            padding: 40px; width: 380px; z-index: 20;
            animation: slideUp 1s 0.5s both;
        }
        @keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        /* --- Sections --- */
        .product-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px; margin-top: 60px;
        }
        .product-card {
            position: relative; overflow: hidden; opacity: 0; transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        .product-card.visible { opacity: 1; transform: translateY(0); }
        .product-img { width: 100%; height: 500px; object-fit: cover; transition: 0.8s; }
        .product-card:hover .product-img { transform: scale(1.1); filter: brightness(0.4); }
        
        .hover-text {
            position: absolute; inset: 0; padding: 40px;
            display: flex; flex-direction: column; justify-content: flex-end;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            opacity: 0; transition: 0.4s;
        }
        .product-card:hover .hover-text { opacity: 1; }

        /* --- Marquee --- */
        .marquee {
            background: var(--accent); color: var(--black);
            padding: 25px 0; overflow: hidden; white-space: nowrap;
        }
        .marquee-inner { display: inline-block; animation: scroll 30s linear infinite; font-size: 2.5rem; }
        @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

        /* --- Reveal Section --- */
        .fixed-reveal {
            height: 100vh; background-attachment: fixed; background-size: cover;
            background-position: center; display: flex; align-items: center; justify-content: center;
        }
        .reveal-card {
            background: var(--accent); color: var(--black);
            padding: 80px 60px; text-align: center; max-width: 700px;
            opacity: 0; transform: scale(0.9); transition: 1s ease-out;
        }
        .reveal-card.active { opacity: 1; transform: scale(1); }

        /* --- Auth Modals --- */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.95);
            z-index: 3000; display: none; align-items: center; justify-content: center;
            backdrop-filter: blur(10px);
        }
        .auth-box {
            background: var(--gray); border: 1px solid #333; padding: 60px;
            width: 100%; max-width: 500px; position: relative;
        }
        .auth-box h2 { font-size: 3rem; margin-bottom: 40px; text-align: center; color: var(--accent); }
        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; margin-bottom: 10px; font-size: 0.8rem; color: #888; }
        .form-group input { 
            width: 100%; padding: 15px; background: transparent; border: 1px solid #444; 
            color: white; font-family: inherit; font-size: 1rem;
        }
        .form-group input:focus { border-color: var(--accent); outline: none; }

        /* --- Cart Panel --- */
        #cart-panel {
            position: fixed; top: 0; right: -100%; width: 500px; height: 100vh;
            background: var(--black); z-index: 2500; border-left: 2px solid var(--accent);
            padding: 60px 40px; transition: var(--transition);
        }
        #cart-panel.active { right: 0; }
        .cart-item {
            display: flex; gap: 20px; align-items: center; margin-bottom: 30px;
            padding-bottom: 20px; border-bottom: 1px solid #222;
        }
        .cart-item img { width: 80px; height: 80px; object-fit: cover; }

        /* --- Footer --- */
        footer { padding: 120px 8% 60px; border-top: 1px solid #222; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
        .footer-col h4 { color: var(--accent); font-size: 1.5rem; margin-bottom: 30px; }
        .footer-col li { list-style: none; margin-bottom: 15px; opacity: 0.6; cursor: pointer; transition: 0.3s; }
        .footer-col li:hover { opacity: 1; color: var(--accent); padding-left: 5px; }

        /* --- Pages --- */
        .page { display: none; min-height: 100vh; animation: fadeIn 0.8s ease; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; }
            .hero-side { width: 100%; height: 50%; }
            .hero { flex-direction: column; }
            #side-menu, #cart-panel { width: 100%; }
            .hero-title { font-size: 3.5rem; white-space: normal; width: 90%; margin: 0 auto; }
            .hero-card { position: relative; bottom: 0; right: 0; width: 100%; }
        }

        .popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup-box{
background:#111;
padding:40px;
width:420px;
max-width:90%;
border:1px solid #333;
position:relative;
}

.popup-box h2{
margin-bottom:10px;
}

.popup-box input,
.popup-box select,
.popup-box textarea{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:15px;
background:#000;
border:1px solid #333;
color:white;
}

.close-popup{
position:absolute;
top:10px;
right:10px;
background:none;
border:none;
color:white;
font-size:20px;
cursor:pointer;
}
