
    body {
        font-family: 'Arial', sans-serif;
        padding-top: 80px; /* Add padding to body to account for fixed header */
        border-color: #f5f5f5;

    }

    /* Sticky Header */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 80px; /* Added fixed height */
        min-height: 80px; /* Ensure minimum height */
    }
    
    .navbar-scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    /* Brand logo and name */
    .brand-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .brand-logo {
        height: 50px;
        width: auto;
        object-fit: contain;
    }
    .brand-name {
        font-family: 'Black Ops One', sans-serif;
        font-size: 2rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #333;
        margin: 0;
    }
    @media (max-width: 768px) {
        .brand-name {
            font-size: 1.5rem;
        }
        .brand-logo {
            height: 40px;
        }
    }

    /* Cart Badge */
    .cart-badge {
        font-size: 0.7rem;
        padding: 0.25em 0.4em;
    }

   