/* =============================================
   TOAST NOTIFICATION
   ============================================= */

.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    padding: 1rem 1.5rem;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: slideUp 0.3s ease both;
    max-width: min(22rem, calc(100vw - 2rem));
}

.toast.hidden { display: none; }

.toast.success { background: #3d6b4e; }
.toast.error { background: #8b2e2e; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

