/* ===== Desktop: scroll-hijack fullscreen ===== */
.baixiu_commerce_intro {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  overflow: hidden;
}

.baixiu_commerce_intro .intro-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  gap: var(--gap-24);
  padding: calc(80px + 1.5rem) var(--gap-100) var(--component-gap);
}

.baixiu_commerce_intro .intro-left {
  position: relative;
  width: 32.5%;
  height: 100%;
  flex-shrink: 0;
}

.baixiu_commerce_intro .intro-text-panel {
  position: absolute;
  inset: 0;
  background: #0137B5;
  border-radius: 1.25rem;
  padding: 2.5rem 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.baixiu_commerce_intro .intro-text-panel.active {
  opacity: 1;
  visibility: visible;
}

.baixiu_commerce_intro .panel-title {
  text-align: center;
}

.baixiu_commerce_intro .panel-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.baixiu_commerce_intro .detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.baixiu_commerce_intro .detail-title {
  margin: 0;
}

.baixiu_commerce_intro .detail-desc {
  margin: 0;
}

.baixiu_commerce_intro .panel-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.baixiu_commerce_intro .page-current {
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--font-80);
  font-weight: 700;
  line-height: 1.225;
}

.baixiu_commerce_intro .page-divider {
  width: 1px;
  height: 3.75rem;
  margin: 0 1rem;
  background: #fff;
  transform: rotate(20deg);
}

.baixiu_commerce_intro .page-total {
  margin-top: 8%;
}

.baixiu_commerce_intro .intro-right {
  position: relative;
  width: 67.5%;
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
}

.baixiu_commerce_intro .intro-img-panel {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  z-index: 0;
}

.baixiu_commerce_intro .intro-img-panel.active {
  transform: translateY(0);
}

.baixiu_commerce_intro .intro-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1500px) {
  .baixiu_commerce_intro .intro-left {
    width: 45%;
  }
}

/* ===== Mobile view ===== */
.baixiu_commerce_intro .mobile-view {
  display: none;
}

@media screen and (max-width: 1024px) {
  .baixiu_commerce_intro_wrapper {
    height: auto !important;
  }

  .baixiu_commerce_intro {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .baixiu_commerce_intro .intro-wrapper {
    display: none;
  }

  .baixiu_commerce_intro .mobile-view {
    display: block;
    padding: 0 1.5rem var(--component-gap);
  }

  .baixiu_commerce_intro .mobile-slide-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1.25rem;
    overflow: hidden;
  }

  .baixiu_commerce_intro .mobile-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .baixiu_commerce_intro .mobile-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .baixiu_commerce_intro .mobile-slide-text {
    background: #0137B5;
    border-radius: 1.25rem;
    padding: 2rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
  }

  .baixiu_commerce_intro .mobile-dots {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    margin-top: auto;
  }

  .baixiu_commerce_intro .mobile-dots .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .baixiu_commerce_intro .mobile-dots .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #E5E6E9;
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease;
  }

  .baixiu_commerce_intro .mobile-dots .swiper-pagination-bullet-active {
    width: 2rem;
    border-radius: 0.25rem;
    background: var(--color-primary);
  }
}