.wise-eat-toast-host {
  position: fixed;
  z-index: 10050;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: min(24rem, calc(100vw - 2rem));
  pointer-events: none;
}

.wise-eat-toast {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(44, 36, 22, 0.18);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #fffbf5;
  background: #392800;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.wise-eat-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wise-eat-toast--success {
  background: #2d5016;
}

.wise-eat-toast--error {
  background: #7a1f1f;
}

.wise-eat-toast--info {
  background: #392800;
}

@media (prefers-reduced-motion: reduce) {
  .wise-eat-toast {
    transition: none;
  }
}
