/* Outer Box */
.houzez-ajax-search-wrapper {
    max-width: 1150px;
    margin: auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 22px;
}

/* Title */
.houzez-search-title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Row Common */
.houzez-row {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

/* ✅ Row 1 only 2 fields */
.row-1 {
    grid-template-columns: 1fr 1fr;
}

/* ✅ Row 2 with button */
.row-2 {
    grid-template-columns: repeat(5, 1fr) 150px;
}

/* Inputs */
.houzez-row select,
.houzez-row input {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 14px;
    font-size: 14px;
    background: #fff;
    width: 100%;
}

/* Button */
.houzez-row button {
    height: 52px;
    background: #00a3ff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.houzez-row button:hover {
    background: #0089d6;
}

/* ✅ Responsive */
@media(max-width: 992px) {

    .row-1 {
        grid-template-columns: 1fr;
    }

    .row-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .row-2 button {
        grid-column: span 2;
        width: 100%;
    }
}

@media(max-width: 576px) {

    .row-2 {
        grid-template-columns: 1fr;
    }

    .row-2 button {
        grid-column: span 1;
    }
}
