/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/
 Description:  Child theme for the Hello Elementor
 Author:       Developer
 Template:     hello-elementor
Text Domain: hello-elementor-child
 Version:      1.0.0
*/
.ehf-header #masthead {
    z-index: 99;
    position: absolute;
    width: 100%;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.product-btn {
    display: inline-block;
    background: #EFA286;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    border-radius: 5px 5px 5px 5px;
    padding: 10px 15px 10px 15px;
}

.product-btn:hover {
    background: #EFA286;
    color: #fff;
}
.products-archive.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.products-layout {
  display: flex;
  gap: 30px;
}

/* Sidebar */

.products-sidebar h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}
.products-sidebar ul {
  list-style: none;
  padding: 0;
}
.products-sidebar ul li {
  margin-bottom: 0;
  padding: 15px 24px 15px 0px;
}
.products-sidebar ul li a {
  font-family: 'Poppins', sans-serif;
  color: #666;
  font-size: 16px;
  text-decoration: none;
}
.products-sidebar ul li a:hover {
  color: #ff6f61;
}

/* Product grid */
.products-page-grid {
    width: 80%;
}

.products-page-grid .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

aside.products-sidebar {
    width: 20%;
}
.products-grid {
  flex: 3;
}
.products-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.product-card {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-content {
  padding: 15px;
}
.product-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: bold;
}
.product-content h4 a{
	font-family: 'Poppins', sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.product-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}



/* Pagination styling */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

/* Active page */
.pagination .page-numbers.current {
  background: #f8a68b; /* your peach color */
  color: #fff;
  border-color: #f8a68b;
}

/* Previous/next arrows */
.pagination .prev,
.pagination .next {
  font-size: 16px;
  padding: 10px 15px;
}

.masonry-gallery div#gallery-1 {
    column-count: 3; /* number of columns */
    column-gap: 15px;
}

.masonry-gallery figure.gallery-item {
    display: inline-block;
    margin: 10px !important;
    width: 100%;
    max-width: 100% !important;
}

/* single product page */
.single-product-page {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

.product-main {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.product-image img {
  max-width: 100%;
  border-radius: 10px;
}

.product-info {
  width: 50%;
}

.product-title {
  font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #EFA286;
    margin-bottom: 0px;
    font-weight: 600;
	display: none;
}

.product-meta ul {
    list-style: none;
    padding: 0;
}
.btn-quote {
  display: inline-block;
  background: #EFA286;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border-radius: 5px 5px 5px 5px;
  padding: 10px 15px 10px 15px;
}
.btn-quote:hover {
  background: #EFA286;
  color:#fff;
}

.product-description {
  margin-top: 50px;
} 

.related-products .products-grid {
  display: flex;
  gap: 20px;
}

.related-item {
  flex: 1;
  border: 1px solid #cfcfcf;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding-bottom: 15px;
}
.related-item img {
  width: 100%;
  height: 371px;
  object-fit: cover;
  border-radius: 10px;
}
.product-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-gallery .gallery-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  background-color: #F7F7F7;
}
.product-meta {
    margin: 0 0 20px;
}
.product-gallery .gallery-item img:hover {
  border-color: #f26522;
}
.top-sec {
    display: flex;
    gap: 20px;
}

.left-img-sec {
    width: 50%;
}
ul.desc-title {
    padding-left: 15px;
    color: #efa286;
    font-size: 20px;
	line-height: 20px;
    font-weight: 500;
    margin-top: 20px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.related-products {
    margin: 50px 0 0;
}
form.wpcf7-form.init {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

.half-width {
    width: 49%;
}

.full-width {
    width: 100%;
}
.wpcf7-form.init .wpcf7-form-control {
    border: 1px solid #cfcfcf;
    border-radius:7px; 
}
.wpcf7-form.init label{
    color:#222;
    padding: 0 0 10px;
    font-weight:500;
    text-transform:capitalize; 
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #FAA432;
    color: #fff;
    border-radius: 100px;
    border-color: #FAA432;
}
.products-sidebar ul {
    list-style: none;
    padding-left: 0;
}

.products-sidebar li {
    margin: 6px 0;
    position: relative;
}

.products-sidebar .toggle-icon {
    right: 0;
    top: 15px;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    color: #fff;
    background: #efa286;
    display: flex;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 20px;
    line-height: 20px;
    padding: 0;
}


span.toggle-icon {
    padding: 10px;
    font-size: 20px;
}

ul.child-list {
    padding: 0 0 0 10px;
}

.category-list li {
    border-bottom: 1px solid #cfcfcf;
}

.products-sidebar ul li:last-child {
    border: 0;
}
.quote-popup,.touch-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.quote-popup-content,.touch-popup-content {
    background: #fff;
    max-width: 70%;
    margin: 5% auto;
    padding: 25px;
    border-radius: 10px;
    position: relative;
}

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

.quote-btn,.touch-btn {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
}

.quote-btn:hover,.touch-btn:hover {
    background-color: #005bb5;
}

@media (max-width:991px){
  .ets-testimonial-content {
      padding: 0 20px;
  }
  .home div#gallery-1,.page-id-196 div#gallery-1{
      display: flex;
  }
  .ets-slider-nav{
      margin-top: 50px;
  }
  .home img.attachment-medium.size-medium,.page-id-196 img.attachment-medium.size-medium{
      width: 80%;
  }
  .swiper-button-prev::after, .swiper-button-next::after{
    font-size:10px;
  }
  .swiper-button-prev, .swiper-button-next{
    width:30px;
    height:30px;
  }
}
@media (max-width: 767px){
  .products-page-grid .grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-layout {
      display: block;
  }
  aside.products-sidebar {
      width: 100%;
  }
  .products-page-grid {
      width: 100%;
  }
  .archive .elementor-widget-image {
      text-align: center;
  }
  .archive .elementor-7 .elementor-element.elementor-element-3030730 img {
      width: 35%;
      margin: 0 0 10px;
  }
  .top-sec,.related-products .products-grid {
      display: block;
  }
  .left-img-sec,.product-info,.half-width {
      width: 100%;
  }
}

.main-image {
    background-color: #f7f7f7;
    border-radius: 10px;
}
.product-info .product-title{
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 600;
    font-size: 28px;
    line-height: normal;
    margin-bottom: 5px;
    text-transform: uppercase;
    margin-top: 0px !important;
}
.product-meta p{
    margin-bottom: 5px !important;
	box-sizing: border-box;
	margin-top: 0px;
	font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
}
.product-meta p span{
  font-family: 'Poppins', sans-serif;
  color: #000 !important;
  font-weight: 500 !important;
  font-size: 20px;
  line-height: normal;
}
.product-meta ul{
  list-style: disc;
	box-sizing: border-box;
    padding-left: 20px;
    margin-top: 0px;
    margin-bottom: 1rem;
    color: #555b56;
    font-family: Roboto;
}
.product-meta ul li{
  font-family: 'Poppins', sans-serif;
  color: #666;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  padding-bottom: 10px;
}
.product-meta ul li p{
  font-family: 'Poppins', sans-serif;
  color: #666;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 0px !important;
}
.product-description p{
  font-family: 'Poppins', sans-serif;
  color: #666;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 10px !important;
}
.product-description p strong{
  color: #000;
  font-size: 18px;
  font-weight: 400 !important;
}
.product-description ul{
  margin-bottom: 15px;
}
.single-product-page .top-sec{
  gap: 40px;
}

.related-products ul.desc-title{
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}
.related-products h2{
  font-family: "Poppins", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  margin-top: 0;
}
.related-item h5{
  font-family: 'Poppins', sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
ul.hfe-breadcrumbs{
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
}
.main-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-description .desc-title{
	background-color: #efa286;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
}
.product-description .desc-title li{
	list-style: none;
}
.elementor-7 .elementor-element.elementor-element-a3f176d .sub-menu a.hfe-sub-menu-item, .elementor-7 .elementor-element.elementor-element-a3f176d nav.hfe-dropdown li a.hfe-menu-item, .elementor-7 .elementor-element.elementor-element-a3f176d nav.hfe-dropdown li a.hfe-sub-menu-item, .elementor-7 .elementor-element.elementor-element-a3f176d nav.hfe-dropdown-expandible li a.hfe-menu-item, .elementor-7 .elementor-element.elementor-element-a3f176d nav.hfe-dropdown-expandible li a.hfe-sub-menu-item {
	font-size: 16px;
	line-height: 24px;
	padding: 10px 20px;
}