.badge-total-items-cart {
    position: absolute;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #EEE; 
    font-weight: bold;
    font-size: 16px; 
    border-radius: 50%; 
    background-color: #059937;
    left: 50%; 
    bottom: 50%; 
    width: 26px; 
    height: 26px;
}
/* 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;
}

.card-items .card-item + .card-item {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #EEE;
}

.card-item .thumb {
    display: inline-block;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.empty-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    font-size: 20px;
    background-color: #EEE;
    border: 1px solid #DDD;
}

@media screen and (max-width: 572px) {
    .cart-sidebar.show {
        width: 100%;
    }
}