.lang-switcher {
  position: relative;
  display: inline-flex;
}

.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 1.8rem 0.4rem 0.75rem;
  cursor: pointer;
}

.lang-switcher select:hover { border-color: var(--accent); color: var(--ink); }

.lang-switcher::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
