/* PROMPT-2026-03-22-17 — Styles partagés (sélecteur langue + accessibilité) */
/* Mise en page site : policies-shell.css (+ policies-home.css accueil, policies-legal.css sous-pages) — PROMPT-2026-03-22-40 */
/* Logo navigation assets/logo-nav.png : pas de fond / pas de « marque » autour */
.brand {
  background: transparent;
  border: none;
  box-shadow: none;
}
.site-logo--nav {
  background: transparent;
  border: none;
  box-shadow: none;
  object-fit: contain;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 140px;
}

.policies-lang-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f4f5f7;
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 10px 36px 10px 12px;
  cursor: pointer;
  max-width: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b0b5c0' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.policies-lang-select:hover,
.policies-lang-select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
  box-shadow: 0 0 0 2px rgba(39, 225, 193, 0.25);
}

.policies-lang-select option {
  background: #111;
  color: #f4f5f7;
}

@media (max-width: 900px) {
  .lang-switcher {
    width: 100%;
    justify-content: flex-start;
  }
}
