.language-switcher {
  position: relative;
  font-family: Arial, sans-serif;
  flex-shrink: 0;
}

.language-toggle {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  display: none;
  z-index: 200;
}

.language-menu.is-open {
  display: grid;
  gap: 4px;
}

.language-menu button {
  border: 0;
  background: transparent;
  color: #1b2b38;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.language-menu button:hover {
  background: rgba(11, 74, 120, 0.08);
}
