



.promo-box-narrow {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 320px;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  /* 移除這幾行 ↓↓↓ */
  /* background-color: transparent;
     border: 1px solid #bbb;
     border-radius: 12px;
     padding: 16px; */
}

.promo-box-narrow p {
  margin-bottom: 6px;
}

.promo-box-narrow strong {
  color: #ffc107;
}



.product-scroll-container-wrapper {
  position: relative;
}

.product-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.product-scroll-wrapper {
  display: flex;
  gap: 16px;
  padding-bottom: 10px;
  min-width: max-content;
}



.product-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

/* 左右箭頭樣式（桌機用） */
.scroll-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  width: 48px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0; /* 取消圓角，讓它看起來更像側邊掀開的控制 */
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.scroll-left {
  left: 0;
}

.scroll-right {
  right: 0;
}

/* 手機最佳化 */
@media (max-width: 576px) {
  .scroll-btn {
    display: none;
  }

  .product-card {
    width: 160px;
  }

  .product-card img {
    height: 160px;
  }
}
