/* [project]/components/primitives/LanguageSwitcher.css [app-client] (css) */
.lang-switcher {
  display: inline-flex;
  position: relative;
}

.lang-switcher__trigger {
  min-height: var(--hit-min);
  background: var(--panel-deep);
  border: 1px solid var(--line-bright);
  color: var(--ink);
  font-size: var(--text-xs);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  font-weight: 700;
  transition: border-color .15s, background .15s;
  display: inline-flex;
}

.lang-switcher__trigger:hover {
  border-color: var(--accent);
}

.lang-switcher__trigger[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--panel);
}

.lang-switcher__caret {
  opacity: .7;
  width: 10px;
  height: 10px;
  transition: transform .15s;
}

.lang-switcher__trigger[aria-expanded="true"] .lang-switcher__caret {
  transform: rotate(180deg);
}

.lang-switcher__panel {
  background: var(--panel-deep);
  border: 1px solid var(--line-bright);
  min-width: 200px;
  max-height: 360px;
  box-shadow: var(--shadow-3, 0 12px 32px #00000059);
  z-index: var(--z-popover, 60);
  border-radius: 12px;
  margin: 0;
  padding: 4px;
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  overflow-y: auto;
}

.lang-switcher__opt {
  width: 100%;
  color: var(--ink-dim);
  font-size: var(--text-sm);
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-weight: 500;
  transition: background .12s, color .12s;
  display: flex;
}

.lang-switcher__opt:hover, .lang-switcher__opt:focus-visible {
  background: var(--panel);
  color: var(--ink);
}

.lang-switcher__opt[aria-selected="true"] {
  color: var(--accent-ink);
  background: var(--accent);
}

.lang-switcher__opt[aria-selected="true"]:hover, .lang-switcher__opt[aria-selected="true"]:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
}

.lang-switcher__name {
  white-space: nowrap;
  flex: 1;
}

.lang-switcher__short {
  opacity: .7;
  font-size: var(--text-xs);
  letter-spacing: .04em;
}

@media (prefers-reduced-motion: reduce) {
  .lang-switcher__trigger, .lang-switcher__caret, .lang-switcher__opt {
    transition: none;
  }
}

/*# sourceMappingURL=0ujbic136drsx.css.map*/