.lang-switcher--dropdown {
  position: relative;
}

.lang-switcher--trigger {
  background: none;
  border: none;
  font-weight: bold;
  cursor: pointer;
  color: inherit;
}

.lang-switcher--trigger.is-active {
  color: var(--primary);
  font-weight: 700;
}

.lang-switcher--menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: none;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.lang-switcher--dropdown.active .lang-switcher--menu {
  display: block;
}

.lang-switcher--menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lang-switcher--menu button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.lang-switcher--menu button:hover {
  background: #f7f7f7;
}

.auto-translate-note {
  background: #fff3cd;
  color: #333;
  font-size: 14px;
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #ffeeba;
  z-index: 9999;
}