    :root {
            --header-bg: #44444E;
            --accent: #FE4F2D;
            --sky: #9CC6DB;
            --deep: #213C51;
            --dark: #1A1A1A;
        }

        body {
            font-family: 'Oswald', sans-serif;
            background-color: #FFFFFF;
            color: #000000;
            overflow-x: hidden;
            text-transform: uppercase;
        }

        /* Hero Parallax */
        .parallax-section {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            min-height: 100vh;
        }

        .hero-bg {
            background-image: url('https://static.wixstatic.com/media/c837a6_50761590dc1b4399857c2af5d228a00c~mv2.png/v1/fill/w_1883,h_1118,fp_0.48_0.12,q_95,usm_0.66_1.00_0.01,enc_auto/untitled_Gemini%203%20(Nano%20Banana%20Pro)15.png');
        }

        .training-bg {
            background-image: url('https://i.pinimg.com/736x/31/31/d2/3131d245ce48e401e816413d9dcd8f3a.jpg');
        }

        /* Header Styles */
        header {
            background: var(--header-bg);
            transition: all 0.3s ease;
            height: 100px;
        }
        header.scrolled {
            height: 70px;
            background: rgba(68, 68, 78, 0.95);
            backdrop-filter: blur(10px);
        }

        /* Navigation Links */
        .nav-link {
            color: #FFFFFF;
            font-weight: 500;
            letter-spacing: 1px;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Custom Scrollbox */
        .scrollbox {
            max-height: 400px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) transparent;
        }
        .scrollbox::-webkit-scrollbar { width: 6px; }
        .scrollbox::-webkit-scrollbar-thumb { background: var(--accent); }

        /* Page Transitions */
        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeIn 0.5s ease-in-out; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Buttons */
        .btn-membership {
            background: var(--accent);
            color: #000000;
            font-weight: 700;
            padding: 10px 24px;
            transition: all 0.3s ease;
        }
        .btn-membership:hover {
            transform: skew(-10deg);
            box-shadow: 5px 5px 0px #000000;
        }

        .editorial-img {
            filter: grayscale(100%);
            transition: filter 0.5s ease;
        }
        .editorial-img:hover {
            filter: grayscale(0%);
        }

        /* Cart Badge */
        .cart-count {
            position: absolute;
            top: -8px;
            right: -12px;
            background: white;
            color: var(--accent);
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
        }
                .about-bg { background-image: url('https://i.pinimg.com/1200x/38/ed/af/38edafa1b8783b11e411e4e309a5ca28.jpg'); }


header .nav-link {
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
}

/* Hide nav by default on mobile */
nav {
    display: flex;
    gap: 1rem;
}
@media (max-width: 1024px) {
    nav {
        display: none; /* hide desktop nav */
        flex-direction: column;
        width: 100%;
        background: var(--header-bg);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        z-index: 999;
    }
    nav.active {
        display: flex; /* show when toggled */
    }

    .mobile-menu-btn {
        display: block;
    }


}