/* bobrik suggest — fixed portal (no header overflow clipping) */
.bobrik-suggest {
  position: absolute;
  z-index: 20050;
  background: #fff;
  border: 1px solid var(--bt-border, #e0e0e0);
  border-radius: var(--bt-radius, 8px);
  box-shadow: var(--bt-shadow-hover, 0 4px 16px rgba(21,29,33,.12));
  max-height: min(420px, calc(100vh - 120px));
  overflow: auto;
  display: none;
}
.bobrik-suggest a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--bt-text, #262930);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  font-family: "Geologica", system-ui, sans-serif;
  font-size: 14px;
}
.bobrik-suggest a:hover { background: #f3f7ec; }
.bobrik-suggest img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  background: #f4f4f4;
  flex: 0 0 40px;
}
.bobrik-suggest__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.bobrik-suggest__meta strong {
  font-weight: 600;
  font-size: 13px;
}
.bobrik-suggest__meta strong mark {
  background: rgba(99,146,11,.2);
  color: inherit;
  padding: 0 1px;
}
.bobrik-suggest__meta em {
  font-style: normal;
  font-weight: 700;
  color: var(--bt-dark, #151D21);
  font-size: 13px;
}
.bobrik-suggest .sku {
  color: var(--bt-text-muted, #807971);
  font-size: 12px;
}
.bobrik-suggest__cat span,
.bobrik-suggest__brand span {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--bt-primary, #63920B);
  margin-right: 6px;
  font-weight: 600;
}
.bobrik-suggest__all {
  justify-content: center;
  font-weight: 600;
  color: var(--bt-primary, #63920B) !important;
  border-bottom: 0 !important;
}
.bobrik-suggest__empty {
  padding: 14px;
  text-align: center;
  color: var(--bt-text-muted, #807971);
  font-size: 13px;
}
