/* Live-search dropdown used by themes 14–19 search forms. */
.search.has-text .search__clear,
.t19-search.has-text .search__clear { display: block; }
.search__results {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  max-height: 360px;
  overflow: auto;
  background: #fff;
  color: #0b1017;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(11, 16, 23, .14);
}
.search__results.is-open { display: block; }
.search__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #eef1f6;
}
.search__item:last-child { border-bottom: 0; }
.search__item:hover,
.search__item.is-cursor { background: #f4f7fb; }
.search__item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: #f4f6fa;
  flex: 0 0 42px;
}
.search__item-name { font-weight: 600; }
.search__item-price { font-size: .85rem; opacity: .8; }
.search__item-oos { font-size: .78rem; color: #c0392b; }
.search__empty { padding: 14px 12px; color: #6b7280; }
.searchband { overflow: visible; }
.searchband .wrap { z-index: 8; }
.search, .t19-search, .hsearch { position: relative; }
.hsearch .search__results { top: calc(100% + 4px); min-width: 280px; right: 0; left: auto; width: min(420px, 80vw); }
