.wishlist-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    width: 314px;
    background: rgba(240, 240, 239, 1);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    font-family: sans-serif;
    max-width: 100%;
}

.wishlist-notification.active {
    right: 0;
}

.wish-content {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

.wish-img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    background: #fff;
}

.wish-text {
    flex: 1;
}

.wish-status {
    display: block;
    font-size: 12px;
    color: #2E495B;
    font-family: var(--font-ui);
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.5;
}

.wish-title {
    font-size: 12px;
    font-family: var(--font-ui);
    color: #2E495B;
    font-weight: 400;
    margin-bottom: 2px;
    line-height: 1.5;
}

.wish-meta {
    font-size: 12px;
    color: rgba(147, 150, 169, 1);
    text-transform: lowercase;
    font-weight: 400;
}

.wish-close {
    position: absolute;
    top: -8px;
    right: 0px;
    font-size: 24px;
    cursor: pointer;
    color: #4a5e6a;
    line-height: 1;
    font-weight: 400;
}

.wish-close:hover {
    color: #000;
}

.wishlist-notification.is-error {
    border-left: 5px solid #e74c3c;
}

.wishlist-notification.is-error .wish-status {
    color: #e74c3c;
    font-weight: bold;
}

.wishlist-notification.is-error .wish-title {
    color: #333;
}

.wishlist-notification.is-error .wish-text {
    padding-left: 5px;
}