/* Подсказки поиска — fixed поверх страницы (не режется overflow) */
.catalog-search-suggest {
  position: fixed;
  z-index: 20000;
  background: #fff;
  border: 1px solid #d7dce0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(51, 63, 72, 0.18);
  max-height: min(50vh, 320px);
  overflow-y: auto;
  padding: 6px 0;
  box-sizing: border-box;
}

.catalog-search-suggest[hidden] {
  display: none !important;
}

.catalog-search-suggest__item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 14px;
  font-family: 'HelveticaNeueCyr Roman', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  color: #333F48;
}

.catalog-search-suggest__item:hover,
.catalog-search-suggest__item:focus {
  background: #f3f8fa;
  color: #00a9ce;
  outline: none;
}

@media (max-width: 768px) {
  .catalog-search-suggest {
    border-radius: 6px;
    max-height: min(45vh, 280px);
  }

  .catalog-search-suggest__item {
    font-size: 14px;
    padding: 12px 14px;
  }
}
