.language-switcher {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.language-switcher__label {
  font-weight: 700;
  color: #101828;
}
.language-switcher a {
  text-decoration: none;
  color: #344054;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  transition: background 0.2s ease, color 0.2s ease;
}
.language-switcher a:hover,
.language-switcher a:focus {
  background: rgba(15, 23, 42, 0.10);
  color: #101828;
}
.language-switcher a.active {
  background: rgba(15, 23, 42, 0.16);
  color: #101828;
  font-weight: 700;
}
.language-prompt {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(360px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  border-radius: 18px;
  padding: 18px;
  z-index: 1001;
}
.language-prompt h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.language-prompt p {
  margin: 0 0 14px;
  color: #475467;
  line-height: 1.5;
}
.language-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.language-prompt__actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
}
.language-prompt__primary {
  background: #111827;
  color: white;
}
.language-prompt__secondary {
  background: #f2f4f7;
  color: #344054;
}
.language-prompt__ghost {
  background: transparent;
  color: #667085;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 640px) {
  .language-switcher { justify-content: flex-start; }
  .language-prompt { left: 16px; right: 16px; width: auto; }
}