/* ═══ TOAST ═══ */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 80px);
  background: var(--ink); color: #fff;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 18px 44px rgba(28,49,69,.4);
  opacity: 0;
  transition: transform .45s var(--ease-out), opacity .45s;
  z-index: 90;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* uçan filiz — aklımdasın */
.fly-sapling {
  position: fixed;
  width: 22px; height: 22px;
  z-index: 95;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.3, -.2, .2, 1), opacity 1s;
}
