*,
*::before,
*::after{
    box-sizing:border-box;
}

.sndan-cart-page{
    direction:rtl;
    max-width:1400px;
    margin:0 auto;
    padding:30px 20px;
    display:grid;
    grid-template-columns:minmax(0,1fr) 380px;
    gap:30px;
    align-items:start;
}

.sndan-cart-main{
    min-width:0;
}

.sndan-cart-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.sndan-cart-head h2{
    margin:0;
    font-size:30px;
    font-weight:800;
}

.sndan-cart-head span{
    background:#f3f3f3;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
}

.sndan-cart-items{
    display:block;
}

.sndan-cart-card{
    background:#fff;
    border-radius:24px;
    padding:20px;
    margin-bottom:20px;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

    display:grid;
    grid-template-columns:220px minmax(0,1fr);
    gap:24px;
    align-items:start;
}

.sndan-product-image{
    width:220px;
}

.sndan-product-image img{
    width:220px !important;
    height:220px !important;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

.sndan-product-info{
    width:100%;
    min-width:0;
    display:flex;
    flex-direction:column;
}

.sndan-product-title{
    font-size:22px;
    font-weight:800;
    line-height:1.8;
    margin-bottom:12px;
}

.sndan-product-title a{
    color:#111;
    text-decoration:none;
}

.sndan-product-options{
    color:#666;
    line-height:2;
    margin-bottom:18px;
}

.sndan-product-options dl{
    margin:0;
}

.sndan-product-options dt{
    font-weight:700;
}

.sndan-product-options dd{
    margin:0 0 8px;
}

.sndan-product-footer{
    margin-top:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.sndan-product-price{
    font-size:24px;
    font-weight:900;
    white-space:nowrap;
}

.sndan-remove{
    margin-top:14px;
    display:inline-block;
    color:#c62828;
    text-decoration:none;
    font-weight:700;
}

.sndan-cart-summary{
    width:100%;
}

.sndan-summary-box{
    background:#fff;
    border-radius:24px;
    padding:24px;
    border:1px solid #ececec;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    position:sticky;
    top:20px;
}

.sndan-summary-box h3{
    margin:0 0 18px;
    font-size:24px;
    font-weight:800;
}

.sndan-free-shipping{
    background:#f8f8f8;
    border-radius:18px;
    padding:14px;
    margin-bottom:18px;
}

.sndan-free-title{
    font-weight:700;
    margin-bottom:10px;
}

.sndan-free-bar{
    height:8px;
    background:#e5e5e5;
    border-radius:999px;
    overflow:hidden;
}

.sndan-free-bar span{
    display:block;
    height:100%;
    width:70%;
    background:#111;
}

.sndan-summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eee;
}

.sndan-summary-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    font-size:22px;
    font-weight:900;
}

.sndan-checkout-btn{
    width:100%;
    height:56px;
    border-radius:16px;
    background:#111;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:10px;
}

.sndan-continue-btn{
    width:100%;
    height:56px;
    border-radius:16px;
    background:#f5f5f5;
    color:#111;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.sndan-payments{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
}

.sndan-payments span{
    padding:8px 12px;
    border-radius:999px;
    background:#f7f7f7;
    border:1px solid #ececec;
    font-size:13px;
    font-weight:700;
}

.sndan-trust{
    margin-top:18px;
    display:grid;
    gap:10px;
}

.sndan-trust div{
    background:#fafafa;
    border-radius:12px;
    padding:12px;
    text-align:center;
    font-weight:700;
}

.sndan-cart-empty{
    background:#fff;
    border-radius:24px;
    padding:50px 20px;
    text-align:center;
}

.sndan-cart-empty a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:12px;
    background:#111;
    color:#fff;
    text-decoration:none;
    margin-top:15px;
}

@media (max-width:991px){

    .sndan-cart-page{
        grid-template-columns:1fr;
        padding:12px;
        gap:15px;
    }

    .sndan-cart-card{
        grid-template-columns:90px minmax(0,1fr) !important;
        gap:12px;
        padding:12px;
        border-radius:18px;
    }

    .sndan-product-image{
        width:90px !important;
    }

    .sndan-product-image img{
        width:90px !important;
        height:90px !important;
        object-fit:cover !important;
    }

    .sndan-product-title{
        font-size:15px;
        line-height:1.5;
        margin-bottom:5px;
    }

    .sndan-product-options{
        font-size:12px;
        line-height:1.6;
        margin-bottom:8px;
    }

    .sndan-product-footer{
        flex-direction:row !important;
        align-items:center !important;
        justify-content:space-between !important;
    }

    .sndan-product-price{
        font-size:16px;
    }

    .sndan-summary-box{
        position:relative;
        top:auto;
    }

}