/* ===== 产品中心：Banner + 两列产品 ===== */

.zr-cat-page {
  background: #fff;
  color: #252b34;
}

.zr-cat-page .zr-cat-main {
  padding: 0 0 72px;
}

/* Banner：继续使用现有脚本加载的背景图 */
.zr-cat-page .zr-cat-top-hero-strip {
  width: 100%;
  margin: 0;
}

.zr-cat-page .zr-cat-top-hero-bg {
  width: 100%;
  height: clamp(240px, 25vw, 460px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 草图中没有的模块隐藏，保留节点供原脚本使用 */
.zr-cat-page .zr-cat-switcher,
.zr-cat-page .zr-cat-highlight-section,
.zr-cat-page .zr-cat-sub-category-section,
.zr-cat-page .zr-cat-section-head,
.zr-cat-page .zr-cat-scene-top-image-section,
.zr-cat-page .zr-cat-scenes-section {
  display: none !important;
}

/* 产品列表宽度和 Banner 下方留白 */
.zr-cat-page .zr-cat-products-section {
  width: 1200px;
  max-width: calc(100% - 64px);
  margin: 56px auto 0;
  padding: 0;
}

/* 桌面端固定两列 */
.zr-cat-page .zr-cat-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 40px;
  align-items: stretch;
}

/* 尊重原脚本的加载、空列表和分页状态 */
.zr-cat-page #zr-cat-product-grid[hidden],
.zr-cat-page #zr-cat-pagination[hidden] {
  display: none !important;
}

/* 每个产品：图片 + 居中名称 */
.zr-cat-page .zr-cat-product-card {
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.zr-cat-page .zr-cat-product-card:hover {
  transform: none;
  box-shadow: none;
}

.zr-cat-page .zr-cat-product-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}

.zr-cat-page .zr-cat-product-card > a:focus-visible {
  outline: 2px solid #3069b4;
  outline-offset: -2px;
}

/* 完整展示设备，不裁掉产品边缘 */
.zr-cat-page .zr-cat-product-thumb {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  background: #f7f8fa;
  border: 1px solid #e9edf2;
  border-radius: 6px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.zr-cat-page .zr-cat-product-card:hover .zr-cat-product-thumb {
  border-color: #aabedb;
}

.zr-cat-page .zr-cat-product-body {
  margin: 0;
  padding: 18px 12px 0;
  text-align: center;
}

.zr-cat-page .zr-cat-product-title {
  margin: 0;
  padding: 0;
  color: #252b34;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.zr-cat-page .zr-cat-product-card:hover .zr-cat-product-title {
  color: #3069b4;
}

/* 只显示产品名称，不显示文章摘要 */
.zr-cat-page .zr-cat-product-summary {
  display: none !important;
}

/* 保留原分页 */
.zr-cat-page .zr-cat-pagination {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 48px 0 0;
}

/* 平板仍然保持两列 */
@media (max-width: 900px) {
  .zr-cat-page .zr-cat-products-section {
    max-width: calc(100% - 40px);
    margin-top: 36px;
  }

  .zr-cat-page .zr-cat-product-grid {
    column-gap: 24px;
    row-gap: 30px;
  }

  .zr-cat-page .zr-cat-product-title {
    font-size: 18px;
  }
}

/* 手机改成一列，保证产品图和名称清晰 */
@media (max-width: 600px) {
  .zr-cat-page .zr-cat-main {
    padding-bottom: 44px;
  }

  .zr-cat-page .zr-cat-top-hero-bg {
    height: 190px;
  }

  .zr-cat-page .zr-cat-products-section {
    max-width: calc(100% - 32px);
    margin-top: 28px;
  }

  .zr-cat-page .zr-cat-product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .zr-cat-page .zr-cat-product-thumb {
    padding: 12px;
  }

  .zr-cat-page .zr-cat-product-body {
    padding-top: 12px;
  }

  .zr-cat-page .zr-cat-pagination {
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zr-cat-page .zr-cat-product-thumb,
  .zr-cat-page .zr-cat-product-title {
    transition: none;
  }
}