/* Country platform switcher — real <a> links for users + crawlers */
.pom-country-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  z-index: 40;
}
.pom-country-switch > a.brand {
  display: inline-flex;
  align-items: center;
  gap: inherit;
  cursor: pointer;
}
.pom-country-switch__caret {
  display: inline-block;
  font-size: 0.42em;
  opacity: 0.75;
  transform: translateY(-0.15em);
}
.pom-country-switch.is-open .pom-country-switch__caret {
  transform: translateY(-0.15em) rotate(180deg);
}
.pom-country-switch__menu {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 13.5rem;
  max-width: min(16rem, calc(100vw - 1.25rem));
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  display: none;
}
.pom-country-switch.is-open .pom-country-switch__menu {
  display: block;
}
.pom-country-switch__menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.pom-country-switch__menu a:hover,
.pom-country-switch__menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}
.pom-country-switch__menu a.is-current,
.pom-country-switch__menu a.is-current {
  background: rgba(56, 189, 248, 0.16);
}
.pom-country-switch__code {
  font-weight: 800;
  letter-spacing: 0.04em;
  min-width: 1.6em;
}
.pom-country-switch__flag {
  width: 1.35rem;
  height: 0.9rem;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.pom-country-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: center;
  padding: 0.75rem 1rem 1.25rem;
  font-size: 0.82rem;
}
.pom-country-seo a {
  color: inherit;
  opacity: 0.8;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.pom-country-seo a:hover { opacity: 1; }
