.elementor-45 .elementor-element.elementor-element-39f694d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:30px;--margin-bottom:33px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:14px;--padding-left:10px;--padding-right:10px;overflow:visible;}.elementor-45 .elementor-element.elementor-element-be6e661{text-align:center;}.elementor-45 .elementor-element.elementor-element-be6e661 .elementor-heading-title{color:#D9AC64;}.elementor-45 .elementor-element.elementor-element-5fc3885{margin:-7px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 30px 0px 30px;text-align:center;}.elementor-45 .elementor-element.elementor-element-5fc3885 .elementor-heading-title{font-size:22px;}.elementor-45 .elementor-element.elementor-element-fc08b3b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:15px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-45 .elementor-element.elementor-element-1ce64e2{padding:0px 20px 0px 20px;}@media(min-width:768px){.elementor-45 .elementor-element.elementor-element-39f694d{--content-width:1024px;}}/* Start custom CSS for container, class: .elementor-element-39f694d *//* === PRODUCT GRID CONTAINER === */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  list-style: none;
}

/* === PRODUCT CARD === */
.woocommerce ul.products li.product {
  background: #fff;
  border: 3px solid #DAA520;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
  height: 360px;
  position: relative;
}

/* === IMAGE === */
.woocommerce ul.products li.product img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
}

/* === TITLE === */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  margin: 8px 0 4px;
  padding: 10px;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* === PRICE HIDE === */
.woocommerce ul.products li.product .price {
  display: none !important;
}

/* === RATING === */
.woocommerce ul.products li.product .star-rating {
  display: block !important;
  margin: 4px 0 0 10px;
}

/* === HIDE DEFAULT ADD TO CART BUTTON === */
.woocommerce ul.products li.product .button {
  display: none !important;
}

/* === HOVER EFFECT === */
.woocommerce ul.products li.product:hover {
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.8);
  transform: scale(1.02);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 8px;
  }

  .woocommerce ul.products li.product {
    height: 300px;
  }

  .woocommerce ul.products li.product img {
    height: 180px;
  }

  .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 14px;
    padding-left: 8px;
  }
}/* End custom CSS */