.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-toast, 9999);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.875rem;
  max-width: min(90vw, 360px);
  animation: slideInRight 0.3s ease-out;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow-card);
}

.toast.success {
  background: #22c55e;
}
.toast.error {
  background: #ef4444;
}
.toast.warning {
  background: #f59e0b;
}
.toast.info {
  background: var(--color-primary);
}

@media (prefers-reduced-motion: reduce) {
  .toast {
    animation: none;
  }
}
