.elementor-kit-98{--e-global-color-primary:#2A9D8F;--e-global-color-secondary:#097C6E;--e-global-color-text:#000000A6;--e-global-color-accent:#2A9D8F;--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;background-color:#FFFFFF;}.elementor-kit-98 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}.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 *//* 卡片 */
.products .product {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.products .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

/* 图片 */
.products .product img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.products .product:hover img {
  transform: scale(1.05);
}

/* 标题（左对齐但更好看） */
.products .woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 2.8em;

  text-align: left;
  padding: 14px 14px 6px;
  margin: 0;
  color: #222;
}

/* 隐藏价格 */
.products .price {
  display: none;
}

/* 按钮（重点优化） */
.products .product .button {
  margin-top: auto;
  margin-left: 14px;
  margin-right: 14px;
  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #0b5ed7;
  color: #fff;
  font-size: 14px;
  font-weight: 500;

  padding: 10px 0;
  border-radius: 4px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* 箭头 */
.products .product .button::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* hover效果 */
.products .product:hover .button {
  background: #084298;
}

.products .product:hover .button::after {
  transform: translateX(4px);
}
.page .entry-title,
h1.entry-title {
    display: none;
}/* End custom CSS */