.cart-item{
    transition:0.3s;
}

.cart-item:hover{
    background:#fafafa;
}

.cart-qty{
    text-align:center;
}

.sticky-top{
    top:20px;
}

.card{
    border-radius:12px;
}

.cart-summary{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.summary-row{
display:flex;
justify-content:space-between;
margin-bottom:12px;
}

.total-row{
font-size:18px;
}

.saving-box{
background:#fff8e1;
border:1px solid #ffe082;
padding:15px;
border-radius:12px;
}

.delivery-box{
background:#f4fff4;
border:1px solid #d4edda;
padding:15px;
border-radius:12px;
}

.coupon-box{
background:#fafafa;
padding:15px;
border-radius:12px;
}

.cart-item img{
height:100px;
object-fit:cover;
}


.btn-success{
    background:#2E7D32;
    border-color:#2E7D32;
}

.cart-icon-modern,
.wishlist-icon-modern{
    position:relative;
    font-size:24px;
    color:#222;
    background:transparent;
    width:auto;
    height:auto;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.cart-icon-modern:hover,
.wishlist-icon-modern:hover{
    color:#2E7D32;
}

.modern-badge{
    position:absolute;
    top:-10px;
    right:-12px;

    min-width:24px;
    height:24px;

    background:#fff;
    color:#111;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    font-weight:700;

    box-shadow:0 2px 10px rgba(0,0,0,.15);

    border:2px solid #fff;
}

.cart-icon-modern i,
.wishlist-icon-modern i{
    font-size:28px;
}