.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-header__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.site-logo__badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #fde047, #facc15);
  color: #121212;
  font-size: 14px;
}

.site-logo__mark {
  color: #facc15;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-main__link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #a7b6d1;
  transition: background .18s ease, color .18s ease;
}

.nav-main__link:hover,
.nav-main__link.is-active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.header-search {
  width: 100%;
  max-width: 430px;
  position: relative;
  justify-self: center;
}

.header-search .input-base {
  min-height: 42px;
  padding-right: 44px;
  border-radius: 14px;
}

.header-search__submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #d8e0ef;
  cursor: pointer;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-locale {
  position: relative;
}

.header-locale::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 11px;
  color: #b7c2d8;
  pointer-events: none;
}

.header-locale .select-base {
  min-width: 78px;
  min-height: 40px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #eef4ff;
  border: 1px solid rgba(95, 124, 184, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 28, 52, 0.9), rgba(10, 18, 36, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 8px 18px rgba(0,0,0,0.22);
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 40px;
  min-width: 40px;
  padding: 0;
  border-radius: 14px;
  color: #eef4ff !important;
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(95, 124, 184, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 28, 52, 0.96), rgba(10, 18, 36, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 18px rgba(0,0,0,0.22);
  -webkit-text-fill-color: #eef4ff;
}

.header-search__submit,
.slider-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-icon:hover {
  color: #ffffff !important;
  border-color: rgba(250, 204, 21, 0.35);
  background:
    linear-gradient(180deg, rgba(28, 40, 70, 0.98), rgba(14, 24, 46, 0.96));
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .header-search {
    max-width: none;
  }

  .site-header__right {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .nav-main {
    display: none;
  }
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: 16px;
  color: #eef4ff !important;
  border: 1px solid rgba(95, 124, 184, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 28, 52, 0.95), rgba(10, 18, 36, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 18px rgba(0,0,0,0.25);
}

.header-icon:hover {
  color: #ffffff !important;
  border-color: rgba(250, 204, 21, 0.4);
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .header-search {
    max-width: none;
  }

  .site-header__right {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .nav-main {
    display: none;
  }
}