.custom-ajax-search-wrapper {
    position: relative;
    width: 100%;
}
.result-wrapper{
    max-width: 1230px;
    width: 100%;
    margin: auto;
    padding: 40px 0px;
}
.custom-ajax-search-form {
    display: flex;
    background: #F2F2F2;
    border-radius: 50px;
    overflow: hidden;
    height: 38px;
}

.custom-ajax-search-form label {
    flex-grow: 1;
    margin: 0;
}
.custom-ajax-search-form label>input {
    background: #F2F2F2 !important;
    padding-left: 22px !important;
    font-size: 14px;
    font-weight: 400 !important;
    height: 38px !important;
}
.custom-ajax-search-form label>input::placeholder{
    font-size: 14px;
    font-weight: 400 !important;
}
.custom-ajax-search-form label>input:focus{
    border: none !important;
}
.custom-ajax-search-form .search-field {
    border: none;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.custom-ajax-search-form .search-submit {
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
    padding: 11px 24px !important;
    display: flex;
    align-items: center;
    justify-content: end;
    border: none !important;
    box-shadow: none !important;
}

.custom-product-search-results {
    position: absolute;
    width: 100%;
    background-color: #fff;
    box-shadow: -2px 5px 5px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: fit-content;
    overflow-y: auto;
    display: none; /* Hidden by default */
}

.custom-product-search-results ul.result-products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
}


.custom-product-search-results ul.result-products li>a {
    display: flex;
}

span.search-result-title, span.search-result-price  {
    font-size: 15px;
    font-weight: 500;
    color: #191919;
}
mark.search-highlight{
    color: #d9121f;
}
.search-result-description {
    font-weight: 400;
    font-size: 13.5px;
    color: #808080;
}

.search-result-thumbnail {
    margin-right: 15px;
}

.search-result-thumbnail img {
    width: 90px;
    height: auto;
    aspect-ratio: 3 / 4;
    min-width: 90px;
    object-fit: cover;
    border-radius: 0;
}

.search-result-details {
    flex-grow: 1;
}

.custom-product-search-results .no-results,
.custom-product-search-results .loading {
    padding: 10px;
    text-align: center;
    color: #777;
}
.view-all-btn {
    display: block;
    margin: 30px auto 0 auto !important;
    width: fit-content;
    color: #191919;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.view-all-btn:hover{
    color: #d9121f;
    text-decoration: underline;
}
@media (min-width: 922px) {
    .custom-product-search-results ul.result-products {
        flex-direction: row;
    }
    .custom-product-search-results ul.result-products li {
        width: calc( 33.33% - 20px);
    }
    .custom-ajax-search-form label>input{
        min-width: 270px;
    }
    .custom-product-search-results {
        top: calc(100% - 64px);
    }
}
@media (max-width: 921px) {
    .custom-product-search-results.ast-container{
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}