.delivery-location{
    font-size:14px;
    margin-bottom:10px;
}

.cart-title{
    font-size:28px;
    font-weight:600;
}

.cart-count{
    color:#777;
    font-size:24px;
}

/* Cart Card */
.cart-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
}

.product-img{
    width:100px;
    height:100px;
    object-fit:contain;
}

.product-title{
    font-size:16px;
    font-weight:500;
    line-height:1.4;
}

.qty-select{
    width:110px;
    border-radius:30px;
    height:48px;
}

.product-price{
    font-size:18px;
    font-weight:700;
}

.mrp{
    text-decoration:line-through;
    color:#777;
    font-size:14px;
}

.discount-badge{
    background:#e30613;
    color:#fff;
    border-radius:20px;
    font-size:12px;
    padding:4px 10px;
}

.action-link{
    color:#000;
    font-size:14px;
}

.delivery-box{
    background:#fafafa;
}

/* Summary */

.summary-card{
    background:#fff;
    border:1px solid #ddd;
}

.summary-card h5{
    font-weight:700;
}

.free-badge{
    background:#3ab54a;
    color:#fff;
    border-radius:15px;
    padding:2px 8px;
    font-size:12px;
}

.save-box{
    background:#eaf7ee;
    color:#2c8c3f;
    font-weight:600;
    padding:12px;
}

.checkout-btn{
    height:55px;
    border-radius:35px;
    font-weight:600;
}

/* Mobile */

.mobile-checkout{
    display:none;
}

@media(max-width:991px){

    body{
        padding-bottom:70px;
    }

    .cart-title{
        font-size:24px;
    }

    .cart-count{
        font-size:18px;
    }

    .product-img{
        width:55px;
        height:55px;
    }

    .product-title{
        font-size:14px;
    }

    .qty-select{
        width:95px;
        height:42px;
        margin-top:10px;
    }

    .product-price{
        font-size:22px;
    }

    .desktop-summary{
        display:none;
    }

    .mobile-checkout{
        display:block;
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        background:#fff;
        padding:10px;
        border-top:1px solid #ddd;
        z-index:999;
    }
}