.yiya-search {
  position: relative;
}

.yiya-search__input {
  width: 100%;
  box-sizing: border-box;
  transition: opacity 0.15s;
}

.yiya-search__input.is-loading {
  opacity: 0.6;
}

.yiya-search__results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: 420px;
  overflow-y: auto;
}

.yiya-search__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.1s;
}

.yiya-search__item:last-child {
  border-bottom: none;
}

.yiya-search__item:hover {
  background: #f7f7f7;
}

.yiya-search__item-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yiya-search__item-thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.yiya-search__item-placeholder {
  display: block;
  width: 56px;
  height: 56px;
  background: #f0f0f0;
  border-radius: 3px;
}

.yiya-search__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.yiya-search__item-name {
  display: block;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9em;
}

.yiya-search__item-price {
  display: block;
  font-size: 0.85em;
  color: #555;
}

.yiya-search__no-results {
  padding: 14px 12px;
  margin: 0;
  text-align: center;
  color: #888;
  font-size: 0.9em;
}
