/* SIDEBAR CART */
.menu-lateral-backdrop {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(0.6px);
}

.menu-lateral-backdrop.active {
    display: block;
}

.menu-lateral {
    position: fixed;
    z-index: 1010;
    top: 0px;
    width: 360px;
    left: -360px;
    height: 100%;
    transition: left .2s, width 0.2s;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    overflow: hidden;
}
.menu-lateral.show {
    left: 0;
}

@media screen and (max-width: 572px) {
    .menu-lateral.show {
        width: 100%;
    }
}