.smart-search-popover {
  position: fixed;
  z-index: 9999;
  display: none;
  max-height: min(420px, calc(100vh - 120px));
  overflow: auto;
  border: 1px solid rgba(251, 146, 60, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(124, 45, 18, 0.2);
  backdrop-filter: blur(14px);
  padding: 8px;
}

.smart-search-popover.is-open {
  display: block;
}

.smart-search-list {
  display: grid;
  gap: 6px;
}

.smart-search-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 66px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #18181b;
  cursor: pointer;
  padding: 7px;
  text-align: left;
  transition: background-color 160ms ease, transform 160ms ease;
}

.smart-search-item:hover,
.smart-search-item.is-active {
  background: rgba(255, 237, 213, 0.92);
  transform: translateY(-1px);
}

.smart-search-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #fff7ed;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.18);
}

.smart-search-name {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-search-meta {
  display: block;
  margin-top: 3px;
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 600;
}

.smart-search-empty,
.smart-search-loading {
  color: #78716c;
  font-size: 0.86rem;
  padding: 12px 10px;
}

@media (max-width: 640px) {
  .smart-search-popover {
    border-radius: 12px;
  }

  .smart-search-item {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 62px;
  }

  .smart-search-thumb {
    width: 48px;
    height: 48px;
  }
}
