.cart-section{
    background:#f8f8f8;
}

.cart-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.cart-product{
    display:flex;
    align-items:center;
    gap:15px;
}

.cart-product img{
    width:70px;
    border-radius:10px;
}

.qty-input{
    width:70px;
    height:45px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:10px;
}

.remove-btn{
    color:red;
    font-size:24px;
    text-decoration:none;
}

.cart-summary{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    position:sticky;
    top:120px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.total{
    font-size:20px;
}

@media(max-width:768px){

    .cart-card{
        overflow-x:auto;
        margin-bottom:25px;
    }

    .cart-summary{
        position:relative;
        top:auto;
    }

}

/* ==========================================
   CART PACK & QUANTITY
========================================== */

.cart-pack{

    margin-top:10px;

}

.qty-box{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

}

.qty-btn{

    width:38px;
    height:38px;

    border:none;

    background:#2E7D32;

    color:#fff;

    border-radius:8px;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.qty-btn:hover{

    background:#256428;

}

.qty-input{

    width:60px;

    text-align:center;

}

.cart-product h6{

    margin-bottom:5px;

    font-weight:600;

}

.cart-product small{

    display:block;

    color:#666;

    margin-bottom:8px;

}

/* ==========================================
   CART QUANTITY
========================================== */

.cart-qty{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
}

.cart-qty .qty-input{
	width:70px;
	text-align:center;
}

.cart-qty .qty-minus,
.cart-qty .qty-plus{
	width:36px;
	height:36px;
	padding:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
}