@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.c-search-autocomplete {
  position: relative;
}
.c-search-autocomplete__results {
  min-width: 21.875rem;
  max-height: 25rem;
  position: absolute;
  z-index: 1000;
  top: 100%;
  right: 0;
  left: 0;
  border-top: none;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0 0.625rem rgba(21, 69, 61, 0.1), 0 0.9375rem 1.25rem rgba(21, 69, 61, 0.08);
  overflow-y: auto;
}
.c-search-autocomplete__results::-webkit-scrollbar {
  width: 8px;
}
.c-search-autocomplete__results::-webkit-scrollbar-track {
  border-radius: 0.3125rem;
  background: transparent;
}
.c-search-autocomplete__results::-webkit-scrollbar-thumb {
  border-radius: 0.3125rem;
  background: #d6d9e3;
}
.c-search-autocomplete__results::-webkit-scrollbar-thumb:hover {
  background: #9fa1a8;
}
@media (min-width: 62rem) {
  .c-search-autocomplete__results {
    min-width: unset;
  }
}
.c-search-autocomplete__results--visible {
  display: block !important;
}
.c-search-autocomplete__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-search-autocomplete__item {
  transition: background-color 0.2s ease;
}
.c-search-autocomplete__item:hover, .c-search-autocomplete__item--active, .c-search-autocomplete__item:has(a:focus) {
  background: var(--wp--preset--color--color-bg);
}
.c-search-autocomplete__item--loading, .c-search-autocomplete__item--no-results, .c-search-autocomplete__item--error {
  padding: 1rem;
  text-align: center;
  color: var(--wp--preset--color--secondary);
}
.c-search-autocomplete__item--error {
  color: #dc3545;
}
.c-search-autocomplete__link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-search-autocomplete__link:focus {
  outline-offset: -5px;
}
.c-search-autocomplete__thumbnail {
  flex-shrink: 0;
  width: 4.375rem;
  height: 4.375rem;
  padding: 0.5rem;
  margin-right: 0.75rem;
  border-radius: 0.5rem;
  background: var(--wp--preset--color--color-bg);
  overflow: hidden;
}
.c-search-autocomplete__thumbnail-image {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  object-fit: cover;
}
.c-search-autocomplete__content {
  flex: 1;
  min-width: 0;
}
.c-search-autocomplete__title {
  margin: 0 0 0.25rem 0;
  color: var(--wp--preset--color--dark);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
.c-search-autocomplete__excerpt {
  margin: 0;
  color: var(--wp--preset--color--secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1.5;
}
.c-search-autocomplete__price {
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--wp--preset--color--dark);
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
.c-search-autocomplete__price .price {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
.c-search-autocomplete__price .price__from {
  font-weight: 400;
  letter-spacing: 0;
}
.c-search-autocomplete__price del {
  margin-right: 0.5rem;
  font-weight: 400;
  color: #676d80;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
.c-search-autocomplete__price ins {
  margin-right: 0.5rem;
  color: var(--wp--preset--color--dark);
  text-decoration: none;
  letter-spacing: 0;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media (max-width: 768px) {
  .c-search-autocomplete {
    max-width: 100%;
  }
  .c-search-autocomplete__results {
    max-height: 18.75rem;
  }
  .c-search-autocomplete .c-search-form__input {
    font-size: 1rem;
  }
}
