/* AI Product Search — dropdown/results design */
.ai-product-search__results {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
  max-height: 440px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10000;
}

.ai-product-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #222;
  text-decoration: none !important;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s ease;
}

.ai-product-search__item:last-child {
  border-bottom: 0;
}

.ai-product-search__item:hover,
.ai-product-search__item:focus {
  color: #222;
  background: #f7f7f7;
  text-decoration: none !important;
  outline: 0;
}

.ai-product-search__image {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: #f4f4f4;
  border-radius: 100%;
}

.ai-product-search__content {
  min-width: 0;
  flex: 1 1 auto;
}

.ai-product-search__name {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.ai-product-search__meta {
  margin-top: 3px;
  color: #888;
  font-size: 12px;
  line-height: 1.2;
}

.ai-product-search__price {
  margin-top: 5px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.ai-product-search__empty,
.ai-product-search__loading {
  padding: 13px 15px;
  color: #777;
  font-size: 13px;
}
