/* ============================================
   WISHLIST HEART ICONS
   ============================================ */

.btn-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #E74C3C;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-wishlist:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-wishlist.in-wishlist {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
}

.btn-wishlist.in-wishlist:hover {
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
}

.btn-wishlist i {
    transition: all 0.3s ease;
}

/* Wishlist Toast Notifications */
.wishlist-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.wishlist-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-toast.success {
    border-left: 4px solid #27AE60;
}

.wishlist-toast.error {
    border-left: 4px solid #E74C3C;
}

/* RTL Support */
[dir="rtl"] .btn-wishlist {
    right: auto;
    left: 1rem;
}

[dir="rtl"] .wishlist-toast {
    right: auto;
    left: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wishlist-toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    [dir="rtl"] .wishlist-toast {
        left: 1rem;
        right: 1rem;
    }
}
