.header-search {
  align-items: stretch;
}

.header-search .suggest-wrap {
  overflow: visible;
}

.header-search input {
  width: 100%;
  min-width: 0;
  padding-right: 14px;
}

.header-search > button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}

.suggest-v16 {
  max-height: min(72vh, 620px);
  overflow-x: hidden;
  overflow-y: auto;
}

.suggest-v16 .suggest-v16__item {
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 82px;
}

.suggest-v16__item > img {
  width: 62px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.suggest-v16__content {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.suggest-v16__content > b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-v16__content > small {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-v16__item > strong {
  font-size: 13px;
  white-space: nowrap;
}

.suggest-v16__stock {
  justify-self: start;
  color: #687078;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.suggest-v16__stock--available,
.suggest-v16__stock--many {
  color: #168346;
}

.suggest-v16__stock--low {
  color: #b46900;
}

.suggest-v16__stock--order {
  color: #6f7580;
}

.suggest-v16 .suggest-v16__all {
  grid-template-columns: 1fr auto;
  align-items: center;
  color: var(--brand);
}

.suggest-v16__all span {
  display: grid;
  gap: 2px;
}

.dynamic-filter-submit {
  position: relative;
  transition: opacity .15s ease;
}

.dynamic-filter-submit.is-loading {
  opacity: .72;
}

.dynamic-filter-submit.is-loading::after {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: v16-filter-spin .7s linear infinite;
}

.product-badge--v16-sale,
.product-badges .product-badge--v16-sale {
  background: #df0015;
}

.product-badge--v16-top,
.product-badges .product-badge--v16-top {
  background: #5b36bf;
}

.product-badge--v16-value,
.product-badges .product-badge--v16-value {
  color: #2a2100;
  background: #ffd43b;
}

@keyframes v16-filter-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .suggest-v16 .suggest-v16__item {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 72px;
    padding: 9px;
  }

  .suggest-v16__item > img {
    width: 50px;
    height: 50px;
  }

  .suggest-v16__item > strong {
    grid-column: 2;
  }
}

