.houzez-custom-search-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.houzez-custom-search-container {
    position: relative;
    width: 100%;
}

#houzez-custom-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    /* Added right padding for icon */
    border: 1px solid #a6821e;
    border-radius: 25px;
    font-size: 16px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#houzez-custom-search-input:focus {
    border-color: #9e9e9e;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
    outline: none;
}

.houzez-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#houzez-custom-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.houzez-search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.houzez-search-result-item:last-child {
    border-bottom: none;
}

.houzez-search-result-item:hover {
    background-color: #f9f9f9;
}

.houzez-search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.houzez-search-result-content {
    flex: 1;
}

.houzez-search-result-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin: 0 0 4px 0;
}

.houzez-search-result-price {
    font-size: 13px;
    color: #a6821e;
    font-weight: 500;
}

.houzez-search-header {
    padding: 8px 15px;
    background-color: #f5f5f5;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.houzez-no-results {
    padding: 15px;
    text-align: center;
    color: #888;
}