.mm-toast-effect {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  min-width: 320px;
  max-width: 80vw;
  padding: 18px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8e1ff 0%, #c1f7fa 50%, #ffe7e1 100%);
  color: #6a5d7b;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 2000;
  text-align: center;
}

.mm-toast-effect.show {
  opacity: 0.92;
}
