.search { position: relative; }
.js-ajax-search {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  max-height: 420px;
  overflow-y: auto;
}
.js-ajax-search.active { display: block; }
.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.search-dropdown__item:last-child { border-bottom: none; }
.search-dropdown__item:hover { background: #f5f9f5; }
.search-dropdown__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f0f0f0;
}
.search-dropdown__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-dropdown__info { flex: 1; min-width: 0; }
.search-dropdown__title {
  font-weight: 600;
  font-size: 14px;
  color: #15321B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-dropdown__badge {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  background: #2e7d32;
  padding: 1px 8px;
  border-radius: 10px;
  margin-top: 3px;
}
.search-dropdown__empty {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}
.search-dropdown__hint {
  padding: 8px 16px;
  font-size: 12px;
  color: #888;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.search__overlay.active {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: transparent;
}
