.custom-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.custom-search-wrapper .custom-search-form {
	padding: 2px;
    border: 1px solid #ddd;
    border-radius: 99px;
    overflow: hidden;
}
.custom-search-input {
    width: 100%;
    padding: 10px 50px 10px 15px;
	margin: 0;
    border: none !important;
    box-shadow: none !important;
}

.custom-search-button {
    position: absolute;
    right: 4px;
    background: #c40000;
    color: #fff;
    margin: 0;
    display: flex;
    padding: 0 30px;
    border-radius: 99px;
    top: 50%;
    transform: translateY(-50%);
    justify-content: center;
    align-items: center;
	border:none;
}

.custom-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    margin-top: 5px;
    z-index: 100;
    border-radius: 10px;
    padding: 15px;
}

.custom-search-title {
    font-weight: bold;
    margin-bottom: 10px;
}
.custom-search-title .search-keyword {
	color: #dc2626;
}

.custom-search-tabs {
    margin-bottom: 10px;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-search-tabs .tab-buttons {
	display: flex;
	gap: 5px;
}
.custom-search-tabs .tab-buttons .tab-button {
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 99px;
    margin: 0;
	text-transform: unset;
	display: flex;
	align-items: center;
    justify-content: center;
	font-weight: 500;
}

.tab-button.active {
    background: #2946d3;
    color: #fff;
    border-color: #2946d3;
}

.custom-search-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-search-list .search-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
	margin: 0 !important;
}
.custom-search-list .search-item a {
	    display: flex;
    gap: 10px;
}

.search-thumb img {
    width: 60px !important;
    object-fit: cover;
    border-radius: 4px;
    max-width: unset;
}

.search-info h4 {
    margin: 0;
    font-size: 16px;
	line-height: 1.3;
}

.search-price {
    font-size: 14px;
}
.search-price .woocommerce-Price-amount {
	color: #c40000;
}
.search-price del .woocommerce-Price-amount {
	color: #888;
}
.custom-search-viewmore {
    text-align: center;
    margin-top: 20px;
}

.view-more-link {
    color: #2946d3;
    text-decoration: underline;
}

@media(max-width: 549px) {
	.custom-search-dropdown {
		padding: 10px;
	}
	.custom-search-tabs .tab-buttons .tab-button {
		padding: 0 10px;
		height: 35px !important;
		min-height: unset !important;
	}
	.custom-search-tabs {
		flex-wrap: wrap;
	}
}