/* CDO Global — переключатель языка (общий стиль) */
.cdo-lang-switch,
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.cdo-lang-switch button,
.lang-pill button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}
.cdo-lang-switch button:hover,
.lang-pill button:hover {
  background: rgba(116, 212, 20, 0.12);
  color: #74D414;
}
.cdo-lang-switch button.active,
.lang-pill button.active {
  background: #74D414;
  color: #0B0F0C;
}
.cdo-lang-switch button:focus-visible,
.lang-pill button:focus-visible {
  outline: 2px solid #74D414;
  outline-offset: 2px;
}

/* Шапка: тёмный фон сайта — кнопка должна быть видна */
header.site-header .cdo-lang-switch {
  margin-left: 16px;
  margin-right: 8px;
  border-color: rgba(15, 23, 30, 0.12);
  background: rgba(15, 23, 30, 0.04);
  color: #0B0F0C;
}
header.site-header .cdo-lang-switch button:hover {
  background: rgba(116, 212, 20, 0.18);
}

/* Мобайл */
@media (max-width: 900px) {
  header.site-header .cdo-lang-switch { display: none; }
  .mobile-menu .cdo-lang-switch { display: inline-flex; margin: 12px 0; }
}

/* Подсказка предпочитаемого языка */
:root[data-i18n-suggest="en"] .cdo-lang-switch button[data-lang="en"],
:root[data-i18n-suggest="hi"] .cdo-lang-switch button[data-lang="hi"] {
  box-shadow: 0 0 0 2px rgba(116, 212, 20, 0.55);
}
