.header-inner .top-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-inner .top-menu form {
  display: inline-flex;
  align-items: center;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d0c9c2;
  border-radius: 999px;
  background: #fff;
  line-height: 1;
}

.language-switch a {
  display: block;
  min-width: 34px;
  padding: 6px 9px;
  color: #706356;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.language-switch a + a {
  border-left: 1px solid #d0c9c2;
}

.language-switch a.active {
  background: #e5411a;
  color: #fff;
}

.language-switch a:not(.active):hover {
  background: #ffebe8;
  color: #e5411a;
}

@media screen and (max-width: 767px) {
  .header-inner .top-menu {
    gap: 6px;
  }

  .language-switch a {
    min-width: 30px;
    padding: 5px 7px;
    font-size: 11px;
  }
}
