.navbar{
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    background-color: var(--primary-color);
    align-items: center;
    height: 92px;
    top: 0;
    z-index: 50;
    box-shadow: 0px 1px 4px gray;
}

.menu-items{
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 20px;
    color: #ffffff;
    padding-right: 32px;
    text-align: center;
}

.nav-items{
    text-decoration: none;
    color: var(--background-color);
    width: 100px;
}

.nav-items:hover{
    cursor: pointer;
    font-weight: bold;
}



#showCartButton:hover{
    cursor: pointer;
    transform: scale(1.05); /* Slightly enlarge the card */
}

@media only screen and (max-width : 768px ) {

    .nav-items{
      display: none;
    }

    .navbar{
        height: 72px;
    }

    .logo{
        width: 64px;
    }
    
    
    }