



.suggestions-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 456px;
    overflow: auto;
    scrollbar-width: thin;
    padding-right: 1px;
    padding-left: 1px;
}
.search-suggestions {
    width: 340px;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.search-suggestions > p {
    font-size: 14px;
    font-weight: 600;
    color: #29231F;
    line-height: 120%;
    cursor: pointer;
}

.search-suggestions .product-card {
    display: flex;
    flex-direction: column;
    width: calc((100% - 6px) / 2) !important;
    height: 230px;
}
.search-suggestions .product-card .product-image {
    /* padding-top: 38px; */
}

.search-suggestions .product-card .product-card-upper {
    height: 162px;
}
.template {
    display: none;
}

@media (max-width: 990px) {
    .search-suggestions {
        width: 100%;
    }
    .suggestions-list {
        max-height: calc(100vh - 377px);
    }
}