.wishlist-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    padding: 12px 20px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.wishlist-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.wishlist-toast--success {
    background-color: #2fb344;
}
.wishlist-toast--error {
    background-color: #d9534f;
}
.product-add-action ul li a.add-to-wishlist-product.in-wishlist i {
    background-color: #abd373;
    color: #ffffff;
}
.single-product-content .quantity-with-btn li a.custom-circle-btn.add-to-wishlist-product.in-wishlist i {
    background-color: #abd373;
    color: #ffffff;
}
.wishlist-nav-link {
    position: relative;
    display: inline-block;
}
.wishlist-quantity {
    display: inline-block;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    background-color: #d9534f;
    color: #ffffff;
    font-size: 11px;
    text-align: center;
    position: absolute;
    top: -8px;
    right: -10px;
}
