/* woo custom search */
.woo-custom-search{
    display: table;
    width: 100%;
    margin: 0px;
    padding: 0px;
    border-bottom: 1px #E0DDD9 solid;
}

.parent-padding{
    padding: 10px;
}

.woo-custom-search.mobile{
    display: none;
}
.woo-custom-search.mobile.open{
    display: table;
}
.woo-custom-search-icon{
    display: inline-block;
    color: #1F1F1D;
    width: 40px;
    height: 40px;
    padding: 10px;
}
.woo-custom-search-icon svg{
    fill:#1F1F1D !important
}
#woo-custom-search-input,
#woo-custom-search-mobile-input{
    display: inline-block;
    width: calc(100% - 60px);
    background-color: transparent !important;
    border: 0px;
    border-radius: 0px;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #625A5A;
    position: absolute;
    top: 0;
    padding: 8px 8px 0px 8px;
}

#woo-custom-search-mobile-input{
    line-height: 45px;
}

#woo-custom-search-input:focus,
#woo-custom-search-input:active,
#woo-custom-search-mobile-input:focus,
#woo-custom-search-mobile-input:active{
    outline: none;
}

ul#woo-custom-search-results,
ul#woo-custom-search-mobile-results{
    list-style: none;
    display: table;
    width: 100%;
    position: absolute;
    z-index: 99;
    margin: 0px;
    padding: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
ul#woo-custom-search-mobile-results{
    left: 0px;
}

ul#woo-custom-search-results li a,
ul#woo-custom-search-mobile-results li a{
    display: flex;
    width: 100%;
    padding: 10px 10px 5px 10px;
    background-color: #fff;
    color: #000;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 500;
}
ul#woo-custom-search-results li a:hover,
ul#woo-custom-search-mobile-results li a:hover{
    background-color: #efefef;
}
ul#woo-custom-search-results li .woo-custom-result-img,
ul#woo-custom-search-mobile-results li .woo-custom-result-img{
    width: 80px !important;
    max-width: 80px !important;
    line-height: 100px !important;
    flex-shrink: 0; /* Prevent shrinking beyond the max-width */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    text-align: center;

}
ul#woo-custom-search-results li .woo-custom-result-img img,
ul#woo-custom-search-mobile-results li .woo-custom-result-img img{
    max-height: 100px !important;
    height: auto !important;
    max-width: 100% !important;
    vertical-align: middle !important;

}
ul#woo-custom-search-results li .woo-custom-result-text,
ul#woo-custom-search-mobile-results li .woo-custom-result-text{
    flex-grow: 1;
    padding: 10px 20px;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
ul#woo-custom-search-results li .woo-custom-result-text p.price,
ul#woo-custom-search-mobile-results li .woo-custom-result-text p.price{
    background-color: #6c7c69;
    padding: 5px 10px;
    font-family: "Montserrat", Sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
}
ul#woo-custom-search-results li .woo-custom-result-text span.short-description,
ul#woo-custom-search-mobile-results li .woo-custom-result-text span.short-description{
    font-size: 11px;
    font-weight: 500;
}