.desktop-header-active .header-search{
    position: relative!important;
}
.search-dropdown {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
}

#search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0px;
}

.search-results {
    display: block;
    position: absolute;
    top: 44px;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 400px;
    overflow: scroll;
    overflow-x: hidden;
}

.brand-suggestions, .general-suggestions {
    margin-bottom: 20px;
}

.brand-suggestions p, .general-suggestions p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

#brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#brand-list span {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

#brand-list span:hover {
    background: #ddd;
}
#brand-list li a{
    margin-bottom: 10px;
}
#suggestion-list {
    list-style: none;
    padding: 0;
}

#suggestion-list li {
    display: flex; /* Flexbox kullanarak hizalamayı kolaylaştırıyoruz */
    justify-content: space-between; /* İki eleman arasında boşluk bırak */
    font-size: 12px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    padding: 0px;
}
#suggestion-list li a {
    display: block;
    width: 100%;
    padding: 10px 5px;
}

#suggestion-list li:last-child {
    border-bottom: none;
}

#suggestion-list li:hover {
    background: #f9f9f9;
}

#suggestion-list li span.type {
    color: #888;
    font-size: 12px;
    white-space: nowrap;
    padding: 10px 5px;
}
#suggestion-list li img{
    width: 30px;
    margin-right: 10px;
    float: left;
}