/* locale-suggest.css — floating globe → page-language codes on #ap profiles */
.as-locale-fab {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 45;
  font-family: Manrope, system-ui, sans-serif;
}
@media (max-width: 767px) {
  /* Above #ap .mobile-sticky CTA bar */
  .as-locale-fab {
    bottom: 72px;
    right: 12px;
  }
}

.as-locale-fab__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e5e5e3;
  border-radius: 999px;
  background: #fff;
  color: #0a0f12;
  box-shadow: 0 6px 20px rgba(10, 15, 18, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.as-locale-fab__btn:hover {
  border-color: #0a0f12;
  box-shadow: 0 8px 24px rgba(10, 15, 18, 0.16);
}
.as-locale-fab__btn:focus-visible {
  outline: 2px solid #d916b0;
  outline-offset: 2px;
}
.as-locale-fab.is-open .as-locale-fab__btn {
  border-color: #0a0f12;
}
.as-locale-fab__btn svg {
  display: block;
  width: 22px;
  height: 22px;
}

.as-locale-fab__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 52px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e5e5e3;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(10, 15, 18, 0.14);
}
.as-locale-fab.is-open .as-locale-fab__panel {
  display: flex;
}

.as-locale-fab__panel a,
.as-locale-fab__panel span[aria-current="page"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  color: #0a0f12;
}
.as-locale-fab__panel a:hover {
  background: #f4f4f2;
}
.as-locale-fab__panel span[aria-current="page"] {
  background: #0a0f12;
  color: #fff;
  cursor: default;
}
