/* ===== Autocomplete del buscador del home ===== */
.content-search {
    position: relative;
}

.autocomplete-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    margin-top: 4px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 360px;
    overflow-y: auto;
    text-align: left;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-results .ac-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.12s ease;
}

.autocomplete-results .ac-item:last-child {
    border-bottom: 0;
}

.autocomplete-results .ac-item:hover,
.autocomplete-results .ac-item.active {
    background-color: #f5f7fa;
    color: #111;
}

.autocomplete-results .ac-label {
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-results .ac-phm {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    white-space: nowrap;
}
