:root {
  --header-height: 74px;
  --border-color: #2e2e2e;
  --text-color: #303030;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fff;
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 24px;
  background: #f2f2f2;
  border-top: 8px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  box-sizing: border-box;
}

.nav-list,
.header-tools {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.header-tools a {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a[aria-current="page"],
.header-tools a[aria-current="page"] {
  font-weight: 700;
}

.logo {
  display: block;
  width: 142px;
  height: auto;
}

.header-tools {
  justify-content: flex-end;
  gap: 22px;
}

.support-link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.icon-link {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.icon-link::before,
.icon-link::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  text-indent: 0;
}

.icon-search::before {
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  top: 16px;
  left: 16px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.icon-account::before {
  top: 2px;
  left: 7px;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-account::after {
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 0 0;
}

.icon-cart::before {
  right: 3px;
  bottom: 7px;
  left: 4px;
  height: 11px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-12deg);
}

.icon-cart::after {
  right: 4px;
  bottom: 2px;
  left: 6px;
  height: 4px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.mockup-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 14px;
    min-height: 0;
    padding: 14px 12px 16px;
    flex-wrap: wrap;
  }

  .nav-list,
  .header-tools {
    gap: 10px;
  }

  .nav-list {
    grid-column: 1;
    grid-row: 1;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    display: flex;
  }

  .logo-link {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
  }

  .nav-list a,
  .header-tools a {
    font-size: 11px;
  }

  .logo {
    width: 118px;
  }

  .logo-link {
    order: 5;
    flex: 1 1 100%;
  }
}