#search_suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 608px;
    min-width: 280px;
    max-height: calc(100svh - 100px);
    overflow: auto;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e1e5ef;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(20, 29, 51, 0.3);
    display: none;
    z-index: 1000;
    font-family: "Open Sans", "PT Sans", Arial, sans-serif;
}

#search_suggestions .columns {
    display: flex;
    flex-direction: column;
}

#search_suggestions .sections,
#search_suggestions .products {
    padding: 0 4px;
}

#search_suggestions .sections~.products {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f3f8;
}



#search_suggestions .sections a,
#search_suggestions .products a {
    display: block;
    padding: 9px 10px;
    font-size: 15px;
    color: #1f2a37;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

#search_suggestions .sections a {
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: normal;
}

#search_suggestions .sections a:hover,
#search_suggestions .products a:hover {
    background: #f3f5fb;
    color: #0c3d91;
}

#search_suggestions .products a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    line-height: normal;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    width: 100%;
    position: relative;
}

#search_suggestions .products a .img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    border: 1px solid #e4e9f4;
    position: relative;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

#search_suggestions .products a .img img {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

#search_suggestions .products a span {
    width: 100%;
}

#search_suggestions .products a .img~span {
    width: calc(100% - 45px);
}

#search_suggestions .empty {
    padding: 12px 8px;
    border-radius: 6px;
    background: #f7f7f9;
    color: #6c7482;
    font-size: 14px;
    text-align: center;
    border: 1px dashed #dfe4ee;
}

@media (max-width: 1199px) and (min-width: 992px) {
    #search_suggestions {
        left: -373px !important;
    }
}

@media (max-width: 991px) {
    #search_suggestions {
        width: 462px;
        left: 0;
        right: 0;
    }

    #search_suggestions .sections,
    #search_suggestions .products {
        width: 100%;
    }

    #search_suggestions .columns {
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    #search {
        position: static !important;
    }

    #search_suggestions {
        width: 100%;
        top: 36px !important;
    }
}