html { scroll-behavior: smooth; }
      * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

/* google font */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500&family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

body {
  font-family: Arial, sans-serif;
  background-color: #f3dfc4;
}

/* 隱藏大法 */
h1, .hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.header {
  background-color: #fff;
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  position: relative; /* 可改成 fixed 看需求 */
}

.header-logo {
  width: 150px;
  height: auto;
}

.header-home {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
  transition: color 0.3s;
}

.header-home:hover {
  color: #888;
}


/* 最右邊的浮動按鈕 */

.floating-list-link {
  position: fixed;
  display: none; /* 一開始不顯示 */
  right: 30px;
  bottom:250px;
  z-index: 1100;
  background-color: #8a8a8a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 10px;
}
.floating-list-link:hover {
  background-color: #74375c;
  transform: scale(1.07);
}
.floating-list-link:nth-of-type(2) {
  bottom: 140px;
  background-color: #aa4141;
}

/* 蕙 主視覺設定開始 */

.main-visual-wrapper {
  position: relative;
  text-align: center;
}

/* 淡入下滑動畫 */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 動畫套用 */
.main-visual-wrapper .EDMbox_animation,
.main-visual-wrapper .main-visual {
  opacity: 0; /* 預設透明 */
  animation: fadeInDown 0.8s ease forwards;
}

/* 第二個元素延遲出現 */
.main-visual-wrapper .main-visual {
  animation-delay: 0.3s;
}

/* 蕙 主視覺設定結束 */

.section.visual {
    width: 100%;
    background-size: contain;
}
.visual {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.visual.show {
  opacity: 1;
  transform: translateY(0);
}

.section.content {
  padding: 40px;
}

.section { padding: 20px; }
.section p {
  font-size: 1.2rem;
  line-height: 2.5rem;
  color: #333;
  margin: 10px 0;
}
.visual {
  height: 400px;
  /* background: url(2025Beaujolais/images/shutterstock_2002977014.svg) no-repeat center center; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.content {
  padding: 30px 20px;
  text-align: center;
}
.content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #aa4141;
}
.buttons {
  position: -webkit-sticky;
  position: sticky;
  top: env(safe-area-inset-top, 0);
  z-index: 999;
  background: #f3dfc4;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  opacity: 0.98;
}


.buttons button {
  padding: 8px 15px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border: none;
  background-color: #9b4e87;
  color: #fff;
  border-radius: 55px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}
.buttons button:hover {
  transform: scale(1.05);
  background-color: #fc64a0;
}

.card {
  position: relative;
  animation: fadeSlideIn 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }
.card:nth-child(5) { animation-delay: 0.4s; }
@keyframes fadeSlideIn {
  to { opacity: 1; transform: translateY(0); }
}
.card-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: visible;
}
.card img {
  width: 40%;
  height: 200px;
  object-fit: contain;
}
/* 裝飾空白用 */
.card-img-deckoration{
  width: auto;
  height: 250px;
  display: flex;
  justify-content: center; /* 水平置中 */
  align-items: center;     /* 垂直置中 */
  /* background-color: turquoise; */
  margin-top: 50px;
}
.card-img-deckoration_1{
  width: auto;
  height: 400px;
  display: flex;
  justify-content: center; /* 水平置中 */
  align-items: center;     /* 垂直置中 */
  /* background-color: turquoise; */
  margin-top: 50px;
}
.card-img-deckoration img{
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain; /* 避免圖片變形 */
  opacity: 0.8; /* 0～1之間，數值越小越淡 */
  filter: brightness(1) opacity(0.8); /* 調整亮度和透明度 */
}
.card-img-deckoration_1 img{
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain; /* 避免圖片變形 */
  opacity: 0.8; /* 0～1之間，數值越小越淡 */
  filter: brightness(1) opacity(0.8); /* 調整亮度和透明度 */
}

/* 手機版 */
@media (max-width: 768px) {
  .card-img-deckoration{
    display: none;
  }
  .card-img-deckoration_1{
    display: none;
  }
}
.card-body {
  padding: 50px 5px 15px;
  position: relative;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  text-align: center;
}

.card-title {
  position: absolute;
  top: -20px;
  left: -10px;
  background-color: #d4d4d4;
  padding: 5px 62px;
  font-weight: bold;
  font-size: 1.6rem;
  z-index: 1;
  border-top-right-radius: 10px;
  color: #171717;
  /* width: calc(100% - 20px); */
  box-sizing: border-box;
  text-align: left;
  letter-spacing: 2px;
  box-shadow: 0 2px 4px rgba(123, 123, 123, 0.2);
}

.card-img-wrapper {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-title span {
  font-size: 1.7rem;
  color: #872828;
}
.card p { margin-top: 20px; }

.card p.card-price {
  font-size: 1.4rem;
  color: #872828;
  font-weight: 400;
  margin-top: 10px;
}
.card p.card-gift {
  font-size: 1.2rem;
  color: #872828;
  margin-top: 10px;
  font-weight: 400;
}
.free{
  width: 100px;
  height: auto;
  margin: 3px auto 0;
  /* background-color: #56293f; */
}
.free img{
  width: 100%;
  height: auto;
  display: block;
}

.card-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #000000;
  padding: 5px 35px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  border-radius: 5px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
  animation: floatUpDown 1.6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}



/* 手機版 */
@media (max-width: 768px) {
  .visual {
    height: 200px;
    font-size: 1.8rem;
    text-align: center;
    padding: 20px;
  }
  .section.visual { height: 200px; }
  .content h2 { margin-top: -30px; }
  .buttons {
    display: flex;          /* 啟用彈性布局 */
    flex-wrap: wrap;        /* 多行換行 */
    justify-content: center; /* 水平置中 */
    gap: 5px;              /* 按鈕之間的間距 */
  }

  .buttons button {
    flex: 1 1 calc(30% - 10px); /* 每個按鈕大概佔三分之一 */
    max-width: 200px;          /* 避免太寬 */
  }
  /* .card-body {
    padding: 60px 10px 30px; 
  } */
  .card-title { font-size: 1.4rem; top: 5px; left: -8px; }
  .card { width: 100%; }

  .header-logo { width: 60%; }
  .floating-list-link {
    right: 16px;
    bottom: 70px;
    padding: 12px 20px;
    font-size: 16px;
  }
}
 


/* 注入：桌面三聯卡片網格（平板電腦兩聯，手機一聯） */
/* 桌面：3 欄均分 */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 100px 24px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  background-color: #fff;
  animation: fadeSlideIn 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
  width: 100%;
  margin: 0;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


/* 桌機：兩欄，第一張跨兩欄 */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px; /* row-gap 40px, column-gap 24px */
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cards > .card:first-child {
  grid-column: span 2; /* 第一張跨兩欄 */
}

/* 平板 + 手機：單欄 */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 40px 0;
    padding: 20px 12px;
  }
  .cards > .card:first-child {
    grid-column: auto; /* 回復單欄 */
  }
}


/* 調整第一張卡片標題位置和樣式 */

.cards > .card:first-child .card-title {
   display: flex;
   flex-direction: row;
   align-items: center;
   width: auto; 
  }

/* === Bottle strip (Card 1) - base === */
#card1 .bottle-strip{
  display:flex;
  align-items:flex-end;
  /* gap:2px; */
  margin:15px 0 10px 0;
  justify-content:center;
  /* background-color: #eeeeee; */
  border-radius: 20px;

 }

.bottle-strip a{
  display: block;   /* 避免下方出現空隙 */
  width: 100%;      /* 或保持原本 img 的設定 */
  height: auto;
  text-decoration:none;
}
.bottle-strip a:hover .bottle-strip_img{
  transform: scale(1.7);
  opacity: 1.0;
}
#card1 .bottle-strip_img{ 
  height:180px; 
}

@media (max-width: 768px){
  /* 禁止整個頁面橫向捲動 */
  html, body {
    overflow-x: hidden;
  }
  /* 手機板卡片寬度固定 */
  #card1 .card , #card1 .card-body{
    width: 100%;
    max-width: 100%;     /* 避免被內部元素撐大 */
    box-sizing: border-box; /* padding 算在寬度內 */
    overflow-x: hidden;  /* 防止內部溢出 */
  }

  /* 外層包裝器 */
  #card1 .card-body {
    width: 100%;
    padding: 60px 12px; /* 左右多留適度內縮，避免酒瓶撐出 手機更安全 */
    box-sizing: border-box;
    overflow-x: hidden;
  }
  #card1 .bottle-strip-wrap {
    width: 100%;
    position: relative;
    overflow: hidden; /* 只允許瓶子本身滑動 包裝層不允許橫向捲動 */
    padding: 0 6px; /* padding 放在包裝器 */
    box-sizing: border-box;
  }

  #card1 .bottle-strip {
    display: flex;
    overflow-x: auto;/* 只有這裡可以橫向捲動 */
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    gap: 2px;                  /* 瓶子之間間距 */
    padding: 0;
    margin: 0;
  }
  #card1 .bottle-strip::-webkit-scrollbar { display: none; }

  #card1 .bottle-strip a {
    flex: 0 0 40%;   /* 一次顯示大約 2.5 個瓶子 */
    max-width: 40%;
    display: flex;              /* 用 flex 讓圖垂直置中 */
    align-items: flex-end;      /* 瓶底對齊 */
    justify-content: center;
    text-decoration: none;
    scroll-snap-align: start;
  }
  #card1, #card1 * {
  max-width: 100% !important;
  box-sizing: border-box;
  }

  /* 在最後一個 a 後加一個隱形 spacer，讓最後一瓶完整露出 */
  #card1 .bottle-strip a:last-child::after {
    content: '';
    flex: 0 0 8px; /* 固定小寬度即可，不要整半瓶寬 */
  }

  #card1 .bottle-strip_img {
    height: 180px;              /* 固定瓶子高度（可調整 160～200px） */
    width: auto;                /* 寬度自動，避免變形 */
    object-fit: contain;
    object-position: center bottom;
    /* transform: scale(1.0);      保持正常比例，必要時微調 */
    transform-origin: center bottom;
    transition: transform .25s ease, opacity .25s ease;
    opacity: .95;
    display: block;
  }
  /* 左右漸層遮罩 */
  #card1 .bottle-strip-wrap::before,
  #card1 .bottle-strip-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    pointer-events: none;
    z-index: 1;
  }
  #card1 .bottle-strip-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
  }
  #card1 .bottle-strip-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
  }
}




/* === Sticky Fallback (only activates via JS when needed) === */
.buttons--fixed {
  position: fixed !important;
  top: env(safe-area-inset-top, 0);
  left: 0; right: 0;
  z-index: 1300;
  background: #f3dfc4; /* 同原生貼頂時的底色 */
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* 預留高度，避免切換 fixed 時版面跳動 */
#buttons-placeholder { height: var(--buttons-h, 0px); }

/* 提示：避免任何祖先使用 transform/filter/perspective/backdrop-filter 或 overflow 造成 sticky 失效 */

/* === Promo Hero (responsive) === */
:root{
  --promo-bg:#FFF6E6;
  --promo-ink:#6E5A49;
  --promo-strong:#6E5A49;
  --promo-accent:#DB6A3B;
  --promo-accent-2:#F7B14B;
  --promo-accent-3:#6DC9A7;
}
/* 規則卡 */
.promo-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at bottom left,
                rgba(215, 173, 23, 0.25), 
                transparent 40%),
              radial-gradient(ellipse at bottom right,
                rgba(194, 224, 46, 0.25), 
                transparent 25%),
              linear-gradient(180deg, #FFF, #FFF6E6);
  border-radius: 14px;
  margin: 20px 16px 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.promo-hero__container{
  position: relative;
  z-index: 1;
  padding: 20px 18px 18px;
}
.promo-hero__title{
  margin: 0 0 12px 0;
  color: var(--promo-ink);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  font-size: clamp(20px, 5.5vw, 40px);
}
.promo-hero__bullets{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.promo-hero__bullets li{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--promo-ink);
  line-height: 1.65;
  font-size: clamp(14px, 3.5vw, 18px);
}
.promo-hero__bullets .num{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFF;
  color: var(--promo-strong);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: clamp(16px, 4.2vw, 22px);
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.promo-hero__bullets .text strong{
  color: var(--promo-strong);
}
.promo-hero__bullets .note{
  color: #9d8f84;
  font-size: .9em;
}
.note{
  color: #56293f;
  font-size: .9em;
}

.promo-hero__bottom{
  margin-top: 22px;
  text-align: center;
  color: var(--promo-ink);
}
.promo-hero__slogan{
  margin: 8px 0 2px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  font-size: clamp(22px, 6.5vw, 42px);
}
.promo-hero__deal{
  margin: 4px 0 0;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: clamp(18px, 5.8vw, 34px);
}
.promo-hero__deal .accent{
  color: var(--promo-accent);
  font-size: 1.25em;
}


/* 規則卡 桌面佈局：兩列 */
@media (min-width: 960px){
  .promo-hero{ margin: 28px auto 12px; max-width: 1200px; border-radius: 18px; }
  .promo-hero__container{ padding: 32px 40px 26px; }
  .promo-hero__top{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 12px 28px;
    align-items: start;
  }
  .promo-hero__bottom{ grid-column: 1 / -1; }
}

/* ---------------------------------------
為第一張卡片按鈕注入特別樣式
 */
#card1 .card-button {
  width: 50%;
  margin: 20px auto 0;
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  background-image: linear-gradient(45deg, #ead852, #ff9e80);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 12px 24px;
  box-shadow: 0 4px 8px rgba(255, 200, 150, 0.3);
  border: none;       /* 移除預設邊框 */
  outline: none;      /* 移除聚焦黑框 */
}

#card1 .card-button:hover {
  background-image: linear-gradient(45deg, #ff8a80, #ffb74d);
}

#card1 .card-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 200, 150, 0.4); /* 淡淡光暈取代黑框 */
}


/* === 2-5 張卡牌的組合佈局 === */
.combo{ padding: clamp(14px, 2.6vw, 22px); }
.combo__header{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; /* 可選：讓標題和按鈕垂直對齊 */
  gap: 10px;           /* 可選：標題和按鈕之間加一點距離 */
  margin-bottom: 12px;
}
/* 原價 */
.orig{
  color: #9b8f86;
  text-decoration: line-through;
  font-weight: 400;
  font-size: clamp(12px, 2.8vw, 14px);
}
.combo__price .now{
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #be3131;
  font-weight: 900;
}
.combo__price .now .label{ font-size: clamp(16px, 3.6vw, 20px); letter-spacing: .04em; }
.combo__price .now .amount{ font-size: clamp(32px, 7.5vw, 46px); letter-spacing: .02em; }
.combo__cta{
  appearance: none; border: none; cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  background: #F5D766; color: #3A2A12; font-weight: 900;
  box-shadow: 0 3px 0 rgba(0,0,0,.2);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
  font-size: 1.4rem;
}
.combo__cta:hover{ transform: translateY(-1px); box-shadow:0 5px 0 rgba(0,0,0,.2); }
.combo__cta:active{ transform: translateY(1px); box-shadow:0 2px 0 rgba(0,0,0,.2); }

/* Items */
.combo__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* 橫向排列 */
.combo__items--row {
  flex-direction: row;
  flex-wrap: wrap; /* 允許換行 */
  gap: 15px;       /* 行間距和列間距 */
}
/* 修改文字區太小問題開始 */
/* 每個卡片 */
.combo-item {
  display: flex;
  flex-direction: column; /* 上下排列 */
  background: #faefcf;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  padding: 14px;
}

/* 上半部的內容（圖片 + 文字）橫排 */
.combo-item > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 10px; /* 與按鈕間距 */
}

/* 左圖右文 */
.combo-item .thumb img {
  display: block;
  width: 80px;
  height: auto;
  border-radius: 8px;
}

/* 右側文字區 */
.combo-item .meta {
  flex: 1;
}

/* 下方按鈕 */
.combo-item .item-cta {
  align-self: flex-end; /* 讓按鈕靠右，也可改成 center */
  background: #b20000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.combo-item .item-cta:hover {
  background: #d00000;
}

/* 修改文字區太小問題結束 */

.combo-item a{
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
.combo-item .thumb{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #f6e9d7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.combo-item .thumb img{ width: 100%; height: 100%; object-fit: cover; }
.combo-item .meta{ display: grid; gap: 4px; }
.combo-item .meta .num{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #8B2652;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 4px;
}
.combo-item h3{ margin: 0; font-size: clamp(16px, 3.5vw, 20px); color: #3a2a12; }
.combo-item p{ margin: 0; color: #6b5e55; font-size: clamp(12px, 2.9vw, 14px); }
.combo-item .price{ display: flex; flex-direction: column; gap: 2px; margin-top: 4px; }
.combo-item .price .orig{ color: #9b8f86; text-decoration: line-through; font-weight: 400; font-size: clamp(12px,2.8vw,13px); }
.combo-item .price .now{ color: #a82828; font-weight: 900; }
.combo-item .price .now .label{ margin-right: 4px; }
.combo-item .item-cta{
  appearance: none; border: none; cursor: pointer;
  padding: 8px 12px; border-radius: 8px;
  background: #343a40; color: #fff; font-weight: 400;
  box-shadow: 0 2px 0 rgba(0,0,0,.25);
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
  font-size: clamp(14px, 3vw, 16px);
}
.combo-item .item-cta:hover{ transform: translateY(-1px); background:#222; }
.combo-item .item-cta:active{ transform: translateY(1px); }

.combo__price .orig span,
.combo__price .now .amount,
.combo-item .price .orig span,
.combo-item .price .now .amount {
  font-variant-numeric: tabular-nums;
  /* 數字字型的對齊 */
}

/* 左對齊 */
.combo-item .meta,
.combo-item h3,
.combo-item p,
.combo-item .price {
  text-align: left;
}
.meta p{
  line-height: 1.2rem;
}

/* 手機*/
@media (max-width: 768px){
  .combo__header{ grid-template-columns: 1fr;
    justify-items:center;
    text-align:center;
    gap: 8px;
  }
  .combo__cta{
  display: block;
  width: 100%;
  padding: 14px 18px;
  font-size: 18px;
  min-height: 48px;
  box-shadow: 0 3px 6px rgba(0,0,0,.2);
  border-radius: 999px;
  }

  .combo-item{
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
    }
  .combo-item a{
    grid-template-columns: 1fr;
    text-align: left; 
    padding: 12px 16px;}
  .combo__items{ gap: 14px; }
  
  .combo-item .item-cta{
    width: 95%;
    margin: auto;
    text-align: center;
    padding: 12px 18px;
    font-size: 18px;
    min-height: 48px;
    border-radius: 12px;
    margin-top: 5px;
    margin-bottom: 15px;

  }

  .combo-item .meta h3 { font-size: 18px; }
  .combo-item .meta p { font-size: 16px; }
  .combo-item .price .now .amount { font-size: 20px; }
}


@media (min-width: 1025px){
  .cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .cards > .card {
    width: 100%;
    margin: 0;
  }
  .cards > .card:first-child {
    grid-column: span 2; /* 同樣效果，語法更直覺 */
  }
}


/* 確保組合部分是定位上下文 */
/* Ensure the combo section is a positioning context */
.cards .card .combo{
  position: relative;
  overflow: visible;
}

/* 圓形徽章固定在右上角 */
.combo__tag{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -20%);
  width: clamp(20px, 9vw, 72px);
  /* 在不同裝置下大小會自動縮放最小 14px 最大 72px 主要用 9vw 作為伸縮依據 */
  height: clamp(20px, 9vw, 72px);
  padding: 0 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff70cd;
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  z-index: 5;
  pointer-events: none;/* avoid blocking the CTA below */
  /* font-size: 1.6rem; */
}
/* Optional: header grid cleanup if layout expected it */
.combo__header{
  grid-template-columns: 1fr auto !important;
}
/* 手機 */
@media (max-width: 768px){
  .combo__tag{
    transform: translate(20%, -22%);
    width: 50px;
    height: 50px;
    border-width: 3px;
    font-weight: 300;
  }
}


/* 版權宣告 */
.Copyright_Notice {
  margin: auto;
  background: #f6f6f6;
  color: #757575;
}

.Copyright_Notice p{
  max-width: 1100px;
  font-size: 0.8rem;
  line-height: 1.7;
  padding: 20px;
  margin: auto;
  text-align: left;
  margin-bottom: 50px; /* 預留空間給警語 */
}

/* 警語 */
.alcohol-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; 
  width: 100%;
  background-color: #000;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 1.4rem;
  z-index: 1000;
}

/* 之後可能可以使用 */
/* Card 2：整卡 10% 透明 完售使用*/
/* #card2 {
  opacity: .4 !important;
  } */
