.faq-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #fff;
  color: #333;
  padding: 34px 68px;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.faq-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.faq-toast span {
  font-size: 20px;
}
.faq-toast .toast-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
