/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: white;
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100vw - 40px);
}
.toast.show { transform: translateX(-50%) translateY(0) }
.toast-success { background: var(--green) }
.toast-error   { background: var(--red) }
.toast-info    { background: var(--maroon); color: rgb(var(--maroon-fg-rgb)) }
.toast-warning { background: var(--gold); color: var(--maroon-d) }
.toast-icon    { font-size: 16px; font-weight: 900 }
