.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 1000;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}


#wishlist-count {
    transition: all 0.3s ease;
}

#wishlist-count.count-updated {
    color: #c96;
    transform: scale(1.2);
    display: inline-block;
}

/* Make the <span>افزودن به لیست علاقه مندی</span> clickable area show pointer */
/* use for  <span>افزودن به لیست علاقه مندی</span> */
.btn-wishlist{
    cursor: pointer !important; /* !important ensures it overrides other styles */
}
