/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

[dir="rtl"] .toast-container {
    left: auto;
    right: 20px;
}

.toast-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 400px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
}

.toast-success .toast-icon {
    background: #10b981;
    color: #fff;
}

.toast-error .toast-icon {
    background: #ef4444;
    color: #fff;
}

.toast-info .toast-icon {
    background: #3b82f6;
    color: #fff;
}

.toast-message {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Loading state for action buttons */
.action__btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.action__btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Heart filled state */
.fi-rs-heart-filled {
    color: #ef4444;
}
