.elementor-kit-125{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-125 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Ensure product items are evenly aligned */
ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px; /* Adjust spacing */
}

/* Force consistent product box height */
ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22%; /* Adjust as per columns */
  min-height: 400px;
  box-sizing: border-box;
}

/* Consistent image size */
ul.products li.product img {
  height: 220px; /* Force fixed image height */
  object-fit: contain;
  width: 100%;
}

/* Clamp title text to 2 lines */
ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

/* Price and rating spacing */
ul.products li.product .price,
ul.products li.product .star-rating {
  margin-top: auto;
}
/* Container for the category grid */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

/* Individual category boxes */
.category-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 23%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

/* Category images */
.category-box img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

/* Category titles */
.category-box h3 {
  font-size: 18px;
  margin: 10px 0;
  flex-grow: 1;
}

/* 'Shop All' buttons */
.category-box a {
  margin-top: auto;
  padding: 10px 20px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.category-box a:hover {
  background-color: #e65c00;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .category-box {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .category-box {
    width: 100%;
  }
}/* End custom CSS */