header {
    width: 100vw;
    top: 0;
    z-index: 999;
    background: var(--Off-White);
    transition: all 0.5s ease-in-out;
}

header.sticky {
    position: fixed;
}

header.fixedToTop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-desktop {
    padding: 16px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.header-minimal {
    max-width: var(--MaxWidth);
    display: grid;
    grid-template-columns: 2.1fr 1fr;
    gap: var(--GridGap1);
    width: 100%;
}

.header-mobile {
    display: none;
    padding: 12px 16px;
}

.left-side {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 70px;
}

.right-side {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 55px;
}




.header-logo img {
    height: 35px;        
    width: auto;         
    max-width: 200px;    
    z-index: 1002;
    position: relative;
}

.header-logo a {
    display: flex;
}

button.mini-cart-toggle {
    background: none;
    border: none;
    display:flex;
    margin: 0;
    padding: 0;
}

.header-cart {
    position: relative;
    display: flex;
    z-index: 1003;
    align-items: center;
    justify-content: flex-end;
}


.header-menu-items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    gap: 55px;
}



.header-menu-items li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

@media (max-width: 1500px) {

    .header-menu-items {
        gap: 20px;
        font-size: 16px;
        font-weight: 400;
    }
    
    .left-side {
        gap: 45px;
    }
    .header-desktop {
        padding: var(--PaddingSmall);
    }
    .right-side {
        gap: 20px;
    }
}

@media (max-width: 1020px) {
    .header-desktop { display: none; }
    .header-mobile {
        display: grid;
        grid-template-columns:  repeat(3, 1fr);;
        z-index: auto;    
        transform: none;  
    }
    .mobile-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 3px;
        text-transform: uppercase;
    }
    .mobile-menu p {
        padding-top: 2px;
    }

    .cart-count {
    position: absolute;
    top: 2px;
    right: -6px;

}

}


