.cart-section {
    background: linear-gradient(135deg, #fff 0%, #fdf1f5 100%);
    animation: fadeIn 0.8s ease;
}

.cart-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 15px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.cart-item-img {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: #f7f7f7;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 16px;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 500;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #e74c3c;
    font-size: 18px;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #c0392b;
}

.cart-summary {
    background: #fff;
    border-radius: 12px;
    animation: slideInUp 0.6s ease;
}

.checkout-btn {
    background: linear-gradient(45deg, #ff7a9e, #ff4081);
    border: none;
    color: #fff;
    font-weight: 600;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: linear-gradient(45deg, #ff4081, #ff7a9e);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-img {
        width: 100%;
        height: 200px;
        margin-bottom: 10px;
    }

    .cart-summary {
        margin-top: 30px;
    }
}