.lang-switcher {
  position: relative;
  display: inline-flex;
}
.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.lang-switcher__toggle:hover {
  border-color: rgba(212, 169, 76, 0.5);
  background: rgba(255,255,255,0.1);
}
.lang-switcher__icon {
  opacity: 0.7;
}
.lang-switcher__chevron {
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.lang-switcher[data-open] .lang-switcher__chevron {
  transform: rotate(180deg);
}
.lang-switcher__menu {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: rgba(22, 15, 20, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 169, 76, 0.25);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
}
.lang-switcher[data-open] .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher__form {
  display: contents;
}
.lang-switcher__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 7px 12px;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: rgba(245, 227, 209, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.03em;
}
.lang-switcher__option:hover {
  background: rgba(212, 169, 76, 0.15);
  color: #f5e3d1;
}
.lang-switcher__option--active {
  color: #d4a94c;
  font-weight: 700;
}
.lang-switcher__option--active:hover {
  color: #d4a94c;
}
.lang-switcher__option svg {
  color: #d4a94c;
}
