/* ===================================================================
   WOW ICON MENU — floating popup with square action buttons
   =================================================================== */

.wow-icon-menu-popover {
  position: absolute;
  top: -9999px;
  left: -9999px;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.wow-icon-menu-popover--visible {
  opacity: 1;
  pointer-events: auto;
}

.wow-icon-menu-popover__action {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.wow-icon-menu-popover__action svg {
  width: 20px;
  height: 20px;
}

.wow-icon-menu-popover__action:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}
