/* Language switcher */
.lang-switch {
  display: inline-flex !important;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 999px;
  flex-shrink: 0;
  z-index: 5;
}
.lang-switch__btn {
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.lang-switch--header {
  background: #eef3f9;
  border: 1px solid #cfd8e3;
  margin-right: 4px;
}
.lang-switch--header .lang-switch__btn {
  color: #5a6573;
}
.lang-switch--header .lang-switch__btn:hover {
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.7);
}
.lang-switch--header .lang-switch__btn.is-active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 86, 179, 0.35);
}
.lang-switch--nav {
  align-self: center;
  margin: 0 10px 0 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.lang-switch--nav .lang-switch__btn {
  min-width: 34px;
  height: 28px;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.72);
}
.lang-switch--nav .lang-switch__btn:hover { color: #fff; }
.lang-switch--nav .lang-switch__btn.is-active {
  background: var(--color-primary);
  color: #fff;
}
.lang-switch--mobile {
  display: none !important;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.lang-switch--mobile .lang-switch__btn {
  min-width: 36px;
  height: 32px;
  color: rgba(255, 255, 255, 0.78);
}
.lang-switch--mobile .lang-switch__btn.is-active {
  background: var(--color-primary);
  color: #fff;
}
.lang-switch--menu {
  width: 100%;
  padding: 4px;
  background: #f3f6fa;
  border: 1px solid var(--border-color);
}
.lang-switch--menu .lang-switch__btn {
  flex: 1;
  min-height: 46px;
  height: auto;
  font-size: 0.875rem;
  color: #5a6573;
}
.lang-switch--menu .lang-switch__btn.is-active {
  background: var(--color-primary);
  color: #fff;
}
.google-translate-hidden,
.goog-te-banner-frame,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-gadget {
  display: none !important;
}
body { top: 0 !important; }
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
.mobile-menu__lang {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.mobile-menu__lang-label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 0.625rem;
}

@media (max-width: 768px) {
  .lang-switch--header { display: none !important; }
}
