/* =========================
   HEADER – fixtoend
   Лого вляво, езици вдясно
   ========================= */

.header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Езиково меню */
.lang {
  display: flex;
  gap: 20px;
  align-items: center;
}

.lang a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #13437d;
  position: relative;
  transition: color 0.2s ease;
}

.lang a:hover {
  color: #be211f;
}

.lang a.is-active {
  color: #be211f;
}

/* Дискретна линия под активния */
.lang a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #be211f;
}

/* Mobile */
@media (max-width: 480px) {
  .header__inner {
    padding: 14px 16px;
  }

  .header__logo img {
    height: 38px;
  }

  .lang {
    gap: 14px;
  }

  .lang a {
    font-size: 13px;
  }
}