.language-switcher {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: 20px auto 1fr 12px;
  align-items: center;
  gap: 9px;
  min-width: 220px;
  padding: 10px 13px;
  color: #082f31;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(6, 63, 64, 0.13);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(4, 39, 41, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.language-switcher__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #0d6b69;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.language-switcher label {
  color: #566b6b;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher select {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: 3px 20px 3px 0;
  color: #082f31;
  background: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font: 700 0.86rem/1.2 "DM Sans", sans-serif;
}

.language-switcher:focus-within {
  border-color: #6fe6bb;
  box-shadow: 0 0 0 3px rgba(111, 230, 187, 0.23), 0 14px 38px rgba(4, 39, 41, 0.2);
}

.language-switcher__chevron {
  width: 11px;
  height: 7px;
  fill: none;
  stroke: #0d6b69;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  pointer-events: none;
}

@media (max-width: 640px) {
  .language-switcher {
    left: 14px;
    bottom: 14px;
    grid-template-columns: 19px 1fr 11px;
    gap: 8px;
    min-width: 164px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .language-switcher label {
    display: none;
  }

  .language-switcher select {
    font-size: 0.82rem;
  }
}

@media print {
  .language-switcher {
    display: none;
  }
}
