/* ══════════════════════════════════════════
   NOTICE / TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--dark); color: #fff; padding: 12px 20px;
  border-radius: var(--radius); font-size: 13px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all .4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
