/* Bouton wishlist sur le slider (top-right corner) */
.tg-slider-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tg-slider-wishlist-btn svg {
    color: #333;
    transition: all 0.2s ease;
}

.tg-slider-wishlist-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.tg-slider-wishlist-btn.active {
    background: #ff4757;
}

.tg-slider-wishlist-btn.active svg {
    color: #fff;
    fill: #fff;
}

@media (max-width: 767px) {
    .tg-slider-wishlist-btn {
        width: 38px;
        height: 38px;
        top: 12px;
        right: 12px;
    }

    .tg-slider-wishlist-btn svg {
        width: 16px;
        height: 16px;
    }
}