﻿.wishlist-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

    .wishlist-btn svg {
        width: 21px;
        height: 21px;
        fill: transparent;
        stroke: currentColor;
        stroke-width: 2;
        transition: fill 180ms ease;
    }

    .wishlist-btn:hover {
        transform: scale(1.08);
    }

    .wishlist-btn.active {
        color: #ef2d56;
    }

        .wishlist-btn.active svg {
            fill: currentColor;
        }

    .wishlist-btn:disabled {
        cursor: wait;
        opacity: 0.65;
    }

.product-card.removing {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 250ms ease, transform 250ms ease;
}
