.custom-search-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 700px;
    margin: 0 auto;
    z-index: 50000;
    position: relative;
    box-sizing: border-box;
    padding: 0 10px;
    background: #fafafa;
	height: max-content;
}

.search-category, .search-keyword, .search-button {
	box-sizing:border-box;
	padding: 10px;
}
.search-category{
	width:25%;
	border: 0;
    background: #fff0;
    color: #424242;
    border-radius: 2px;
    font-size: 13px;
}

.search-keyword-box{
	position: relative;
    width: 75%;
    display: flex;
    align-items: center;
}
.search-keyword-box svg{
	position: absolute;
    width: 41px;
    left: 15px;
    z-index: 1;
}
.search-keyword{
	width:100%;
	position:relative;
	border: 0;
    background: #fff0;
    color: #424242;
    border-radius: 2px;
    font-size: 13px;
}

.search-button {
    background-color: #BE5683;
    color: #fff;
    border: none;
    cursor: pointer;
    position:absolute;
    left:10px;
    border-radius:100px;
    display: flex;
}

.search-button svg{
	width:20px;
	height:20px;
}


.sri-search-results{
	background: #fff;
    padding: 10px;
	position:absolute;
	width:100%;
	top:50px;
	box-sizing:border-box;
	max-height: 500px;
    overflow: auto;
    box-shadow: 0 0 4px #ddd;
	right:0;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}
.search-results-list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.result-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.result-item a{
	 display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
	gap:20px;
}

.result-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 10px;
}

.result-info {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.result-title {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}

.result-price {
    color: green;
    font-size: 14px;
    margin-bottom: 3px;
}

.result-category {
    font-size: 12px;
    color: #555;
}
.see-all-wrapper {
    text-align: center;
    margin-top: 15px;
}

.see-all-button-inline{
    background-color: #BE5683;
    color:  #fff;;
    padding: 0px 15px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #BE5683;
	box-sizing:border-box;
}


@media screen and (max-width:768px){
	.custom-search-form{
		max-width:95% !important;
	}
        #mobile-header .allcats {
            display:none !important;
        }
}

@media screen and (max-device-width:768px){
    .custom-search-form{
    	max-width:95% !important;
    }
    #mobile-header .allcats {
            display:none !important;
        }
    
}
