﻿.language-switcher {
  position: relative;
  min-width: 132px;
}

.language-switcher__select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(7, 7, 19, 0.55);
  color: #ffffff;
  border-radius: 999px;
  padding: 9px 34px 9px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.language-switcher__select:hover,
.language-switcher__select:focus {
  border-color: #c8a96b;
  background: rgba(7, 7, 19, 0.75);
  outline: none;
}

.language-switcher__select option {
  color: #070713;
}

.language-switcher::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

html[dir='rtl'] .language-switcher::after {
  right: auto;
  left: 14px;
}

html[dir='rtl'] .language-switcher__select {
  padding: 9px 14px 9px 34px;
}

@media (max-width: 991.98px) {
  .header-right {
    gap: 12px !important;
  }

  .language-switcher {
    min-width: 112px;
  }

  .language-switcher__select {
    padding: 8px 30px 8px 12px;
    font-size: 13px;
  }
}
