.feature-slider {
  padding: 30px 10px;
  background: #fafafa;
}
.feature-slider .swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  padding: 18px 14px;
  text-align: center;
  transition: box-shadow 0.2s;
  width: 130px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.feature-card h3 {
  font-size: 0.8rem;
  padding: 0px;
  color: #333;
}

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

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

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

.swiper-button-next_img,
.swiper-button-prev_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(200,200,200,0.35); /* 透明淺灰 */
  border-radius: 8px;                  /* 長方形圓角 */
  width: 44px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.5em;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border: none;
  padding: 0 0 5px 0;
}

.swiper-button-next_img {
  right: 10px;
}

.swiper-button-prev_img {
  left: 10px;
}

.swiper-button-next_img::after {
  content: '›';
  font-size: 2em;
  color: #333;
  font-weight: bold;
  display: block;
}

.swiper-button-prev_img::after {
  content: '‹';
  font-size: 2em;
  color: #333;
  font-weight: bold;
  display: block;
}