.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.08);
}

.lang-switcher__label {
  padding-left: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.58);
}

.lang-switcher__button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.82);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switcher__button:hover,
.lang-switcher__button:focus-visible {
  background: rgba(232, 78, 15, 0.12);
  color: #e84e0f;
  outline: none;
}

.lang-switcher__button[aria-pressed="true"] {
  color: #ffffff;
  background: linear-gradient(135deg, #e84e0f, #c7410c);
}

.lang-switcher__button[disabled] {
  opacity: 0.6;
  cursor: wait;
}

@media (max-width: 960px) {
  .header-inner {
    align-items: flex-start;
  }

  .lang-switcher {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .lang-switcher__label {
    padding-left: 0;
  }
}
