/* Section */
.cart-section {
    background: #f8fbff;
}

/* Card */
.cart-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.cart-card:hover {
    transform: translateY(-5px);
}

/* Image */
.cart-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Price */
.price {
    font-weight: 700;
    color: #0d6efd;
}

/* Qty */
.qty-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.qty-box button {
    width: 28px;
    height: 28px;
    border: none;
    background: #0d6efd;
    color: #fff;
    border-radius: 5px;
}

/* Remove */
.btn-remove {
    color: red;
    font-size: 14px;
    text-decoration: none;
}

.btn-remove:hover {
    text-decoration: underline;
}

/* Summary */
.cart-summary {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(45deg, #0d6efd, #00c853);
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    border: none;
}

.btn-gradient:hover {
    color: #fff;
    box-shadow: 0 0 15px rgba(0,200,83,0.6);
}

/* Responsive */
@media(max-width:768px){
    .cart-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

