.wm-toast-container {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.wm-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 10px;
  color: var(--cinza1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.wm-toast--info,
.wm-toast--error {
  background: var(--primaria5);
}

.wm-toast--success {
  background: var(--success);
}

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

.wm-toast__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.wm-toast__icon svg {
  width: 100%;
  height: 100%;
}

.wm-toast__message {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .wm-toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .wm-toast {
    min-width: 0;
    max-width: none;
    width: 100%;
  }
}
