/*
Theme Name: Hello Elementor Child
Theme URI: https://ayatinfotech.com/
Description: Child theme for Hello Elementor
Author: Webexpert4045 
Template: hello-elementor
Version: 1.0.0
*/

/* PRODUCT LAYOUT */
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.akb-form {
    height: 50px;
}
.puja-product-layout{
display:flex;
gap:40px;
max-width:1200px;
margin:auto;
padding:20px;
}

.puja-left{
width:50%;
}

.puja-left img{
width:100%;
border-radius:10px;
}

.puja-right{
width:50%;
}

.puja-price{
font-size:28px;
color:#e53935;
margin:10px 0;
}

.puja-buttons{
margin-top:20px;
display:flex;
gap:10px;
}

.book-btn{
background:#25D366;
color:#fff;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}

.quote-btn{
background:#ff6b00;
color:#fff;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}


/* POPUP */

.quote-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
justify-content:center;
align-items:center;
z-index:9999;
padding:20px;
}

.quote-popup-content{
background:#fff;
padding:25px;
width:100%;
max-width:500px;
max-height:90vh;
overflow-y:auto;
border-radius:10px;
position:relative;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.quote-close{
position:absolute;
top:10px;
right:15px;
font-size:22px;
cursor:pointer;
}


/* CONTACT FORM GRID */

.akb-row{
display:flex;
gap:15px;
margin-bottom:10px;
}

.akb-row .column{
width:50%;
}

.akb-input,
.akb-form,
.abk-number{
width:100%;
padding:10px;
border:1px solid #ddd;
border-radius:5px;
}

.button input[type="submit"]{
background:#ff6b00;
color:#fff;
border:none;
padding:10px 25px;
border-radius:5px;
cursor:pointer;
}


/* MOBILE RESPONSIVE */

@media(max-width:768px){

.puja-product-layout{
flex-direction:column;
}

.puja-left,
.puja-right{
width:100%;
}

.akb-row{
flex-direction:column;
}

.akb-row .column{
width:100%;
}

}