.search-pro {
    position: relative;
}
.search-autocomplete-dropdown {
    display: none;
    position: absolute;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    border-radius: 0 0 4px 4px;
    left: 0;
    right: 0;
}
.search-suggest-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s ease;
}
.search-suggest-item:hover,
.search-suggest-item:focus {
    background: #f5f5f5;
    text-decoration: none;
    color: #333;
}
.search-suggest-item:last-child {
    border-bottom: none;
}
.search-suggest-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 4px;
    flex-shrink: 0;
}
.search-suggest-item div {
    min-width: 0;
    overflow: hidden;
}
.search-suggest-item strong {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}
.search-suggest-item small {
    color: #888;
    font-size: 11px;
}
