/* Estilos para o autocomplete */
.search-form {
    position: relative;
}

.autocomplete-suggestions {
    border: 1px solid #ddd;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    margin-top: 2px;
}

.autocomplete-suggestion {
    padding: 8px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.selected {
    background-color: #f8f9fa;
}

.autocomplete-suggestion strong {
    font-weight: bold;
    color: #3B59A5;
}

/* Ajustes para o menu mobile */
#menuMobile .search-form {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

#menuMobile .search-widget-items {
    position: relative;
}

#menuMobile .autocomplete-suggestions {
    position: absolute;
    width: 100%;
    z-index: 10000;
    top: 100%;
    left: 0;
    margin-top: 2px;
}

#menuMobile #mensCategorySearch {
    max-height: 200px;
    overflow-y: auto;
}
