.vv-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #ece5dd;
  font-family: Inter, Arial, sans-serif;
}

.vv-header__bar {
  width: min(1440px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.vv-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.vv-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #102a43;
  color: #fff7ef;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.vv-logo__text {
  color: #102a43;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.vv-logo__text span {
  color: #a34835;
}

.vv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.vv-nav a {
  color: #27394d;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.vv-nav a:hover {
  color: #a34835;
}

.vv-nav__sale {
  color: #a34835 !important;
}

.vv-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.vv-search {
  width: 220px;
}

.vv-search input {
  width: 100%;
  height: 40px;
  border: 1px solid #d8d1c9;
  border-radius: 6px;
  padding: 0 14px;
  color: #102a43;
  background: #fff;
  font-size: 14px;
}

.vv-icon-link,
.vv-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 13px;
  border-radius: 6px;
  color: #102a43;
  background: #f7f2ec;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.vv-cart {
  color: #fff;
  background: #102a43;
}

@media (max-width: 1024px) {
  .vv-header__bar {
    width: min(100% - 32px, 960px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 18px 0;
  }

  .vv-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .vv-actions {
    width: 100%;
  }

  .vv-search {
    flex: 1;
    width: auto;
  }
}

@media (max-width: 640px) {
  .vv-header__bar {
    width: min(100% - 24px, 600px);
    min-height: auto;
  }

  .vv-logo__text {
    font-size: 24px;
  }

  .vv-nav {
    gap: 16px;
  }

  .vv-actions {
    flex-wrap: wrap;
  }

  .vv-search {
    flex-basis: 100%;
    order: 2;
  }

  .vv-icon-link,
  .vv-cart {
    flex: 1;
  }
}
