        :root {
            --brand-green: #9BEC00;
            --brand-black: #000000;
            --brand-white: #FFFFFF;
        }

        body {
            font-family: 'Alumni Sans Pinstripe', sans-serif;
            background-color: var(--brand-white);
            color: var(--brand-black);
            overflow-x: hidden;
            font-size: 1.5rem; /* Base size larger for this specific font */
        }

        h1, h2, h3, h4 {
            font-weight: 400;
            text-transform: uppercase;
        }

        .btn-green {
            background-color: var(--brand-green);
            color: var(--brand-white);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .btn-green:hover {
            background-color: #86ca00;
            transform: translateY(-2px);
        }

        .oval-logo {
            border: 3px solid var(--brand-black);
            border-radius: 50%;
            color:rgba(255, 0, 0, 0.748);
            padding: 20px 25px;
            display: inline-block;
        }

nav .nav-item {
    position: relative;
    cursor: pointer;
    color:#000000;

    transition: color 0.3s;
    padding: 0 10px; /* spacing around items */
}

/* Hover underline (your existing) */
.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 6px;
    bottom: -2px;
    left: 0;
    background-color: var(--brand-green);
    transition: width 0.3s;
}

.nav-item:hover::after { width: 100%; }
.nav-item:hover { color: var(--brand-green); }

/* Vertical divider between nav items */
.nav-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 130%;
    top: 45%;
    transform: translateY(-50%);
    height: 200%;       /* adjust line height */
    width: 3px;        /* line thickness */
    background-color: #070707; /* line color */
}
        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Cart & Login Sidebar */
        .side-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 400px;
            height: 100vh;
            background: white;
            z-index: 1000;
            box-shadow: -5px 0 30px rgba(0,0,0,0.1);
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 2rem;
        }
        .side-panel.open { right: 0; }

        /* Product Card Hover */
        .product-card .overlay {
            opacity: 0;
            transition: opacity 0.3s;
        }
        .product-card:hover .overlay {
            opacity: 1;
        }

        /* Chat Button */
        #chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            width: 150px;
            height: 50px;
            box-shadow: 0 10px 25px rgba(155, 236, 0, 0.3);
        }

        /* Hero Background Decor */
        .hero-decor {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(155, 236, 0, 0.05) 0%, transparent 70%);
            z-index: -1;
            animation: float 10s infinite alternate;
        }

        @keyframes float {
            from { transform: translate(0, 0); }
            to { transform: translate(50px, 30px); }
        }

        .hidden-page { display: none; }
