/* Heli IQ — language switcher styling (shared across pages). */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.10);
}
.lang-switch .lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 999px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #777;
  transition: background 0.15s, color 0.15s;
}
.lang-switch .lang-btn:hover { color: #1a1a1a; }
.lang-switch .lang-btn.active {
  background: #e8580a;
  color: #fff;
  box-shadow: 0 1px 3px rgba(232, 88, 10, 0.35);
}
.lang-switch .lang-btn:focus-visible {
  outline: 2px solid #e8580a;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .lang-switch { gap: 0; padding: 2px; }
  .lang-switch .lang-btn { padding: 4px 6px; font-size: 11px; }
}

/* Hide the switcher inside the preview iframe of the landing page. */
html.preview .lang-switch { display: none !important; }
