/* 首页广告区 #zjz-home-layout-zone
 * 内容轨仅限制 max-width 并居中，左右不加 padding。
 */
#zjz-home-layout-zone {
  width: 100%;
  box-sizing: border-box;
}

#zjz-home-layout-zone .zjz-pb-scroll-inner:not(.container-xl),
#zjz-home-layout-zone .product-grid {
  max-width: var(--zjz-home-content-max, 1200px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

#zjz-home-layout-zone .zjz-pb-scroll-inner.container-xl,
#zjz-home-layout-zone .container-xl {
  max-width: var(--zjz-home-content-max, 1440px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* 商品组件：悬停展示轮播第 1 张（卡片默认 thumb） */
.zjz-product-hover-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.zjz-product-hover-media .zjz-product-img-primary {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  transition: opacity 0.35s ease;
}

.zjz-product-hover-media .zjz-product-img-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.product-card:hover .zjz-product-hover-media.is-hover-swap .zjz-product-img-primary,
.product-card-link:hover .zjz-product-hover-media.is-hover-swap .zjz-product-img-primary,
.zjz-pb-scroll-card:hover .zjz-product-hover-media.is-hover-swap .zjz-product-img-primary,
.zjz-pb-scroll-card-media:hover .zjz-product-hover-media.is-hover-swap .zjz-product-img-primary {
  opacity: 0;
}

.product-card:hover .zjz-product-hover-media .zjz-product-img-hover,
.product-card-link:hover .zjz-product-hover-media .zjz-product-img-hover,
.zjz-pb-scroll-card:hover .zjz-product-hover-media .zjz-product-img-hover,
.zjz-pb-scroll-card-media:hover .zjz-product-hover-media .zjz-product-img-hover {
  opacity: 1;
}
