.search-panel-form,
.search-box--suggest {
  position: relative;
}

.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: none;
  padding: 8px;
  z-index: 50;
  text-align: left;
}

.search-suggest.is-open {
  display: block;
}

.search-suggest-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  transition: background 0.15s ease;
}

.search-suggest-item:hover {
  background: #f1f5f9;
}

.search-suggest-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-suggest-logo--fallback {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
}

.search-suggest-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.search-suggest-item * {
  margin: 0;
}

.search-suggest-empty {
  padding: 10px 12px;
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .search-suggest {
    top: calc(100% + 6px);
  }
}
