/* =========================
   RTL Fashion - Cart Page
========================= */

body{
    background:#fff6f9;
    color:#222;
    font-family:'Poppins',sans-serif;
}

/* Cart */

.cart-page{
    padding:40px 8%;
}

.cart-container{
    max-width:1200px;
    margin:auto;
}

.cart-container h1{
    text-align:center;
    margin-bottom:35px;
    font-size:34px;
}

#cart-products{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Cart Card */

.cart-item{
    display:flex;
    gap:20px;
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.cart-item img{
    width:120px;
    height:150px;
    object-fit:cover;
    border-radius:10px;
}

.cart-details{
    flex:1;
}

.cart-details h3{
    font-size:22px;
    margin-bottom:10px;
}

.cart-details p{
    margin:8px 0;
    color:#555;
}

/* Quantity */

.quantity-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
}

.quantity-box button{
    width:35px;
    height:35px;
    border:none;
    border-radius:6px;
    background:#111;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

.quantity-box span{
    font-size:18px;
    font-weight:600;
}

/* Remove */

.remove-btn{
    margin-top:18px;
    background:#ff3d3d;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.remove-btn:hover{
    background:#d90000;
}

/* Summary */

.cart-summary{
    margin-top:35px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
    font-size:18px;
}

.total{
    font-size:24px;
    font-weight:700;
    border-top:1px solid #ddd;
    padding-top:15px;
}

.checkout-btn{
    width:100%;
    margin-top:25px;
    padding:15px;
    border:none;
    background:#111;
    color:#fff;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.checkout-btn:hover{
    background:#ff4081;
}

/* Empty Cart */

.empty-cart{
    text-align:center;
    background:#fff;
    padding:60px 20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.empty-cart h2{
    margin-bottom:15px;
}

.empty-cart a{
    display:inline-block;
    margin-top:20px;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:8px;
}

/* Mobile */

@media(max-width:768px){

.cart-item{
    flex-direction:column;
    text-align:center;
}

.cart-item img{
    width:180px;
    height:220px;
    margin:auto;
}

.quantity-box{
    justify-content:center;
}

}