input[name="website"],
.hp-field {
  position: absolute !important;
  left: -999999px !important;
  top: -999999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
}

.sw-captcha-overlay {
  position: fixed !important;
  inset: 0 !important;                 
  display: none;                        
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0, 0, 0, 0.45) !important;
  z-index: 2147483647 !important;      
}

html.geomo-lock,
body.geomo-lock {
  overflow: hidden !important;
}

.sw-captcha-widget {
  box-sizing: border-box;
  max-width: 520px;
  width: calc(100% - 32px);
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.sw-captcha-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px 0;
  color: #222;
}

.sw-captcha-grid {
  display: grid;
  grid-template-columns: repeat(4, 60px);
  grid-auto-rows: 60px;
  gap: 12px;
  justify-content: center;
}

.sw-captcha-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  user-select: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
  background: #fafafa;
}

.sw-captcha-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sw-captcha-icon.selected {
  background: #e8f5e9;
  border-color: #b2d8b9;
}

.sw-captcha-icon.disabled {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 420px) {
  .sw-captcha-grid {
    grid-template-columns: repeat(4, 52px);
    grid-auto-rows: 52px;
    gap: 10px;
  }
  .sw-captcha-icon {
    font-size: 24px;
  }
}
