.qml-search-results {
  background: white;
  border: 1px solid #ddd;
  box-sizing: border-box;
  max-height: 500px;
  overflow-y: auto;
  position: fixed;
  z-index: 99999;
}

.qml-search-results[hidden] {
  display: none;
}

.qml-search-result {
  border-bottom: 1px solid #eee;
}

.qml-search-result a {
  align-items: center;
  display: flex;
  gap: 12px;
  padding: 10px;
}

.qml-search-result a:hover {
  background: #f5f5f5;
}

.qml-search-result-image {
  flex: 0 0 44px;
}

.qml-search-result-image img {
  display: block;
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.qml-search-result-content {
  flex: 1;
  min-width: 0;
}

.qml-search-result-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.qml-search-result-price {
  color: #222;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  margin-left: auto;
  white-space: nowrap;
}

.qml-search-results-loading {
  border-color: #f5f5f5;
}

.qml-search-results-fallback::before {
  background: #f7f7f7;
  color: #666;
  content: "Showing partial matches";
  display: block;
  font-size: 12px;
  padding: 6px 10px;
}