.custom-ajax-search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 20px auto;
}

#custom-ajax-search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

#custom-ajax-search-clear {
    position: absolute;
    right: 10px;
    top: 32%;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
    color: #aaa;
    display: none; /* Hidden by default */
}

#custom-ajax-search-clear:hover {
    color: #333;
}

#custom-ajax-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
}

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

.ajax-search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    
}

.ajax-search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.search-item-details {
    display: flex;
    flex-direction: column;
}

.search-item-details .price {
    font-size: 14px;
    color: #666;
}
#custom-ajax-search-results p {
  color: #3c3c3c;
  padding-left: 12px;
}