#header-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,48,135,.12);
  background: #fff;
}
.hsd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #2d3748;
  transition: background .1s;
  border-bottom: 1px solid #f0f2f8;
  cursor: pointer;
}
.hsd-item:last-of-type { border-bottom: none; }
.hsd-item:hover, .hsd-item.hsd-active { background: #eff6ff; }
.hsd-thumb {
  width: 42px; height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: #f0f2f8;
  flex-shrink: 0;
}
.hsd-name  { font-weight: 600; font-size: 13px; line-height: 1.3; }
.hsd-cat   { font-size: 11px; color: #a0aec0; margin-top: 2px; }
.hsd-price { font-weight: 800; font-size: 14px; color: var(--primary); margin-left: auto; flex-shrink: 0; white-space: nowrap; }
.hsd-footer {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: #f8faff;
  border: none;
  cursor: pointer;
  border-top: 1px solid #e8edf8;
  transition: background .1s;
  font-family: 'DM Sans', sans-serif;
}
.hsd-footer:hover { background: #eff6ff; }
.hsd-empty { padding: 18px; text-align: center; color: #a0aec0; font-size: 13px; }
.hsd-loading { padding: 14px; text-align: center; color: #a0aec0; font-size: 13px; }
