.lang-switch-wrap {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  font-size: 14px;
  z-index: 9999;
  white-space: nowrap;
}

html[lang="he"] .lang-switch-wrap {
  right: auto;
  left: 25px;
  flex-direction: row-reverse;
}

.lang-switch-btn {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.3s;
}

.lang-switch-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
