/* UX Wishlist Styles */

/* Wishlist Button */
.ux-btn-wishlist {
    position: relative;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ux-btn-wishlist .wishlist-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.ux-btn-wishlist:hover .wishlist-icon {
    transform: scale(1.2);
}

.ux-btn-wishlist.active {
   
}

.ux-btn-wishlist.active .wishlist-icon {
    color: #fff;
}

.ux-btn-wishlist:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Notification - Dark Style */
.ux-wishlist-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    min-width: 200px;
}

.ux-wishlist-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.ux-wishlist-notification.success {
    border-left: 3px solid #10b981;
}

.ux-wishlist-notification.success::before {
    content: "✓";
    display: inline-block;
    margin-right: 8px;
    color: #10b981;
    font-weight: 600;
}

.ux-wishlist-notification.error {
    border-left: 3px solid #ef4444;
}

.ux-wishlist-notification.error::before {
    content: "✕";
    display: inline-block;
    margin-right: 8px;
    color: #ef4444;
    font-weight: 600;
}

/* Wishlist Page */
.ux-wishlist-container {
    padding: 20px 0;
}

.ux-wishlist-empty {
    text-align: center;
    padding: 40px 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ux-wishlist-notification {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    
    .ux-btn-wishlist {
        
    }
}