.predictive-search__header {
  padding-block-end: 12px;
  border-block-end: 1px solid rgb(var(--color-border));
}

.predictive-search__product-image {
  width: 60px;
}

@media (min-width: 960px) {
  .predictive-search__product-image {
    width: 85px;
  }
}

.predictive-search__product-price {
  color: rgb(var(--color-price));
}

.predictive-search__product-price-compare {
  position: relative;
  font-size: 90%;
  vertical-align: middle;
}

.predictive-search__product-price-compare::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 50%;
  width: 100%;
  transform: rotate(-15deg);
  border-block-end: 1px solid rgb(var(--color-discount));
}

.predictive-search__product-price:has(~ .predictive-search__product-price-compare) {
  color: rgb(var(--color-discount));
}