.feature-slider {
  
  padding: 205px 0px;
  /*
  background-image: url('../images/benq/index_6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
  position: relative;
  min-height: 300px;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto !important;
  /* border: 1px solid red; */
}
.feature-slider .swiper-container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto !important;
  overflow: hidden;
  padding: 0 0px;
    /* border: 1px solid red; */
}
/* 確保輪播動畫速度一致，使用線性緩動 */
.feature-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.feature-slider .swiper-slide {
  transition-timing-function: linear !important;
}
.feature-card {
  background: transparent;
  /* border-radius: 0px; */
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
  overflow: hidden;
  text-align: center;
  /* backdrop-filter: blur(5px); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}
.feature-card img {
  width: 100%;
  height: auto;        /* 改為自動高度，保持原始比例 */
  object-fit: contain; /* 完整顯示圖片，不裁切 */
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  padding: 0px;
  color: #333;
}

.feature-card .price {
  margin-top: 0px;
  font-size: 1.1rem;
  color: #e60012; /* 你可以換成任何品牌色 */
}

/* 連結預設無底線 */
.feature-card a {
  text-decoration: none;
}

/* 滑鼠移上去才顯示底線 */
.feature-card a:hover {
  text-decoration: underline;
}

/* Swiper 導航按鈕樣式 */
.feature-slider .swiper-button-next,
.feature-slider .swiper-button-prev {
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #333;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.feature-slider .swiper-button-next:after,
.feature-slider .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.feature-slider .swiper-button-next:hover,
.feature-slider .swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

/* Swiper 分頁器樣式 */
.feature-slider .swiper-pagination {
  bottom: 140px !important;
}

.feature-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  width: 12px;
  height: 12px;
  border: 1px solid #333;
}

.feature-slider .swiper-pagination-bullet-active {
  background: white;
  border: none;
  transform: scale(1.2);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .feature-slider {
    max-width: 100%;
    margin-top:300px !important;
    /* margin: 0 auto !important; */
    padding: 120px 0;
    min-height: 300px;
    
  }
  
  .feature-slider .swiper-container {
    max-width: 100%;
    margin: 0 auto !important;
    padding: 0 0px;
  }
  
  .feature-card img {
    /* width: 200px; */
  }
  
  /* 手機版隱藏分頁器 */
  .feature-slider .swiper-pagination {
    display: none;
  }
}

@media (max-width: 480px) {
  .feature-slider {
    padding: 120px 0;
    margin-top:300px !important;
    /* margin: 0 auto !important; */
    min-height: 300px;
  }
  
  .feature-slider .swiper-container {
    padding: 0 0px;
    margin: 0 auto !important;
  }
  
  /* 手機版隱藏分頁器 */
  .feature-slider .swiper-pagination {
    display: none;
  }
  
  .feature-slider .swiper-button-next,
  .feature-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .feature-slider .swiper-button-next:after,
  .feature-slider .swiper-button-prev:after {
    font-size: 14px;
  }
}

/* Desktop Enhancement */
/* @media (min-width: 1200px) {
  .feature-slider {
    width: 1200px;
    max-width: 1200px;
  }
  
  .feature-slider .swiper-container {
    max-width: 1100px;
  }
} */