/*
Theme Name: Hello Elementor Child
Description: Child theme for House Builder project
Template: hello-elementor
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PP Neue Montreal", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    line-height: 1.6;
    color: #333;
    padding: 0px !important;
}

/* Force PP Neue Montreal on checkout and house pages */
body.checkout-page,
body.page-template-page-checkout,
body.single-house,
body.post-type-archive-house {
    font-family: "PP Neue Montreal", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Custom styles for House Builder project */
.house-builder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.temp-house-card{
	
}
.temp-house-card-img{
	
}
.temp-house-card-content{
	min-height:320px !important;
	max-height:320px !important;
}
.temp-house-card-desc{
	display: -webkit-box;
    -webkit-line-clamp: 3;   /* number of lines you want */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


