.toast-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: var(--z-toast);
  pointer-events: none;
}

.toast {
  min-width: 260px;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: start;
  pointer-events: auto;
  animation: toast-in 220ms var(--ease);
}
@keyframes toast-in {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.toast--success .toast-icon { color: var(--success); }
.toast--error   .toast-icon { color: var(--danger); }
.toast--info    .toast-icon { color: var(--info); }
.toast--warning .toast-icon { color: var(--warning); }

.toast-title { font-weight: 600; font-size: 14px; }
.toast-msg   { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.toast-close {
  background: transparent; border: none; cursor: pointer;
  color: var(--text-subtle); font-size: 18px; line-height: 1;
}
.toast-close:hover { color: var(--text); }
