/* Language switcher — minimal text toggle (IL / EN) */

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0 0.35rem;
  user-select: none;
  pointer-events: none;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: auto;
  padding: 0.2rem 0.15rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lang-btn.active {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #e53935;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* Legal pages — light header */
.legal-page .lang-sep {
  color: rgba(0, 0, 0, 0.25);
}

.legal-page .lang-btn {
  color: rgba(0, 0, 0, 0.4);
}

.legal-page .lang-btn:hover {
  color: rgba(0, 0, 0, 0.75);
}

.legal-page .lang-btn.active {
  color: #111;
}

.legal-page .lang-btn:focus-visible {
  outline-color: rgba(229, 57, 53, 0.55);
}

.lang-switch-mobile {
  margin-top: 1.25rem;
  align-self: center;
}

.mobile-nav .lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

.mobile-nav .lang-btn {
  font-size: 0.75rem;
  padding: 0.35rem 0.2rem;
}

.mobile-nav .lang-btn.active {
  color: #fff;
}

.legal-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
