.wishlist-btn {
    margin-bottom: 20px;
    display: inline-block;
    padding: 5px;
}

.favorite {
    font-size: 1.3rem;
    color: #dc3545;
    transition: color 0.3s ease;
}

.favorite:hover {
    color: #c82333;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.quantity-btn {
    background-color: var(--primary-color, #0d6efd);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.quantity-btn:hover {
    background-color: #0b5ed7;
    transform: scale(1.1);
}

.quantity-btn.delete-btn {
    background-color: #dc3545;
}

.quantity-btn.delete-btn:hover {
    background-color: #c82333;
}

.quantity-value {
    font-size: 0.9rem;
    width: 40px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 3px;
}

.quantity-control .hidden {
    display: none;
}