.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.72;
  text-decoration: none;
}

.lang-switcher__btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switcher__btn.is-active {
  opacity: 1;
  border-color: #137ED9;
}

.lang-switcher__flag {
  display: block;
  width: 28px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.top-nav-collapse .lang-switcher__btn.is-active {
  border-color: #137ED9;
}

@media (max-width: 991px) {
  .navbar-actions {
    width: 100%;
    justify-content: flex-end;
    padding: 12px 0 0;
  }
}
