.bottom-cart {
    display:flex; 
    position: fixed; 
    width: 100%; 
    bottom: 0; 
    left: 0; 
    height: 90px; 
    background: white; 
    z-index: 10; 
    align-items: center; 
    justify-content: center;
    color: white;
    font-weight: 900;
    cursor: pointer;
    box-shadow: -3px 0 4px #ccc;
}

.bottom-cart-button {
    background: var(--primary-color);
    max-width: 700px; 
    width: 90%; 
    display: flex; 
    padding: 10px; 
    align-items: center; 
    justify-content: space-between;
    border-radius: 12px;
}

.bottom-cart .cart-count{
    width: 40px; 
    height: 40px; 
    aspect-ratio: 1; 
    background: #0002; 
    align-items: center; 
    justify-content: center; 
    display: flex;
    border-radius: 12px;
}