#wp-toast-container {
  position: fixed;
  bottom: 10%;
  left: 4%;
  z-index: 999999; /* higher than Elementor popup z-index */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wp-toast {
  min-width: 250px;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  background: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 14px;
  cursor: default;
}

.wp-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.wp-toast-success { background: #28a745; }
.wp-toast-error   { background: #dc3545; }
.wp-toast-info    { background: #E2680D; }
.wp-toast-warning { background: #ffc107; color: #333; }