.wr-product-search-form {
  position: relative !important;
  overflow: visible !important;
}

.wr-product-search-suggestions {
  position: absolute;
  z-index: 99999;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  max-height: min(520px, 70vh);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #f1d5e1;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(30, 20, 25, .14);
  color: #242424;
}

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

.wr-product-search-suggestions__item {
  min-height: 78px;
  padding: 9px 12px;
  display: flex !important;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #f3e6ec;
  background: #fff;
  color: #242424 !important;
  text-align: left;
  text-decoration: none !important;
}

.wr-product-search-suggestions__item:hover,
.wr-product-search-suggestions__item:focus-visible,
.wr-product-search-suggestions__item.is-active {
  outline: 0;
  background: #fff5f8;
}

.wr-product-search-suggestions__image {
  width: 60px !important;
  height: 60px !important;
  min-width: 60px;
  margin: 0 !important;
  display: block;
  object-fit: cover;
  border-radius: 4px;
  background: #f7f7f7;
}

.wr-product-search-suggestions__content {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 5px;
}

.wr-product-search-suggestions__title {
  overflow: hidden;
  color: #242424;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wr-product-search-suggestions__price {
  color: #ff4081;
  font-size: 13px;
  line-height: 1.2;
}

.wr-product-search-suggestions__price del {
  margin-left: 6px;
  color: #888;
  font-size: .8em;
}

.wr-product-search-suggestions__all {
  min-height: 46px;
  padding: 12px 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #ff4081;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  text-transform: uppercase;
}

.wr-product-search-suggestions__all:hover,
.wr-product-search-suggestions__all:focus-visible {
  background: #e92f72;
}

.wr-product-search-suggestions__message {
  min-height: 54px;
  margin: 0 !important;
  padding: 17px 18px;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
}

.wr-product-search-suggestions__message.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 9px;
  display: inline-block;
  border: 2px solid #f2c7d9;
  border-top-color: #ff4081;
  border-radius: 50%;
  vertical-align: -2px;
  animation: wr-product-search-spin .7s linear infinite;
}

@keyframes wr-product-search-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
  .wr-product-search-suggestions {
    max-height: min(430px, 60vh);
  }

  .wr-product-search-suggestions__item {
    min-height: 70px;
  }

  .wr-product-search-suggestions__image {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
  }
}
