/* ── Notification toasts (U-03) ── */
/* TODO(Atelier): 通知トーストの色設計確定待ち。
   現状は既存トークン + 暫定値で実装。ブランドパレット確定後に再調整 */

.notify-toast {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  max-width: 480px;
  width: calc(100vw - 32px);
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.25s var(--ease-snow), opacity 0.25s var(--ease-snow);
}

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

.notify-toast--status {
  background: var(--crevasse);
  color: var(--fg-inverse);
}

.notify-toast--success {
  background: var(--fn-safe);
  color: var(--fg-inverse);
}

.notify-toast--alert {
  background: #c62828;
  color: #ffffff;
  pointer-events: auto;
  cursor: pointer;
}
