/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.lang-link {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: rgba(155,154,151,1);
  text-decoration: none;
  transition: color 180ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.lang-link:hover {
  color: #D4A843;
  background: rgba(184,134,11,0.08);
}
.lang-link.lang-active {
  color: #D4A843;
  background: rgba(184,134,11,0.08);
  font-weight: 600;
}
/* Mobile lang switch */
.mobile-nav .lang-switch {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .lang-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
