.lang-toggle {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.lang-toggle__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-toggle__btn--active {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  color: #fff;
}
.lang-toggle__btn:hover {
  border-color: #d49a4e;
  color: #d49a4e;
}
