/* TheParsee landing — переключатель языка (иконка-переводчик + попап).
   Внешний файл (CSP style-src 'self' запрещает inline <style>).
   Пара к landing/js/lang-switch.js. Использует общие CSS-переменные лендинга. */
.lang-switch { position: relative; }
.lang-switch .lang-ico {
  width: 18px; height: 18px; display: block;
  color: var(--text-3, #8B8B93);
  transition: color .15s;
  pointer-events: none;
}
.lang-switch:hover .lang-ico,
.lang-switch.open .lang-ico { color: var(--accent, #7B4DFF); }
.lang-switch .lang-pop {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 158px; padding: 5px;
  display: none; flex-direction: column; gap: 2px; z-index: 1200;
  background: var(--bg-elev, #fff);
  border: 1px solid var(--border, rgba(0,0,0,.1));
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.lang-switch.open .lang-pop { display: flex; }
.lang-switch .lang-opt {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 7px; cursor: pointer;
  font-size: 13px; line-height: 1;
  color: var(--text-2, #3F3F46); white-space: nowrap;
}
.lang-switch .lang-opt:hover { background: var(--surface-hover, rgba(0,0,0,.05)); color: var(--text, #111); }
.lang-switch .lang-opt.active { color: var(--accent, #7B4DFF); font-weight: 600; }
.lang-switch .lang-opt img { width: 18px; height: 12px; border-radius: 2px; flex-shrink: 0; display: block; }
.lang-switch .lang-opt .chk { margin-left: auto; color: var(--accent, #7B4DFF); font-size: 9px; }
