/* ================================================================
   TOAST NOTIFICATION
   ================================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--deep);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 13px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 600;
  pointer-events: none;
  max-width: 360px;
  text-align: center;
  font-family: var(--ff-body);
}

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