@charset "UTF-8";

.wishlist-card {
    position: relative;
}

.wishlist-card > a:first-child {
    display: block;
    position: relative;
}

.wishlist-card > .wishlist-toggle {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    top: auto;
    z-index: 3;
}

.wishlist-card > a:first-child > .wishlist-toggle {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    z-index: 4;
}

.wishlist-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--grayscale-200);
    border-radius: 50%;
    background: var(--grayscale-white);
}

.wishlist-toggle:hover:not(:disabled),
.wishlist-toggle.active {
    border-color: var(--primary-400);
}

.wishlist-toggle.active {
    background: var(--primary-50);
}

.wishlist-toggle:focus-visible {
    outline: 2px solid var(--primary-600);
    outline-offset: 2px;
}

.wishlist-toggle:disabled {
    cursor: wait;
    opacity: 0.6;
}

.wishlist-toggle__icon,
.wishlist-toggle img {
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}
