.elementor-4872 .elementor-element.elementor-element-0241fbd{--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;}/* Start custom CSS for html, class: .elementor-element-9a56fe5 */.custom-product-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* 网格间距 */
}

.custom-product-categories-grid .product-category {
  width: calc(100% / 5 - 20px); /* 五列 */
  text-align: center;
}

.custom-product-categories-grid .product-category img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.custom-product-categories-grid .product-category h2 {
  font-size: 16px;
  margin: 0;
}

/* 平板设备：三列 */
@media (max-width: 1024px) {
  .custom-product-categories-grid .product-category {
    width: calc(100% / 3 - 15px);
  }
}

/* 手机设备：两列 */
@media (max-width: 768px) {
  .custom-product-categories-grid .product-category {
    width: calc(100% / 2 - 10px);
  }
}/* End custom CSS */