.store-header-search-group {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.store-search-suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: #1a1218;
  border-bottom: 1px solid #f5f0f2;
  transition: background 0.15s ease;
}
.store-search-suggest-item:last-child {
  border-bottom: none;
}
.store-search-suggest-item:hover,
.store-search-suggest-item.is-active {
  background: #fff5f8;
}
.store-search-suggest-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  background: #faf8f9;
  flex-shrink: 0;
}
.store-search-suggest-item span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.store-search-suggest-item small {
  display: block;
  font-size: 12px;
  color: #c2185b;
  font-weight: 700;
  margin-top: 2px;
}
.store-search-suggest-empty {
  padding: 14px;
  font-size: 13px;
  color: #6d5f66;
  text-align: center;
}
