/* SIDEBAR CART */
.cart-backdrop {
    display: none; 
    position: fixed; 
    z-index: 1100; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(0.6px);
}

.cart-backdrop.active {
    display: block;
}

.cart-sidebar {
    position: fixed;
    z-index: 1110;
    top: 0px;
    width: 500px;
    right: -500px;
    height: 100%;
    transition: right .2s, width 0.2s;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    overflow: hidden;
}
.cart-sidebar.show {
    right: 0;
}

.cart-items .card-item:not(:last-child) {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.empty-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    font-size: 16px;
    background-color: #EEE;
    border: 1px solid #DDD;
}

@media screen and (max-width: 572px) {
    .cart-sidebar.show {
        width: 100%;
    }
}