.lang-switcher {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  color: #191919;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: box-shadow 0.15s ease;
}

.lang-switcher:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lang-switcher-arrow {
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 479px) {
  .lang-switcher {
    left: 12px;
    bottom: 12px;
    padding: 8px 14px;
    font-size: 13px;
  }
}
