/*!
 * Valgusallikad theme — 12-search-typeahead.css
 * Live product search suggestions dropdown attached to header search.
 */

.vlg-header-search .vlg-search,
.vlg-search {
  position: relative;
}

.vlg-search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 9000;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(7, 18, 36, 0.12);
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.vlg-search-suggest[hidden] { display: none; }

.vlg-search-suggest__hint {
  padding: 14px 18px;
  color: var(--vlg-muted, #697589);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.vlg-search-suggest__list {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vlg-search-suggest__list li {
  border-radius: 10px;
  transition: background 140ms ease;
}

.vlg-search-suggest__list li.is-active,
.vlg-search-suggest__list li:hover {
  background: #f3f5fa;
}

.vlg-search-suggest__list a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--vlg-text, #172033);
  text-decoration: none;
}

.vlg-search-suggest__media {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f1f3f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vlg-search-suggest__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vlg-search-suggest__placeholder {
  font-size: 1.4rem;
  opacity: 0.6;
}

.vlg-search-suggest__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vlg-search-suggest__title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vlg-search-suggest__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--vlg-muted, #697589);
}

.vlg-search-suggest__sku {
  font-family: ui-monospace, SFMono-Regular, "Menlo", "Consolas", monospace;
  font-size: 0.75rem;
  background: #eef1f6;
  padding: 1px 6px;
  border-radius: 4px;
  color: #4b5563;
}

.vlg-search-suggest__price {
  margin-left: auto;
  color: var(--vlg-primary, #f28a00);
  font-weight: 700;
  font-size: 0.9rem;
}

.vlg-search-suggest__all {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: #f8fafc;
  color: var(--vlg-text, #172033);
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid #e7eaf0;
  font-size: 0.92rem;
  transition: background 140ms ease, color 140ms ease;
}
.vlg-search-suggest__all:hover {
  background: var(--vlg-primary, #f28a00);
  color: #fff;
}

@media (max-width: 600px) {
  .vlg-search-suggest {
    max-height: 60vh;
  }
  .vlg-search-suggest__list a {
    grid-template-columns: 44px 1fr;
    padding: 9px 10px;
  }
  .vlg-search-suggest__media {
    width: 44px;
    height: 44px;
  }
}
