/* Wishlist Button */
.flu-wishlist-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem; /* Adjust as needed */
    color: #ccc;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 5px;
    line-height: 1;
}

.flu-wishlist-btn.active {
    color: #e74c3c; /* Red heart */
}

.flu-wishlist-btn:hover {
    color: #c0392b;
    transform: scale(1.1);
}

.flu-wishlist-btn.loading {
    opacity: 0.5;
    pointer-events: none;
    cursor: wait;
}

/* My Account Grid */
.woocommerce-account .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
