/* ===========================================
   CHECKOUT PAGE
===========================================*/

.checkout-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.checkout-card h3{
    font-size:24px;
    margin-bottom:20px;
    color:#2d572c;
    font-weight:700;
}

.checkout-card label{
    font-weight:600;
    font-size:14px;
    margin-bottom:6px;
}

.checkout-card .form-control{
    border-radius:8px;
    padding:10px 12px;
}

.checkout-item{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:15px;
}

.checkout-item img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    border:1px solid #eee;
}

.checkout-item b{
    font-size:15px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin:8px 0;
    font-size:14px;
}

.summary-row.grand{
    font-size:18px;
    font-weight:bold;
    color:#000;
}

.place-order-btn{
    margin-top:20px;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    font-weight:bold;
}

@media(max-width:768px){

.checkout-card{
    margin-bottom:20px;
}

}