.lang-switcher {
  position: fixed;
  top: 27px;
  right: 255px;
  z-index: 100001;
}

.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 30px 8px 15px;
  border: none;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  outline: none;
  transition: all 0.28s ease;
  min-width: 120px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.lang-switcher select:hover {
  background-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255,255,255,0.2);
}

.lang-switcher select:focus {
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.lang-switcher select option {
  background: #fff;
  color: #333;
  padding: 9px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
  }

  .lang-switcher select {
    padding: 6px 26px 6px 12px;
    font-size: 11.5px;
    min-width: 105px;
    border-radius: 18px;
  }
}