/* =====================================================
   Toast Notification
   ===================================================== */

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--text-strong);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast__icon {
    color: #22c55e;
}

.toast--error .toast__icon {
    color: #ef4444;
}