/*============================

SHOPPING HEADER

=============================*/


.cart-page{

background:#faf9f7;

padding:80px 0;

min-height:100vh;

}

.empty-cart{

background:#fff;

padding:90px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.05);

max-width:700px;

margin:auto;

}

.empty-cart-icon{

width:120px;

height:120px;

background:#edf3ee;

margin:auto;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:30px;

}

.empty-cart-icon i{

font-size:55px;

color:#8AA08B;

}

.empty-cart h2{

font-size:42px;

font-weight:700;

margin-bottom:15px;

}

.empty-cart p{

font-size:18px;

color:#777;

margin-bottom:35px;

}

.shop-btn{

display:inline-block;

padding:15px 40px;

background:#8AA08B;

color:white;

border-radius:50px;

font-weight:600;

transition:.3s;

text-decoration:none;

}

.shop-btn:hover{

background:#6f8b73;

color:#fff;

text-decoration:none;

transform:translateY(-2px);

}

.shopping-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:40px;

padding-bottom:25px;

border-bottom:1px solid #e8e8e8;

}

.cart-subtitle{

font-size:12px;

letter-spacing:4px;

font-weight:600;

color:#8aa08b;

display:block;

margin-bottom:10px;

text-transform:uppercase;

}

.shopping-header h1{

font-size:44px;

font-weight:700;

margin-bottom:5px;

}

.shopping-header p{

color:#777;

margin:0;

}

.continue-shopping{

padding:12px 24px;

border:1px solid #dcdcdc;

border-radius:50px;

font-weight:600;

color:#56745d;

transition:.3s;

text-decoration:none;

}

.continue-shopping:hover{

background:#8aa08b;

color:#fff;

text-decoration:none;

}

/*============================

ITEM CARD

=============================*/

.cart-item-card{

background:#fff;

border-radius:18px;

padding:25px;

margin-bottom:25px;

border:1px solid #ececec;

transition:.3s;

}

.cart-item-card:hover{

box-shadow:0 15px 40px rgba(0,0,0,.08);

transform:translateY(-3px);

}

.cart-product-image{

width:120px;

height:120px;

object-fit:cover;

border-radius:12px;

}

.cart-product-title{

font-size:22px;

font-weight:700;

color:#222;

display:block;

margin-bottom:12px;

text-decoration:none;

}

.cart-product-title:hover{

color:#8aa08b;

text-decoration:none;

}

.cart-variation{

margin-bottom:15px;

}

.cart-variation span{

display:inline-block;

background:#f6f6f6;

padding:6px 12px;

border-radius:30px;

margin-right:8px;

margin-bottom:8px;

font-size:13px;

}

.unit-price{

font-size:18px;

font-weight:600;

color:#8aa08b;

}

/*============================

QTY

=============================*/

.qty-box{

display:flex;

align-items:center;

justify-content:center;

background:#f8f8f8;

border-radius:40px;

padding:8px;

}

.qty-box a,

.qty-box button{

width:36px;

height:36px;

border:none;

background:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#333;

}

.qty-box span{

width:45px;

text-align:center;

font-weight:700;

}

/*============================

PRICE

=============================*/

.subtotal{

font-size:24px;

font-weight:700;

margin-bottom:15px;

}

.remove-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    margin-top:15px;

    color:#d64045;
    font-size:14px;
    font-weight:600;

    text-decoration:none;
    transition:all .3s ease;
}

.remove-item:hover{
    color:#b91c1c;
    transform:translateY(-2px);
}

.remove-item i{
    font-size:13px;
}





/*========================

ORDER SUMMARY

========================*/

.order-summary-card{

background:#fff;

border-radius:20px;

padding:30px;

border:1px solid #ececec;

box-shadow:0 15px 40px rgba(0,0,0,.05);

position:sticky;

top:120px;

}

.summary-title{

font-size:28px;

font-weight:700;

margin-bottom:30px;

}

.summary-row{

display:flex;

justify-content:space-between;

align-items:center;

padding:16px 0;

border-bottom:1px solid #f1f1f1;

font-size:16px;

}

.summary-row strong{

font-size:18px;

}

.total-row{

font-size:20px;

font-weight:700;

border:none;

padding-top:25px;

margin-bottom:20px;

}

.total-row strong{

font-size:28px;

color:#8AA08B;

}

.secure-checkout{

background:#edf3ee;

padding:14px;

border-radius:12px;

text-align:center;

color:#56745d;

font-weight:600;

margin:20px 0;

}

.secure-checkout i{

margin-right:8px;

}

.payment-icons{

text-align:center;

margin:25px 0;

}

.payment-icons img{

  max-width:220px;

  width:100%;

}

.checkout-btn{

    width:100%;

    padding:18px;

    background:#8AA08B;

    color:#fff;

    border:none;
    outline:none;
    appearance:none;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border-radius:50px;

    font-size:18px;
    font-weight:600;

    cursor:pointer;

    margin-bottom:15px;

    transition:.3s;

}

.checkout-btn:hover{

    background:#6d896f;

    color:#fff;

    transform:translateY(-2px);

}

.checkout-btn:disabled{

    background:#d4d4d4;

    color:#777;

    cursor:not-allowed;

    transform:none;

    opacity:.8;

}

.checkout-btn i{

    font-size:18px;

}

.shopping-btn{

display:block;

width:100%;

padding:16px;

border:1px solid #ddd;

border-radius:50px;

text-align:center;

font-weight:600;

color:#333;

text-decoration:none;

transition:.3s;

}

.shopping-btn:hover{

background:#f8f8f8;

text-decoration:none;

color:#222;

}

.shopping-benefits{

margin-top:30px;

padding-top:25px;

border-top:1px solid #ececec;

}

.shopping-benefits div{

display:flex;

align-items:center;

margin-bottom:15px;

font-size:15px;

color:#666;

}

.shopping-benefits i{

width:30px;

font-size:18px;

color:#8AA08B;

}
