/* Floating WhatsApp + poll/form helpers (shared across themes) */
.seo-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.seo-wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  color: #fff;
}
.seo-wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.seo-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
[class*="-poll__option"].is-selected {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
[class*="-poll__option"] {
  cursor: pointer;
}
[class*="-poll__status"],
[class*="-form__status"] {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .seo-wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}
