/* Sakete Hero Banner 组件样式 */

.sakete-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Swiper 容器 */
.sakete-hero-swiper-container {
  position: relative;
  width: 100%;
}

.sakete-hero-swiper {
  width: 100%;
  height: auto;
}

.sakete-hero-swiper .swiper-slide {
  width: 100%;
  height: auto;
}

.sakete-hero-mask-group {
  position: relative;
  width: 100%;
  height: 100%;
  /* height: 59.375rem; */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景图片容器 */
.sakete-hero-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* 渐变遮罩层 - 从黑色 35% 到 0% 透明度 */
.sakete-hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 100%
  ); */
  z-index: 2;
}

/* 内容区域 */
.sakete-hero-content {
  display: block;
  position: absolute;
  z-index: 3;
  width: 100%;
  padding: var(--spacing-9xl, 7.5rem) 0;
  pointer-events: none;
}

.sakete-hero-content .container {
  pointer-events: auto;
}

/* 主标题样式 */
.sakete-hero-title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h1, 3.75rem);
  font-weight: var(--font-weight-xl, 700);
  line-height: 140%;
  color: var(--text-color-light, #fff);
  text-align: left;
  max-width: 70%;
  margin-bottom: 1.5rem;
}

/* 按钮包装器 */
.sakete-hero-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translate(-50%,-50%);
  z-index: 2;
}

/* Contact Us 按钮样式 */
.sakete-hero-button {
}

.sakete-hero-button-text {
  display: inline-block;
}

/* 按钮图标 */
.sakete-hero-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-md);
  flex-shrink: 0;
}

/* Swiper 容器定位 */
.sakete-hero-swiper {
  position: relative;
}

/* 分页指示器样式 */
.sakete-hero-pagination {
  position: absolute;
  bottom: 3.13rem !important;
  left: 50%;
  z-index: 10;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md, 0.88rem);
}

.sakete-hero-pagination .swiper-pagination-bullet {
  width: max(2.5rem, 20px);
  height: 5px;
  background-color: rgba(255, 255, 255, 1);
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 !important;
  border-radius: 0px;
}

.sakete-hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: max(4.375rem, 36px);
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
  .sakete-hero-title {
    max-width: 100%;
  }

  .sakete-hero-mask-group {
    height: 100%;
  }
}

/* 响应式设计 - 手机 */
@media (max-width: 767.98px) {
  .sakete-hero-pagination {
    display: none;
  }
}

/* 小屏手机 */
@media (max-width: 576px) {

  .sakete-hero-button {
    padding: 0px 6px!important;
    font-size: 10px!important;
  }
}
