/* ===================================================================
   i18n.css — стили для переключателя языка в навигации
   =================================================================== */

.language-switcher {
  display: flex !important;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding-left: 8px;
  border-left: 1px solid rgba(214,179,90,.3);
}

.language-switcher__button {
  background: transparent;
  border: 1px solid rgba(214,179,90,.2);
  border-radius: 6px;
  padding: 4px 8px;
  color: rgba(255,235,190,.85);
  font-family: 'AlbertusNovaThin', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  min-width: 36px;
  text-align: center;
  white-space: nowrap;
}

.language-switcher__button:hover {
  background: rgba(255,214,120,.1);
  border-color: rgba(214,179,90,.5);
  color: rgba(255,245,210,.98);
  transform: translateY(-1px);
}

.language-switcher__button.active {
  background: linear-gradient(180deg, rgba(255,214,120,.18), rgba(255,214,120,.04));
  border-color: rgba(214,179,90,.6);
  color: rgba(255,245,210,1);
  box-shadow: 0 2px 6px rgba(255,214,120,.2);
}

.language-switcher__button:active {
  transform: translateY(0);
}

/* Мобильная версия */
@media (max-width: 768px) {
  .language-switcher {
    gap: 3px;
    padding-left: 6px;
  }
  
  .language-switcher__button {
    padding: 3px 6px;
    font-size: 10px;
    min-width: 32px;
  }
}

@media (max-width: 480px) {
  .language-switcher {
    gap: 2px;
    padding-left: 4px;
    border-left: 1px solid rgba(214,179,90,.2);
  }
  
  .language-switcher__button {
    padding: 3px 5px;
    font-size: 9px;
    min-width: 28px;
    letter-spacing: 0;
  }
}

