/* Language switcher + shared top-right tools row */

.site-top-tools {
  --site-tool-height: 2.35rem;
  --site-tool-pad-x: 0.8rem;
  --site-tool-font: 0.84rem;
  --site-tool-icon: 1.05rem;
  position: fixed;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: calc(100vw - 1.25rem);
  pointer-events: none;
}

.site-top-tools > * {
  pointer-events: auto;
}

.site-top-tools .auth-lang-bar,
.site-top-tools .a11y-tools__toggle,
.lang-switcher-top .auth-lang-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-sizing: border-box;
  height: var(--site-tool-height, 2rem);
  min-height: var(--site-tool-height, 2rem);
  padding: 0 var(--site-tool-pad-x, 0.65rem);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  font-size: var(--site-tool-font, 0.78rem);
  font-weight: 600;
  line-height: 1;
}

.site-top-tools .auth-lang-bar {
  padding-right: 0.4rem;
}

.site-top-tools--guest .auth-lang-bar,
.site-top-tools--guest .a11y-tools__toggle,
.lang-switcher-top--guest .auth-lang-bar {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  color: #fff;
}

.lang-switcher-top {
  position: fixed;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 1040;
  width: auto;
  max-width: calc(100vw - 1.25rem);
  pointer-events: none;
}

.lang-switcher-top .auth-lang-bar {
  pointer-events: auto;
}

.auth-lang-bar__icon {
  color: #4b5563;
  font-size: var(--site-tool-icon, 0.95rem);
  line-height: 1;
}

.site-top-tools .a11y-tools__toggle i {
  font-size: var(--site-tool-icon, 0.95rem);
  line-height: 1;
  color: #4b5563;
}

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

.auth-lang-bar__select {
  width: auto;
  min-width: 7.25rem;
  max-width: 9rem;
  height: 100%;
  padding: 0 1.55rem 0 0.25rem;
  font-size: var(--site-tool-font, 0.84rem);
  font-weight: 600;
  line-height: 1;
  border: 0;
  color: #1f2937;
  background-color: transparent;
  box-shadow: none;
}

.auth-lang-bar__select:focus {
  box-shadow: none;
  border-color: transparent;
  color: inherit;
}

/* Guest (green hero): force white icon + selected language text */
.site-top-tools--guest .auth-lang-bar,
.site-top-tools--guest .auth-lang-bar__icon,
.site-top-tools--guest .auth-lang-bar i,
.site-top-tools--guest .auth-lang-bar__select,
.site-top-tools--guest .auth-lang-bar .form-select,
.site-top-tools--guest .a11y-tools__toggle,
.site-top-tools--guest .a11y-tools__toggle i {
  color: #fff !important;
}

.site-top-tools--guest .auth-lang-bar__select option {
  color: #111;
}
