/* PROROK v5.4 — compact RU / UA / EN switcher */
.pr-locale-switcher {
  width: max-content;
  max-width: 100%;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
}
.pr-locale-switcher__options {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(184,154,255,.16);
  border-radius: 999px;
  background: rgba(7,11,25,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pr-locale-switcher__button {
  min-width: 34px;
  height: 29px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: rgba(231,226,245,.66);
  background: transparent;
  font: 750 .65rem/1 Manrope, system-ui, sans-serif;
  letter-spacing: .055em;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.pr-locale-switcher__button:hover:not(:disabled),
.pr-locale-switcher__button:focus-visible {
  color: #fff;
  background: rgba(184,154,255,.10);
}
.pr-locale-switcher__button.is-active,
.pr-locale-switcher__button:disabled {
  color: #fff;
  background: linear-gradient(120deg, rgba(128,87,246,.88), rgba(190,88,239,.74));
  box-shadow: 0 5px 18px rgba(139,92,246,.19);
  cursor: default;
  opacity: 1;
}
.pr-locale-switcher__button:focus-visible {
  outline: 2px solid rgba(77,211,255,.42);
  outline-offset: 2px;
}
.pr-locale-switcher__caption {
  color: rgba(231,226,245,.70);
  font-size: .72rem;
  font-weight: 650;
}
.pr-locale-switcher--welcome {
  display: flex;
  justify-content: center;
  margin: -5px auto 13px;
}
.pr-locale-switcher--auth {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 14px auto;
}
.pr-locale-switcher--menu {
  width: 100%;
  justify-content: space-between;
  padding: 8px 10px 5px;
}
.pr-menu__localeRow { list-style: none; }
@media (max-width: 430px) {
  .pr-locale-switcher__button { min-width: 32px; height: 28px; padding-inline: 7px; }
  .pr-locale-switcher--welcome { margin-top: -3px; margin-bottom: 11px; }
  .pr-locale-switcher--auth { margin-bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .pr-locale-switcher__button { transition: none; }
}
