.language-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #111827;
  font-size: 14px;
  letter-spacing: 0;
}
.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 78px;
  height: 42px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.language-trigger:hover,
.language-selector.is-open .language-trigger {
  color: #165dff;
}
.language-trigger svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}
.language-code { min-width: 22px; text-align: left; }
.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.language-selector.is-open .language-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}
.language-popover {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  right: 0;
  width: 224px;
  padding: 12px 0 10px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.language-selector.is-open .language-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-popover-title {
  padding: 4px 18px 10px;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}
.language-option {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 42px 0 18px;
  border: 0;
  background: #fff;
  color: #4b5563;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.language-option:hover { background: #f5f7fa; color: #165dff; }
.language-option.is-active { color: #165dff; }
.language-option.is-active::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-2px);
}
.language-site-link {
  display: block;
  margin-top: 8px;
  padding: 12px 18px 2px;
  border-top: 1px solid #eef0f3;
  color: #111827;
  font-size: 13px;
}
.language-selector[data-language-placement="mobile"] {
  display: flex;
  width: 100%;
}
.language-selector[data-language-placement="mobile"] .language-trigger {
  justify-content: flex-start;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #dce7f7;
  border-radius: 10px;
  background: #fff;
}
.language-selector[data-language-placement="mobile"] .language-chevron { margin-left: auto; }
.language-selector[data-language-placement="mobile"] .language-popover {
  position: static;
  display: none;
  width: 100%;
  margin-top: 8px;
  box-shadow: none;
}
.language-selector[data-language-placement="mobile"].is-open {
  display: grid;
}
.language-selector[data-language-placement="mobile"].is-open .language-popover {
  display: block;
}
@media (max-width: 760px) {
  .language-popover { width: min(224px, calc(100vw - 32px)); }
}
