/* Floating language switcher — fixed bottom-left in both LTR and RTL.
   (AI assistant widget lives bottom-right, so there is no collision.) */
.lang-switcher {
  position: fixed;
  left: 20px;
  right: auto;
  bottom: 22px;
  z-index: 99980;
  margin: 0;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #05092b, #0e38b1);
  color: #fff;
  font: 700 14px "Montserrat", "Tajawal", sans-serif;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(5, 9, 43, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lang-switcher__btn i {
  color: #00d690;
  font-size: 16px;
}

.lang-switcher__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(5, 9, 43, 0.42);
}

.lang-switcher__btn:focus-visible {
  outline: 3px solid #00d690;
  outline-offset: 2px;
}

@media (max-width: 575px) {
  .lang-switcher {
    left: 12px;
    bottom: 14px;
  }
  .lang-switcher__btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}
