/* Selector de idioma: únicamente dos botones */
.language-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.language-popup.hidden {
  display: none;
}

.language-popup-overlay {
  position: absolute;
  inset: 0;
}

.language-popup-box {
  position: relative;
  z-index: 1;
  width: min(320px, calc(100% - 40px));
  padding: 24px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.language-option {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.language-option:hover,
.language-option:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}
