/*==================================
            CART PAGE
==================================*/

.cart-section{
    background:#fffaf7;
    padding:50px 0;
}

.cart-title{
    margin-bottom:35px;
}

.cart-title h2{
    font-size:38px;
    font-weight:500;
    color:#1b1b1b;
    margin-bottom:8px;
}

.cart-title p{
    color:#777;
    margin:0;
}


/*==================================
            CART TABLE
==================================*/

.cart-table{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    border:1px solid #f2dfd3;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cart-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:15px;
    border-bottom:1px solid #f3ece7;
    transition:.35s;
}

.cart-item:last-child{
    border-bottom:none;
}

.cart-item:hover{
    background:#fff7f2;
}

.cart-image{
    width:120px;
    flex:0 0 120px;
}

.cart-image img{
    width:100%;
    height:90px;
    object-fit:contain;
}
.cart-content{
    flex:1 1 auto;
    min-width:220px;
}

.cart-content h4{
    font-size:22px;
    line-height:1.3;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.cart-content .category{
    display:inline-block;
    color:#eb6b2d;
    font-size:14px;
    font-weight:500;
    margin-bottom:8px;
}

.cart-content p{
    margin:0;
    color:#777;
    font-size:14px;
}

.cart-price{
    width:90px;
    text-align:center;
}

.cart-price .price{
    color:#777;
    font-size:16px;
    font-weight:500;
}

.cart-total{
    font-size:17px;
    font-weight:600;
    color:#111;
}


/*==================================
            QUANTITY
==================================*/

.cart-qty{
    display:flex;
    align-items:center;
    border:1px solid #ececec;
    border-radius:8px;
    overflow:hidden;
    width:110px;
    justify-content:space-between;
}

.cart-qty button{
    width:38px;
    height:38px;
    border:none;
    background:#f8f8f8;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.cart-qty button:hover{
    background:#eb6b2d;
    color:#fff;
}

.cart-qty input{
    width:34px;
    text-align:center;
    border:none;
    color: #F39F5F;
    background:#fff;
    font-weight:600;
}




/*==================================
            REMOVE
==================================*/

.cart-remove{
    width:45px;
    text-align:right;
}

.cart-remove a{
    color:#d11a2a;
    font-size:18px;
    transition:.3s;
}

.cart-remove a:hover{
    color:#000;
}


/*==================================
            COUPON
==================================*/

.coupon-box{
    margin-top:20px;
    display:flex;
    gap:15px;
}

.coupon-box input{
    flex:1;
    height:55px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 18px;
    outline:none;
}

.coupon-box input:focus{
    border-color:#eb6b2d;
}

.coupon-box .theme-btn{
    border:none;
    padding:0 28px;
    border-radius:10px;
    background:#eb6b2d;
    color:#fff;
    font-size: 16px;
    font-weight:500;
    transition:.35s;
}

.coupon-box .theme-btn:hover{
    background:#111;
}


/*==================================
        ORDER SUMMARY
==================================*/

.cart-summary{
    background:#fff;
    border:1px solid #f2dfd3;
    border-radius:15px;
    padding:20px;
    position:sticky;
    top:120px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.cart-summary h3{
    font-size:24px;
    margin-bottom:25px;
    font-weight:500;
}

.cart-summary ul{
    margin:0;
    padding:0;
    list-style:none;
}

.cart-summary ul li{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    color:#555;
}

.cart-summary ul li strong{
    color:#111;
}

.cart-summary .grand-total{
    border-top:1px solid #eee;
    padding-top:20px;
    margin-top:20px;
    font-size:22px;
    font-weight:500;
}


/*==================================
            BUTTONS
==================================*/

.checkout-btn,
.continue-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    height:55px;
    line-height:55px;
    border-radius:10px;
    font-weight:500;
    transition:.35s;
}

.checkout-btn{
    margin-top:30px;
    background:#eb6b2d;
    color:#fff;
}

.checkout-btn:hover{
    background:#111;
    color:#fff;
}

.continue-btn{
    margin-top:15px;
    border:2px solid #eb6b2d;
    color:#eb6b2d;
}

.continue-btn:hover{
    background:#eb6b2d;
    color:#fff;
}


/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px){

.cart-item{
    flex-wrap:wrap;
}

.cart-image{
    width:90px;
    flex:0 0 90px;
}

.cart-content{
    width:calc(100% - 110px);
}

.cart-price,
.cart-total,
.cart-remove{
    width:auto;
}

.cart-summary{
    margin-top:35px;
    position:relative;
    top:0;
}

}

@media(max-width:767px){

    .cart-item{
        flex-direction:column;
        text-align:center;
    }

    .cart-content{
        width:100%;
    }

    .cart-qty{
        margin:10px auto;
    }

    .coupon-box{
        flex-direction:column;
    }

    .coupon-box .theme-btn{
        width:100%;
        height:55px;
    }

}