
.lang-switcher {
  margin: clamp(0.75rem, 2vw, 1rem) 0;
}

.lang-switcher__inner {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  background: #f3f8f5;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(31, 79, 66, 0.12);
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #1f4f42;
  background: rgba(31, 79, 66, 0.12);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 12px rgba(31, 79, 66, 0.12);
}

.lang-switcher__btn:hover {
  background: rgba(31, 79, 66, 0.18);
}

.lang-switcher__btn.is-active {
  background: #216b4a;
  color: #fff;
  box-shadow: 0 12px 24px rgba(33, 107, 74, 0.25);
}

html[dir='rtl'] .lang-switcher {
  direction: ltr;
}

html[dir='rtl'] .lang-switcher__btn span {
  direction: rtl;
}
