/* ============================================
   HEADER SEARCH AUTOCOMPLETE
   ============================================ */

.header-search {
    position: relative;
}

.header-search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    max-height: 420px;
    overflow-y: auto;
}

.header-search-suggestions.is-visible {
    display: block;
}

.header-search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
}

.header-search-suggestion-item:last-child {
    border-bottom: none;
}

.header-search-suggestion-item:hover,
.header-search-suggestion-item.is-active {
    background: #f7f9fc;
    text-decoration: none;
    color: inherit;
}

.header-search-suggestion-img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 4px;
    object-fit: contain;
    background: #f5f5f5;
}

.header-search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.header-search-suggestion-name {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.header-search-suggestion-model {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.header-search-suggestion-price {
    font-size: 13px;
    font-weight: 600;
    color: #e53935;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-search-suggestion-loading,
.header-search-suggestion-empty {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.header-search-suggestion-footer {
    display: block;
    padding: 10px 14px;
    text-align: center;
    font-size: 12px;
    color: #1565c0;
    background: #f7f9fc;
    border-top: 1px solid #e0e0e0;
    cursor: pointer;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
}

.header-search-suggestion-footer:hover {
    background: #e8f0fe;
    text-decoration: none;
    color: #0d47a1;
}

/* Бейджи */
.header-search-suggestion-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.header-search-suggestion-badge--sale {
    background: #e53935;
    color: #fff;
}

.header-search-suggestion-badge--fast_delivery {
    background: #2e7d32;
    color: #fff;
}

.header-search-suggestion-badge--new {
    background: #1565c0;
    color: #fff;
}

.header-search-suggestion-badge--hit {
    background: #e65100;
    color: #fff;
}

/* Элементы с бейджем — чуть выделенный фон */
.header-search-suggestion-item--has-badge {
    background: #fafffe;
}

.header-search-suggestion-item--has-badge:hover,
.header-search-suggestion-item--has-badge.is-active {
    background: #f0faf5;
}
