/* Выпадающий список поиска в шапке */
.blok-vvod-poisk-header {
    position: relative;
}

.header-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid #e0e4ee;
    border-radius: 4px;
    box-shadow: 0 10px 18px -12px rgba(0,0,0,.35);
    max-height: 380px;
    overflow-y: auto;
    z-index: 10000;


    /* небольшой отступ от краёв */
    padding: 6px;
    box-sizing: border-box;

    /* скроллбар (Firefox) */
    scrollbar-width: thin;
    scrollbar-color: #fac207 transparent;
}

.header-search-results--hidden {
    display: none;
}

/* один товар в выдаче */
.header-search-results .header-search-item {
    display: flex !important;      /* точно флекс-строка */
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 6px;
    cursor: pointer;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    border-radius: 4px;
}

.header-search-results .header-search-item:last-child {
    margin-bottom: 0;
}

.header-search-results .header-search-item:hover {
    background: #f4f6fb;
}

/* миниатюра слева */
.header-search-item__image {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 3px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-item__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* текстовый блок справа */
.header-search-item__text {
    flex: 1;
    min-width: 0;
}

.header-search-item__title {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}

.header-search-item__desc {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #555;
}

/* Подсветка совпадений — жёлтый фон */
.header-search-highlight {
    background: #ffeb3b;
    text-decoration: none;
    padding: 0 1px;
}

/* Скроллбар (Chrome / Edge / Safari) */
.header-search-results::-webkit-scrollbar {
    width: 6px;
}

.header-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.header-search-results::-webkit-scrollbar-thumb {
    background: #ffcc00;
    border-radius: 3px;
}

.header-search-results::-webkit-scrollbar-button {
    display: none;
}


/* Мобильная панель результатов поиска (над нижней полосой) */
.mobile-search-results {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 50px;        /* высота .down-fix */
    top: auto;
    margin-top: 0;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -10px 18px -12px rgba(0,0,0,.35);
    max-height: 55vh;
    z-index: 9998;
}
