/* Header quick search -- live suggestions dropdown under the visible header search box */
.header-quicksearch-wrap {
    position: relative;
}
.header-quicksearch-results {
    display: none;
    position: fixed;
    /* top/left/width are set inline by jscript_header_quicksearch.js from the
       input's live position -- the box sits inside Bootstrap's .navbar-collapse,
       which has overflow:auto and would otherwise clip an absolutely-positioned
       dropdown to the navbar's own small height. */
    margin-top: 6px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    max-height: 420px;
    overflow-y: auto;
    z-index: 1050;
    padding: 10px;
}
.header-quicksearch-results.open {
    display: block;
}
.header-quicksearch-results .sugg {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: left;
    padding: 4px 0;
}
.header-quicksearch-results .sugg-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 8px 4px;
}
.header-quicksearch-results .sugg-content a:hover {
    background-color: #f5f9fc;
}
.header-quicksearch-results .sugg-img {
    height: 42px;
    width: 42px;
    flex-shrink: 0;
}
.header-quicksearch-results .sugg-img img {
    height: 42px;
    width: 42px;
    object-fit: contain;
}
.header-quicksearch-results .sugg-name {
    height: auto;
    margin-bottom: 0;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header-quicksearch-results .sugg-model,
.header-quicksearch-results .sugg-brand {
    display: none;
}
.header-quicksearch-results .sugg-price {
    font-size: 12px;
    white-space: nowrap;
    margin-left: auto;
}
.header-quicksearch-results .row.col-12 {
    margin: 4px 0 0;
}
.header-quicksearch-results .sugg-button {
    font-size: 12px;
}
.header-quicksearch-results .sugg-empty {
    padding: 10px 4px;
    font-size: 13px;
    color: #888;
    text-align: center;
}
