/* Adventure with Alphabet — built-in language selector */
.awa-language-switcher {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .58rem;
  border: 1px solid rgba(93, 126, 87, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 7px 20px rgba(62, 83, 68, .09);
  backdrop-filter: blur(12px);
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}
.awa-language-switcher label {
  font-size: .78rem;
  color: #455849;
  white-space: nowrap;
}
.awa-language-switcher select {
  appearance: auto;
  border: 0;
  background: transparent;
  color: #284c31;
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  min-width: 92px;
  cursor: pointer;
  outline: none;
}
.awa-language-switcher select:focus-visible {
  outline: 2px solid rgba(77, 122, 72, .45);
  outline-offset: 3px;
  border-radius: 6px;
}
.awa-language-status {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(14px);
  z-index: 9999;
  max-width: min(92vw, 560px);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: rgba(39, 65, 44, .95);
  color: #fff;
  font-size: .85rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.awa-language-status.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 900px) {
  .awa-language-switcher {
    position: static;
    margin: 0 auto 8px;
    width: fit-content;
  }
  .site-header { display: flex; flex-direction: column; }
  .brand-wrap { order: 1; }
  .awa-language-switcher { order: 2; }
  .train-frame { order: 3; }
  .main-nav { order: 4; width: 100%; }
}
