.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(21, 21, 21, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #151515;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.wishlist-btn:hover,
.wishlist-btn.is-active {
    background: #151515;
    color: #fff;
}

.wishlist-btn.is-active i {
    font-weight: 900;
}

.wishlist-auth {
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.wishlist-auth.is-open {
    display: flex;
}

.wishlist-auth__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, .44);
}

.wishlist-auth__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 380px);
    background: #fff;
    border: 1px solid #ded8ce;
    padding: 22px;
}

.wishlist-auth__panel h2 {
    margin: 0 0 8px;
    color: #151515;
    font-size: 22px;
    font-weight: 560;
    line-height: 1.1;
}

.wishlist-auth__panel p {
    margin: 0;
    color: #6e6a63;
    font-size: 14px;
    line-height: 1.6;
}

.wishlist-auth__actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.wishlist-auth__actions a,
.wishlist-auth__actions button {
    min-height: 40px;
    border: 1px solid #151515;
    background: #fff;
    color: #151515;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
}

.wishlist-auth__actions a {
    background: #151515;
    color: #fff;
}

.wishlist-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 2147483647;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    pointer-events: none;
    background: rgba(20, 20, 20, .96);
    color: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 12px;
    transition: opacity .2s ease, transform .2s ease;
}

.wishlist-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
