.lang-switcher {
  position: relative;
  z-index: 1000;
}

.lang-menu {
  list-style: none;
  margin: 0 0 6px;
  padding: 6px 0;
  background: #303030;
  border-radius: 12px;
  min-width: 72px;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.lang-switcher.open .lang-menu {
  display: block;
}

.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

.lang-menu button:hover {
  background: #262626;
}

.lang-menu img,
.lang-current img {
  width: 34px;
  height: 24px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.lang-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  min-width: 78px;
  background: #303030;
  border: none;
  border-radius: 20px;
  padding: 4px 12px 4px 8px;
  cursor: pointer;
  overflow: hidden;
}

.lang-current:hover {
  background: #262626;
}

.lang-caret {
  color: #707070;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}
