#mwsc-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:99998;
}

#mwsc-overlay.active{
    opacity:1;
    visibility:visible;
}

#mwsc-cart{
    position:fixed;
    top:0;
    right:-450px;
    width:420px;
    height:100vh;
    z-index:99999;
    transition:0.4s ease;
    display:flex;
    flex-direction:column;
    box-shadow:-10px 0 30px rgba(0,0,0,0.12);
}

#mwsc-cart.open{
    right:0;
}

.mwsc-header{
    padding:20px;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mwsc-body{
    flex:1;
    overflow-y:auto;
    padding:20px;
}

.mwsc-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.mwsc-image img{
    width:80px;
    border-radius:12px;
}

.mwsc-checkout-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:15px;
    color:#fff !important;
    border-radius:10px;
    text-decoration:none;
    margin-top:15px;
}

.mwsc-footer{
    padding:20px;
    border-top:1px solid #eee;
}

#mwsc-floating-cart{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:99999;
    font-size:24px;
}

.mwsc-count{
    position:absolute;
    top:-5px;
    right:-5px;
    width:24px;
    height:24px;
    background:red;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

@media(max-width:480px){
    #mwsc-cart{
        width:100%;
    }
}
