.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.lang-switcher button {
  background: none;
  border: 2px solid #333;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  transition: all 0.2s ease;
  line-height: 1.2;
}
.lang-switcher button:hover {
  background: #333;
  color: #fff;
}
.lang-switcher button.active {
  background: #f04e31;
  border-color: #f04e31;
  color: #fff;
}
.lang-switcher-divider {
  color: #999;
  font-weight: 400;
  user-select: none;
}
