/* CART MODAL GLOBAL */

.cart-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    display:none;
    justify-content:flex-end;
    z-index:9999;
}

.cart-content{
    width:100%;
    max-width:380px;
    height:100%;
    background:white;
    padding:15px;
    overflow-y:auto;
    border-top-left-radius:20px;
    border-bottom-left-radius:20px;
    box-shadow:-10px 0 30px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: 0.3s;
}

.cart-modal.show .cart-content{
    transform:translateX(0);
}

/* HEADER */
.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.close-btn{
    font-size:20px;
    cursor:pointer;
    padding:5px 10px;
    border-radius:10px;
}

/* ITEM */
.cart-item{
    padding:10px;
    border-bottom:1px solid #eee;
    border-radius:10px;
    margin-bottom:10px;
    background:#fafafa;
}

/* QTY */
.qty-box{
    display:flex;
    align-items:center;
    gap:8px;
    background:#f5f5f5;
    padding:4px 8px;
    border-radius:10px;
}

/* SELLER GROUP */
.seller-group{
    margin-bottom:20px;
    padding:10px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.seller-footer{
    margin-top:10px;
    border-top:1px solid #eee;
    padding-top:10px;
    font-weight:bold;
}

.btn-checkout{
    width:100%;
    margin-top:10px;
    padding:12px;
    
    background:linear-gradient(135deg,#2f7f7b,#3fa9a3);
    color:white;
    font-weight:600;

    border:none;
    border-radius:12px;

    cursor:pointer;
    transition:0.2s;

    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

/* hover */
.btn-checkout:hover{
    transform:translateY(-1px);
    box-shadow:0 6px 16px rgba(0,0,0,0.15);
}

/* klik */
.btn-checkout:active{
    transform:scale(0.98);
}