/* Toast Notifications for Wishlist */
.wishlist-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    max-width: 300px;
}

.wishlist-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.wishlist-toast-success {
    background-color: #10b981;
    color: white;
}

.wishlist-toast-error {
    background-color: #ef4444;
    color: white;
}

.wishlist-toast-info {
    background-color: #3b82f6;
    color: white;
}

/* Wishlist button states */
.wishlist-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-toggle:disabled {
    cursor: not-allowed;
}

.wishlist-toggle svg {
    transition: all 0.3s ease;
}