/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/
 Description:  A child theme for the Hello Elementor theme
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-elementor-child
*/

/* Add your custom CSS below this line */

.single-product-desc p{
	font-family: poppins !important;
}

.single-sidebar{
	position: sticky !important;
	top: 40px !important; 
	height: fit-content !important;
}

@media (max-width: 668px){
	.single-sidebar{
		position: static !important; 
		top: unset !important;
	}
}
.custom-contact-form {
  max-width: 900px;
}
.custom-contact-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0B0B0B;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.full-width {
  width: 100%;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 18px;
	font-weight: 400;
  margin-bottom: 6px;
  color: #0B0B0B;
}

/* Fix CF7 span wrappers breaking flex */
.form-group span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form input[type="date"],
.custom-contact-form select,
.custom-contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #E7E7E8;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
	line-height: 24px;
  background-color: #fff;
}
.custom-contact-form textarea {
  height: 100px;
  resize: vertical;
}

/* Submit button fix */
.custom-contact-form input[type="submit"],
.custom-contact-form .wpcf7-submit {
  width: 100%;
  background: #C21F25;
  color: #fff;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
	font-weight: 600;
  display: block;
	font-family: "Inter", Sans-serif;
}
.custom-contact-form input[type="submit"]:hover,
.custom-contact-form .wpcf7-submit:hover {
  background: #a91e1e;
}

/* Fix CF7 submit wrapper */
.custom-contact-form .wpcf7-submit {
  -webkit-appearance: none;
  appearance: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-group {
    margin-bottom: 15px;
  }
}