.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;
}

.login-tip-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    display: none;
    background: rgba(15, 15, 15, .44);
}

.login-tip-backdrop.is-open { display: block; }

.login-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2147483646;
    display: none;
    width: min(calc(100% - 36px), 380px);
    overflow: hidden;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    background: #fff;
    color: #292326;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 400;
    aspect-ratio: auto;
    align-items: stretch;
    justify-content: initial;
}

.login-tip.is-open { display: flex; flex-direction: column; }
.login-tip-content,
.login-tip-text { display: flex; width: 100%; height: auto; align-items: center; justify-content: center; min-height: 64px; border-bottom: 1px solid rgba(0,0,0,.1); }
.login-tip-content { min-height: 58px; font-weight: 500; }
.login-tip-text { font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; }
.login-tip-confirmation { display: grid; width: 100%; height: auto; grid-template-columns: 1fr 1fr; min-height: 58px; }
.login-tip-confirmation button,
.login-tip-confirmation a { display: flex; align-items: center; justify-content: center; border: 0; background: #fff; color: #414141; font: inherit; text-decoration: none; cursor: pointer; }
.login-tip-confirmation > :first-child { border-right: 1px solid rgba(0,0,0,.1); }
.login-tip-confirmation .login-tip-confirm { color: #111; }
.login-tip-confirmation button:hover,
.login-tip-confirmation a:hover { background: #f2f2f2; }

.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);
}
