.cart-card{

    border-radius:18px;

    margin-bottom:20px;

    transition:.25s;

}

.cart-card:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.cart-summary{

    position:sticky;

    top:100px;

}

.cart-summary h4{

    font-weight:700;

}

.remove-cart-item{

    text-decoration:none;

}

.remove-cart-item:hover{

    color:#dc3545;

}

.cart-qty{

    text-align:center;

    font-weight:600;

}

@media(max-width:768px){

.cart-summary{

    position:static;

    margin-top:20px;

}

}
.qty-box{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

}

.qty-box button{

    width:38px;

    height:38px;

}

.qty-input{

    width:60px;

    text-align:center;

    border:1px solid #ddd;

    border-radius:6px;

    font-weight:600;

}