.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 227, 221, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(16, 56, 42, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 10px;
}

.consulting-back-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #174936;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.consulting-back-link span {
  font-size: 1.08rem;
  line-height: 1;
  transition: 0.18s ease;
}

.consulting-back-link:hover span {
  transform: translateX(-3px);
}

.site-header__brand:focus-visible,
.consulting-back-link:focus-visible,
.site-header__shop:focus-visible {
  outline: 3px solid rgba(35, 109, 60, 0.22);
  outline-offset: 3px;
}

.site-header__brand img {
  display: block;
  width: 148px;
  height: auto;
}

.site-header__shop {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 11px;
  background: #174936;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__shop:hover {
  background: #10382a;
  color: #fff;
}

.site-header__shop span {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 780px) {
  .site-header__inner {
    width: min(100% - 22px, 1180px);
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 8px;
  }

  .site-header__brand img { width: 116px; }

  .site-header__shop {
    grid-column: 2;
    grid-row: 1;
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.8rem;
  }

}

@media (max-width: 360px) {
  .site-header__inner { width: calc(100% - 16px); }
  .site-header__brand img { width: 104px; }
  .site-header__shop { padding-inline: 9px; }
}
