.search--live {
  position: relative;
  z-index: 40;
}

.search--live .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.product-live-search[hidden] {
  display: none !important;
}

.product-live-search {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: 430px;
  max-width: calc(100vw - 24px);
  max-height: 430px;
  overflow-y: auto;
  padding: 7px;
  background: #fff;
  border: 1px solid #dde3ee;
  border-top: 3px solid #f7b032;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(31, 49, 112, 0.16);
  transform: translateX(-50%);
}

.product-live-search__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 24px;
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 9px;
  color: #232323;
  border-radius: 6px;
  transition: background-color 160ms ease, color 160ms ease;
}

.product-live-search__item + .product-live-search__item {
  border-top: 1px solid #eef1f6;
}

.product-live-search__item:hover,
.product-live-search__item:focus,
.product-live-search__item.is-active {
  color: #1f3170;
  background: #f7f8fb;
  outline: none;
}

.product-live-search__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #f7f8fb;
  border: 1px solid #eef1f6;
  border-radius: 5px;
}

.product-live-search__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.product-live-search__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.product-live-search__name {
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-live-search__identifiers {
  overflow: hidden;
  color: #6c7689;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-live-search__price {
  color: #1f3170;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.product-live-search__price del {
  color: #8b93a3;
  font-weight: 300;
}

.product-live-search__arrow {
  color: #f7b032;
  font-size: 20px;
  transition: transform 160ms ease;
}

.product-live-search__item:hover .product-live-search__arrow,
.product-live-search__item:focus .product-live-search__arrow,
.product-live-search__item.is-active .product-live-search__arrow {
  transform: translateX(3px);
}

.product-live-search__empty,
.product-live-search__loading {
  margin: 0;
  padding: 18px 16px;
  color: #6c7689;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1280px) {
  .product-live-search {
    width: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-live-search__item,
  .product-live-search__arrow {
    transition: none;
  }
}
