.language-switcher {
  position: relative;
  z-index: 999;
  display: inline-block;
}

.language-switcher * {
  pointer-events: auto !important;
}

.language-switcher, .language-switcher button {
  font-family: var(--e-global-typography-primary-font-family);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  font-size: 14px;
  position: relative;
  color: white;
}

.lang-btn img {
  width: 20px;
  height: 14px;
}

.lang-btn .chevron {
  font-size: 12px;
  margin-left: 2px;
  transition: transform 0.3s ease;
  color: #ff6930;
}

/* Forgatás, ha megnyitott állapotban van */
.language-switcher.open .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 999;
  min-width: 100%;
}

.language-switcher ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
}

.language-switcher:hover ul {
  display: block;
}

.lang-dropdown li {
  padding: 0;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  text-decoration: none;
  font-size: 14px;
}

.lang-dropdown a:hover {
  background-color: #f2f2f2;
}

.lang-dropdown img {
  width: 20px;
  height: 14px;
}
