.custom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--color-background));
}

.custom-section__content {
  margin-top: var(--m-margin-top);
  margin-left: var(--m-margin-left);
  margin-bottom: var(--m-margin-bottom);
  margin-right: var(--m-margin-right);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.custom-section__content .group{
    margin-top: var(--m-margin-top);
    margin-left: var(--m-margin-left);
    margin-bottom: var(--m-margin-bottom);
    margin-right: var(--m-margin-right);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.custom-section .block-heading,
.custom-section .subheading {
  width: 100%;
}

.custom-section .custom-html-block {
  background-color: rgb(var(--color-background));
}

.custom-section .subheading,
.custom-section .rte {
  word-break: break-word;
}

/* .custom-section .product-card {
  flex: 1;
} */

.custom-section[data-border-top="false"] {
  border-top-style: none;
  border-top-width: 0px;
}
.custom-section[data-border-top="true"] {
  border-top-style: solid;
  border-top-width: 1px;
  border-color:var(--border-color);
}
.custom-section[data-border-bottom="false"] {
  border-bottom-style: none;
  border-bottom-width: 0px;
}
.custom-section[data-border-bottom="true"] {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color:var(--border-color);
}

@media (min-width: 992px) {
    .custom-section__content {
      margin-top: var(--pc-margin-top);
      margin-left: var(--pc-margin-left);
      margin-bottom: var(--pc-margin-bottom);
      margin-right: var(--pc-margin-right);
    }

    .custom-section__content .group{
      margin-top: var(--pc-margin-top);
      margin-left: var(--pc-margin-left);
      margin-bottom: var(--pc-margin-bottom);
      margin-right: var(--pc-margin-right);
    }
}

.custom-section .product-card.qd-custom-product-card:has(.block-product-card.unavailable:not([data-shopline-editor-block])) {
  display: none;
}

.custom-section [id|=shopline-block-template]:has(>.slideshow) {
  max-width: 100%;
}

.custom-section[data-auto-half-slider="true"] {
  position: relative;
}

/* 超过 4 个商品时开启横向滚动 */
.custom-section[data-auto-half-slider="true"] .custom-section__content:has(.product-card.qd-custom-product-card:nth-child(5)) {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  /* 隐藏滚动条 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.custom-section[data-auto-half-slider="true"] .custom-section__content:has(.product-card.qd-custom-product-card:nth-child(5))::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* 超过4个时，每个商品展示 4.5 个 */
.custom-section[data-auto-half-slider="true"] .custom-section__content:has(.product-card.qd-custom-product-card:nth-child(5))
  .product-card.qd-custom-product-card {
  flex: 0 0 22.22%;
  max-width: 22.22%;
  scroll-snap-align: start;
}

.qd-slider-btn {
  position: absolute;
  top: 0;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  z-index: 1;
}
.qd-slider-btn .arrow-icon{ 
  color: #fff;
}
.qd-slider-btn .arrow-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: rgba(0,0,0,0.25);
  /* filter: drop-shadow(0 4px 10px rgb(0 0 0 / 15%)); */
  border: 0;
  border-radius: 50%;
}
.qd-slider-btn[name="previous"] {
  left: 2%;
}
.qd-slider-btn[name="next"] {
  right: 2%;
}
.qd-slider-btn[name="previous"] .arrow-wrap {
  transform: rotate(90deg);
}
.qd-slider-btn[name="next"] .arrow-wrap {
  transform: rotate(-90deg);
}

@media (max-width: 959px) {
  .qd-slider-btns {
    inset-inline: auto 20px;
  }

  .qd-slider-btn svg {
    width: 10px;
    height: 10px;
  }
}