.hn-wishlist-btn {
    background: transparent !important;
    border: none !important;
    padding: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
}

.hn-heart-svg {
    width: 24px;
    height: 24px;
    fill: transparent; /* قلب در حالت پیش‌فرض توخالی است */
    stroke-width: 2px;
    transition: all 0.3s ease;
}

#hn-wishlist-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 999999;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

#hn-wishlist-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
