/* ── Plugin Wishlist - Styles ─────────────────────────── */

/* Bottone cuoricino sulle card prodotto (overlay) */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #6c757d;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    padding: 0;
    line-height: 1;
}

.wishlist-btn:hover {
    transform: scale(1.15);
    color: #e74c3c;
    background: #fff;
}

.wishlist-btn.active {
    color: #e74c3c;
}

.wishlist-btn.active:hover {
    color: #c0392b;
}

/* Bottone nella scheda prodotto (full-width) */
.wishlist-product-btn.active {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.wishlist-product-btn.active:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

/* Prodotto non disponibile nella wishlist */
.wishlist-item-unavailable > a {
    opacity: 0.5;
    pointer-events: auto;
}
.wishlist-item-unavailable .wishlist-btn {
    opacity: 1;
}
.wishlist-item-unavailable .mt-n2 {
    margin-top: -0.5rem !important;
}

/* Badge nella navbar */
.wishlist-badge {
    position: absolute;
    top: 0;
    right: -4px;
    font-size: 0.65rem;
    padding: 2px 5px;
}
