.lang-switcher {
  position: relative;
}

.lang-button {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555555;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 18px 0;
  transition: color 0.2s ease;
}

.lang-button:hover {
  color: #000000;
}

.lang-button::after {
  content: "";
  border: solid #555555;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  margin-bottom: 3px;
  transition: border-color 0.2s ease;
}

.lang-button:hover::after {
  border-color: #000000;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  min-width: 120px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 6px 0;
  z-index: 100;
  margin-top: -5px;
}

.lang-switcher:hover .lang-dropdown {
  display: block;
}

.lang-item {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #007bc1;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.lang-item:hover {
  background-color: #f5f5f5;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  display: block;
}

.lang-item.active {
  color: #000000;
  pointer-events: none;
}