.mb-toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.mb-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #FFF6EC;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 88vw;
}
.mb-toast--visible { opacity: 1; transform: translateY(0); }

.mb-toast--success { background: linear-gradient(135deg, #A9714E, #8B5A3C); }
.mb-toast--error { background: var(--mb-error); }
.mb-toast svg { flex-shrink: 0; }
