.hfse .hfse-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: transparent;
	}

/***SEARCH PROPERTIES***/
/* AI Search*/
.hfse-ai-form {
    border-bottom-style: none !important;
    }
.hfse-ai-form .ai_search_input {
	border: solid 1px #DBCCC2 !important;
    border-radius: 2px;
    box-shadow: none;
    animation: none;
    transition: all 0.3s ease;
	} 
.hfse-ai-form .ai_search_input:hover {
    border-color: #A4826D !important;
    }
.hfse-ai-form .ai_search_submit {
	background: #926B52 !important;
    transition: all 0.3s ease;
    font-size: var(--text-m) !important;
    color: var(--text-contrast) !important;
    font-weight: 600 !important;
    border-radius: 2px !important;
    }
.hfse-ai-form .ai_search_submit:hover {
	background: #7F5539 !important;
    }
/*Filter*/
.hfse-filters label.field-label {
    display: none !important;
}
.hfse-filters .field-control input {
    background: #EDE5E0 !important;
    border-radius: 2px;
    }
.hfse-filters .hfse-form-submit-btn {
    background: #151518 !important;
    transition: all 0.3s ease;
    border-radius: 4px !important;
    font-size: var(--text-m) !important;
    color: var(--text-contrast) !important;
    font-weight: 600 !important;
    }
.hfse-filters .hfse-form-submit-btn:hover {
    background: #000000 !important;
    color: var(--text-contrast) !important;
    }
/*Meta form*/
.hfse-form select {
    font-size: var(--text-s) !important;
    border-radius: 2px !important;
}
/*Reset Button*/
.hfse-form-reset-btn {
  	border-width: 0 !important;
    background: #e9ecef !important;
}
.hfse-form-reset-btn .hfse-form-reset-btn-text {
    text-transform: none;
}

/***PROPERTY CARDS***/
/*Property Cards*/
.hfse-property-card {
    border-radius: 2px;
    overflow: hidden;
}
.hfse-property-card .hfse-property-group {
    border-radius: 2px;
    font-size: var(--text-xs);
    font-weight: 500;
    background: rgba(0,0,0,1);
}
.hfse-property-card .hfse-property-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}
.hfse-property-card .hfse-property-body .hk-flex-top {
    width: 100%;
}
.hfse-property-card .hfse-property-body h3 {
    font-size: var(--text-xl) !important;
}
.hfse-property-card .hfse-property-body .hfse-property-price-container {
    margin-top: 0 !important;
}
.hfse-property-card .hfse-property-body .hfse-property-price {
    font-size: var(--text-s);
}
.hfse-property-card .hfse-property-body .hfse-property-price strong {
    color: var(--text-title);
    font-size: var(--text-l);
    font-weight: 600;
}
.hfse-property-card .hfse-property-meta-primary .terms {
    line-height: 20px;
    padding: 4px 0 4px 28px;
}
.hfse-property-card .hfse-property-meta-secondary div {
    background-size: 20px;
    padding: 4px 0 4px 28px;
}
/*Property Cards Loadmore*/
.hfse-properties-more-container button.hfse-properties-more-btn {
    background: var(--bg-dark);
    color: var(--text-contrast);
    font-weight: 600;
    font-size: var(--text-m);
    border-radius: 2px;
    padding: 4px 32px;
    text-transform: none;
     transition: all 0.3s ease;
}
.hfse-properties-more-container button.hfse-properties-more-btn:hover {
    background: var(--neutral);
    transform: translateY(-4px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}