.baixiu_brand_process {
  padding: var(--component-gap) 0;
  background: var(--bg-color);
}

.baixiu_brand_process .section-header {
  text-align: center;
  margin-bottom: var(--gap-80);
}

.baixiu_brand_process .section-title {
  margin: 0;
}

.baixiu_brand_process .section-desc {
  margin-top: var(--gap-10);
}

.baixiu_brand_process .process-wrapper {
  position: relative;
}

.baixiu_brand_process .process-swiper {
  overflow: hidden;
}

.baixiu_brand_process .process-card {
  position: relative;
  width: 100%;
  aspect-ratio: 412/300;
  border-radius: 0.625rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: var(--gap-20);
  overflow: hidden;
}

.baixiu_brand_process .item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 70%, #222222 100%);
  pointer-events: none;
}

.baixiu_brand_process .item-title {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.baixiu_brand_process .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  gap: var(--gap-40);
  margin-top: var(--gap-40);
}

.baixiu_brand_process .swiper-button-prev,
.baixiu_brand_process .swiper-button-next {
  position: static;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.baixiu_brand_process .swiper-button-prev::after,
.baixiu_brand_process .swiper-button-next::after {
  display: none;
}

.baixiu_brand_process .swiper-button-prev {
  background: rgba(34, 34, 34, 0.2);
}

.baixiu_brand_process .swiper-button-next {
  background: #FD752A;
}

.baixiu_brand_process .swiper-button-prev:hover {
  background: rgba(34, 34, 34, 0.3);
}

.baixiu_brand_process .swiper-button-next:hover {
  background: #e66824;
}

.baixiu_brand_process .swiper-button-prev.swiper-button-disabled,
.baixiu_brand_process .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {

  .baixiu_brand_process .swiper-button-prev,
  .baixiu_brand_process .swiper-button-next {
    width: 3rem;
    height: 3rem;
  }

  .baixiu_brand_process .swiper-button-prev svg,
  .baixiu_brand_process .swiper-button-next svg {
    width: 0.875rem;
    height: auto;
  }
}