:root {
  --red: #8B261E;
  --red-dark: #5A1611;
  --gold: #C5A880;
  --gold-soft: #F0E6D2;
  --ink: #3A3232;
  --muted: #6A5F5E;
  --paper: #F4EFE6;
  --paper-light: #FAF6EE;
  --paper-deep: #EFE9DC;
  --line: #E2D9C8;
  --h1: clamp(1.7rem, 2.65vw, 2.85rem);
  --h2: clamp(1.38rem, 1.9vw, 1.95rem);
  --h3: clamp(1.06rem, 1.12vw, 1.2rem);
  --lead: clamp(1.06rem, 1.05vw, 1.1rem);
  --shadow: 0 14px 34px rgba(74, 62, 61, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img{max-width: 100%;display: block; height: auto;}
/* 全域一般文字預設為黑體 */

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans TC", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.8;
  background: linear-gradient(rgba(244, 239, 230, 0.92), rgba(244, 239, 230, 0.92)), url('../images/cloud-gold.webp') repeat;
  background-attachment: fixed;
}
@media (max-width: 576px){
    body { font-size: 16px;}
}

/* 導覽列與大標題指定使用明體/宋體 */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 100; background: #fff; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: all .35s ease;    border-top: 4px solid var(--gold); }
.site-header.scrolled {

  box-shadow: 0 4px 20px rgba(74, 62, 61, 0.04);
  padding: 6px 0;
}

.header-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: clamp(38px, 4.5vw, 46px);
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.2vw, 28px);
}
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
}
.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transition: all .28s ease;
  transform: translateX(-50%);
}
.nav-link:hover:after, .nav-link.active:after {
  width: 100%;
}

/* 按鈕樣式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 24px;
  font-family: "Noto Serif TC", serif; /* 按鈕改用明體 */
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all .28s ease;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: #fffdf7;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 38, 30, 0.2);
}
.btn-outline {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(255, 253, 247, 0.6);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--red);
  background: var(--paper-light);
}
.nav-right{gap:10px;display: flex;}
.nav-right .btn-primary {
  padding: 7px 18px;
  font-size: 13px;
}

.btn-fb { background: #ffffff; color: #1877f2; border: 1px solid #1877f2; }
.btn-fb:hover { background: #1877f2; color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(24, 119, 242, 0.15); }
.btn-line { background: #ffffff; color: #06c755; border: 1px solid #06c755; }
.btn-line:hover { background: #06c755; color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(6, 199, 85, 0.15); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
}
.menu-toggle svg { width: 26px; height: 26px; stroke: currentColor; stroke-width: 2.2; }


.hero-section {
  position: relative;
    padding: 4rem 24px;
  text-align: center;
  overflow: hidden;
background-image: url(../images/bgp02.jpg);
background-position:center;
background-size: cover;
}

.hero-title {
  font-family: "Noto Serif TC", serif; /* 大標題明體 */
  font-weight: 900;
  color: var(--ink);
  font-size: var(--h1);
  line-height: 1.35;
  margin: 0 auto 16px;
  max-width: 800px;
  letter-spacing: 1.5px;
}
.hero-title span { color: var(--red); }
.hero-lead {
  font-size: var(--lead);
  color: var(--muted);
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 576px){
.hero-section {
    padding: 3rem 20px 6rem;
    background-position: right;
    background-size:cover;
}
}
/* 區塊標題採用明體 */
.section { padding:3rem 24px; position: relative; }
.section.soft {background: linear-gradient(rgba(244, 239, 230, 0.1), rgba(244, 239, 230, 0.92)), url(../images/bgp03.jpeg) no-repeat;}
.container { max-width: 1140px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 {
  font-family: "Noto Serif TC", serif; /* 區塊標題明體 */
  font-weight: 800;
  font-size: var(--h2);
  color: var(--ink);
  margin: 0 0 12px;
}
.section-header h2:after {
  content: '';
  display: block;
  width: 45px;
  height: 2.5px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* 服務項目排版 */
.cards-5, .services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; } 
.cards-5 > *, .services-grid > * { flex: 0 1 calc(33.333% - 22px); } 

@media (max-width: 992px) 
{ .cards-5 > *, .services-grid > * { flex: 1 1 calc(50% - 22px); min-width: 240px;max-width: 240px; } } 
@media (max-width: 576px) { .cards-5 > *, .services-grid > * { flex: 1 1 100%; } }
.service-card {
  background: rgba(250, 246, 238, 0.7);
  border: 1px solid var(--line);
  padding: 32px 3% 24px;
  text-align: center;
  border-radius: 8px;
  transition: all .35s ease;
  box-shadow: var(--shadow);

}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
      background: rgba(255, 255, 255, 0.8);

  box-shadow: 0 20px 40px rgba(139, 38, 30, 0.05);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 0;
  display: grid;
  place-items: center;
  color: var(--red);
}

.service-card h3 {
  font-family: "Noto Serif TC", serif; /* 卡片標題明體 */
  color: var(--ink);
    font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 5px;
}
.service-card p {
  font-family: "Noto Sans TC", sans-serif; /* 卡片內容黑體 */
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
    text-align:justify;
}

.service-blessing {
  font-family: "Noto Serif TC", serif;
  font-size: 1.25rem;
  color: var(--red);
  text-align: center;
  margin: 40px 0 20px;
  font-weight: 700;
}

.notice-card {
  background-color:#3a3232a3;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
}
.notice-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 1px;
}
.notice-desc {
   color: #fff;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}
.notice-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.notice-phone {
  color: #f4efe6;
  margin: 0;
  font-size: 16px;
}
.notice-phone a {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px dashed var(--gold);
  transition: color 0.2s;
}
.notice-phone a:hover {
  color: #fff;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #06C755;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}
.btn-line:hover {
  background-color: #05b34c;
  transform: translateY(-2px);
}
.line-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}
@media (max-width: 576px) {
  .notice-card {
    padding: 20px 15px;
  }
  .notice-title {
    font-size: 18px;
  }
  .btn-line {
    width: 100%;
    box-sizing: border-box;
    font-size: 15px;
    padding: 10px 15px;
  }
}
@media (max-width: 576px) {
.service-card{    padding: 10px 20px;} }
}

/* 關於我們 */
.ab-section {
  padding: 80px 0;
}
.ab-bg-soft {
  background-color: var(--paper-light, #faf6f0);
}
.ab-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ab-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.ab-row.ab-reverse {
  flex-direction: row-reverse;
}

/* 左右 1:1 比例 */
.ab-col-text {
  flex: 1.1;
}
.ab-col-media {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 20px; /* 縮短圖片與下方附註的間距 */
}

/* 文字排版設定 */
.ab-title {
  font-size: 28px;
  color: var(--ink, #2b1f1d);
  margin: 0 0 25px 0;
  position: relative;
  padding-bottom: 12px;
}
.ab-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold, #b5a48c);
}
.ab-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a3e3d;
  margin: 0 0 20px 0;
  text-align: justify;
}
.ab-bless {
  font-weight: bold;
  color: var(--red, #e53935);
  margin-top: 25px;
}
.ab-btn {
  display: inline-block;
  background-color: var(--red, #e53935);
  color: #fff;
  padding: 12px 35px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s, transform 0.2s;
  margin-top: 10px;
}
.ab-btn:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
}

/* 圖片包覆區 */
.ab-img-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.ab-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 新增：雜誌風格附註說明（無底色、細緻側邊線、斜體文字） */
.ab-magazine-note {
  border-left: 2px solid var(--gold, #b5a48c)!important;
  padding: 5px 0 5px 15px!important;
  margin-top: 5px!important;
}
.ab-note-tag {
  display: block!important;
  font-size: 13px!important;
  text-transform: uppercase!important;
  letter-spacing: 1.5px!important;
  color: var(--gold, #b5a48c)!important;
  font-weight: bold!important;
  margin-bottom: 6px!important;
}
.ab-note-text {
  font-style: italic!important;
  font-size: 14.5px!important;
  line-height: 1.6;
  color: #7a6e6d!important;
  margin: 0;
  text-align: justify;
}
.ab-signature {
  text-align: right!important;
  margin-top: 30px;
  color: #4a3e3d;display: block;
}
.ab-sig-brand {
  font-size: 20px;
  font-weight: bold;
 color: var(--red);
  margin-right: 5px;
  letter-spacing: 0.5px;
}
@media (max-width: 576px) {
  .ab-sig-brand {
    font-size: 18px;
  }
}
/* 響應式優化 */
@media (max-width: 992px) {
  .ab-section {
    padding: 50px 0;
  }
  .ab-row, 
  .ab-row.ab-reverse {align-items: center;
    flex-direction: column;
    gap: 40px;
  }
  .ab-col-media {
    gap: 15px;
  }
  .ab-title {
    font-size: 24px;
  }
}
/* FAQ 常見問題 */
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 5px; }
.faq-item {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px 20px;
font-size: 1.1rem;letter-spacing: 1px;
}
.faq-item summary {
  font-weight:500;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}
.faq-item p { font-family: "Noto Sans TC", sans-serif; margin: 12px 0 0; color: var(--muted);  }

/* 地圖區塊 */
.map-section {
  padding:60px 0;
}
.map-grid {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.map-box {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* 資訊卡片內部布局 */
.map-info-card {
  padding: 35px 35px 25px 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.map-info-card h3 {
  font-size: 22px;
  color: var(--ink, #2b1f1d);
  margin: 0 0 25px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.map-info-card p {
  line-height: 1.6;    display: flex;
  color: #4a3e3d;
  margin: 0 0 15px 0;
}

/* 圖示對齊控制 */
.icon-c {
  width: 22px;
  height: 22px;
  vertical-align: text-bottom;
  margin-right: 6px;
  object-fit: contain;
}
.map-addr {
  display: flex;
  align-items: flex-start;
}
.map-addr .icon-c {
}

.consult-block {
  margin-bottom: 10px;
}
.consult-label {
  margin-bottom: 8px !important;
}
.consult-text {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3e3d;
  padding-left: 24px; /* 與上方文字和圖示貼齊開頭 */
}
.consult-text strong {
  color: var(--ink, #2b1f1d);
  font-weight: bold;
}
.consult-notice {
  display: block;
  font-size: 14px;
  color: var(--muted, #7a6e6d);
  line-height: 1.5;
  margin-top: 8px;
}
.consult-notice a {
  color: var(--ink, #2b1f1d);
  text-decoration: none;
  font-weight: bold;
}

/* 備註說明自動推到底部 */
.map-note {
  font-size: 14px !important;
  color: #7a6e6d !important;
  margin-top: auto !important;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

/* 地圖插圖區 */
.map-illustration {
  width: 100%;
  background-color: #f0eae1;
  overflow: hidden;
  border-top: 1px solid #f5eee6;
}
.map-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}


/* 底部預約行動區 */
.map-bottom-action {
  text-align: center;
  margin: 30px 20px 30px;
}
.map-alert {
  font-size: 15px;
  color: var(--red, #e53935);
  font-weight: bold;
  margin-bottom: 18px;
}

/* 響應式中斷點 */
@media (max-width: 992px) {
  .map-grid {
    flex-direction: column;
    gap: 30px;
  }
  .map-info-card {
    padding: 25px 25px 20px 25px;
  }
  .map-illustration {
  
  }
}

/* 頁尾 */
.site-footer {
background-color: #2b1f1d; /* 更改為深咖啡黑色底 */
  color: #f4efe6; /* 文字改為淺米色以確保清晰閱讀 */
  padding: 30px 20px;
  font-size: 15px;
  border-top: 2px solid var(--gold);
  text-align: center;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer p {
  margin: 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 15px;
}
.site-footer img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  object-fit: contain;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--red);
}
@media (max-width: 768px) {
  .site-footer {
    padding: 25px 15px;
    font-size: 14px;
  }
  .footer-container {
    gap: 16px;
  }
  .site-footer p {
    flex-direction: column;
    gap: 6px;
  }
  .site-footer p img {
    display: none;
  }
}
/* 手機版選單 */
.mobile-panel {
  position: fixed;
  top: 0; right: -280px; width: 280px; height: 100%;
  background: var(--paper-light);
  z-index: 1000;
  padding: 30px;
  box-shadow: -4px 0 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right .35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-panel.open { right: 0; }
.menu-close { align-self: flex-end; background: none; border: none; color: var(--muted); cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.mobile-nav .nav-link { font-size: 17px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(58, 50, 50, 0.4);
  z-index: 999; opacity: 0; visibility: hidden;
  transition: all .35s ease;
}
.overlay.open { opacity: 1; visibility: visible; }

.go-top {
  position: fixed; bottom: 25px; right: 25px;
  background: var(--red); color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; z-index: 90;
  transition: all .3s ease; box-shadow: 0 4px 12px rgba(139,38,30,0.3);
}
.go-top.show { opacity: 1; visibility: visible; }
.go-top:hover { background: var(--red-dark); transform: translateY(-3px); }
.go-top svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 3; fill: none; }

/* 修正動態顯現：預設全顯，防卡防漏 */
.reveal { opacity: 1; transform: none; transition: all 0.75s ease; }

@media (max-width: 900px) {
  .nav-menu, .nav-right { display: none; }
  .menu-toggle { display: block; }
  .split { grid-template-columns: 1fr !important; gap: 30px; }
  .split.reverse { display: flex; flex-direction: column-reverse; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/**/

.booking-section { padding: 60px 20px;  color: var(--ink); font-family: "Noto Sans TC", sans-serif;
background: rgba(255,255,255,0.5);}
.booking-section .container { max-width: 900px; margin: 0 auto; border: 2px solid var(--gold); position: relative; background-color: var(--paper); box-shadow: var(--shadow);    border-radius: 12px;border-top: 4px solid var(--red); }

.booking-header { padding: 20px; text-align: center; background:var(--gold-soft);padding-bottom: 20px; 
border-radius: 10px 10px 0 0 ;}
.booking-header h3 { font-size: var(--h3); color: var(--muted); margin: 0 0 10px 0; font-weight: normal; }
.booking-header h2 { font-size: var(--h2); color: var(--red); margin: 0 0 10px 0; font-family: "Noto Serif TC", serif; font-weight: 900; }
.booking-alert { display: inline-block; background-color: var(--gold); color: #fff; padding: 5px 30px; font-size: 20px; font-weight: bold; border-radius: 5px; margin: 0 0 5px 0;}
.booking-content{padding: 30px;}
.booking-qrcode-block { display: flex; align-items: center; justify-content: center; gap: 40px;padding:0  20px 20px; border-bottom: 1px dashed var(--line); }
.booking-qrcode-block .qrcode-img img { width: 140px; height: 140px; border: 1px solid var(--line); }
.booking-qrcode-block .qrcode-text p { font-size: 18px; margin: 0 0 5px 0; font-weight: bold; }
.booking-qrcode-block .qrcode-text .line-id { font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.booking-qrcode-block .qrcode-text .line-id span { color: var(--red); font-weight: 900; }
.btn-line-action { display: inline-block; background-color: #06C755; color: #fff; text-decoration: none; padding: 8px 16px; font-size: 16px; font-weight: bold; border-radius: 4px; transition: background 0.2s; }
.btn-line-action:hover { background-color: #05b04b; }
.booking-notice { margin: 0 auto 35px auto; padding: 0; list-style: none; max-width: 600px; }
.booking-notice li { font-size: 17px; margin-bottom: 10px; position: relative; padding-left: 25px; line-height: 1.6; }
.booking-notice li::before { content: "●"; color: var(--red); position: absolute; left: 0; top: 0; }
.booking-type-title { font-size: 20px; font-weight: bold; color: var(--red-dark); margin: 15px 0 15px 0;  padding:10px 0  5px;    border-top: 1px dashed var(--line); }
.booking-type-title small { font-size: 15px; color: var(--muted); font-weight: normal; margin-left: 10px; display: inline-block; }
.booking-grid { display: flex; gap: 20px; margin-bottom: 30px; }
.booking-card { flex: 1; background-color: var(--paper-light); color: var(--ink); padding: 20px; border-radius: 8px; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.booking-card .card-title { font-size: 20px; font-weight: bold; border-bottom: 1px solid var(--gold); padding-bottom: 10px; margin-bottom: 15px; color: var(--red-dark); text-align: center; }
.booking-card .time-list { list-style: none; padding: 0; margin: 0 0 10px 0; }
.booking-card .time-list li { margin-bottom: 8px; text-align: center; font-weight: 500; }
.booking-card .location-info { border-top: 1px dashed var(--gold); padding-top: 15px; text-align: center; }
.booking-card .location-info p { margin: 0 0 12px 0; line-height: 1.5; color: var(--ink); }
.booking-card .location-info small { color: var(--muted); }
.btn-map { display: inline-block; border: 1px solid var(--red); color: var(--red); text-decoration: none; padding: 6px 16px; font-size: 15px; font-weight: bold; border-radius: 4px; transition: all 0.2s; background: transparent; }
.btn-map:hover { background-color: var(--red); color: #fff; }
.booking-online-card { background-color: var(--red-dark); color: var(--gold-soft); padding: 25px; border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 30px; }
.booking-online-card .online-label { font-size: 18px; font-weight: bold; color: #fff; }
.booking-online-card .online-time p { margin: 0; font-size: 17px; line-height: 1.6; }

.booking-meta-box { max-width: 450px; margin: 15px auto; display: flex; flex-direction: column; gap: 5px; }
.meta-item { display: flex; align-items: center; gap: 15px; background: transparent; padding: 6px 0; }
.meta-label {font-weight: 700;
    color: var(--red);
    white-space: nowrap;
    font-family: "Noto Serif TC", serif;
    background: rgba(139, 38, 30, 0.06);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 16px;}
.meta-value { font-size: 17px; color: var(--ink); font-weight: 500; }
@media (max-width: 576px) {
  .meta-item { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 768px) {
    .booking-header{padding: 10px;}
  .booking-section .container { padding: 0; }
  .booking-qrcode-block { flex-direction: column; text-align: center; gap: 15px;padding: 0; }
  .booking-grid { flex-direction: column; }
  .booking-online-card { flex-direction: column; text-align: center; gap: 10px; }
  .booking-type-title small { display: block; margin-left: 0; margin-top: 5px; }
}

/* 沿用或補充 ab-section 基礎左右排版架構 */
.ab-badge-tag {
  display: inline-block;
  font-size: 13px;
  background-color: var(--gold, #b5a48c);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: bold;
}

/* 左側：精緻項目清單排版 */
.online-detail-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.detail-item {
  border-left: 2px solid var(--gold, #b5a48c);
  padding-left: 20px;
}
.detail-label {
  display: block;
  font-size: 14px;
  color: var(--gold, #b5a48c);
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.detail-text {
  line-height: 1.7;
  color: #4a3e3d;
  text-align: justify;
}
.detail-text strong {
  color: var(--ink, #2b1f1d);
}
.detail-sub-note {
  display: block;
  font-size: 13.5px;
  color: #a1887f;
  margin-top: 4px;
  font-style: italic;
}

/* 右側：QR Code 整合預約卡片 */
.online-reserve-card {
  background-color: #ffffff;
  border: 1px solid #f5eee6;
  border-top: 4px solid var(--gold, #b5a48c);
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.reserve-alert {
  font-size: 15px;
  color: var(--red, #e53935);
  font-weight: bold;
  margin-bottom: 20px;
}
.reserve-qrcode-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px auto;
  padding: 10px;
  background: #fff;
  border: 1px solid #f0eae1;
  border-radius: 6px;
}
.reserve-qrcode {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reserve-info p {
  font-size: 15px;
  color: #4a3e3d;
  margin: 0 0 10px 0;
}
.reserve-id span {
  font-weight: bold;
  color: var(--ink, #2b1f1d);
  background-color: #faf6f0;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px dashed var(--gold, #b5a48c);
}
.reserve-phone a {
  color: var(--red, #e53935);
  text-decoration: none;
  font-weight: bold;
}

/* 按鈕風格優化 */
.reserve-actions {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.btn-line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #06C755;
  color: #ffffff;
  width: 100%;
  max-width: 280px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(6,199,85,0.2);
  transition: background-color 0.2s, transform 0.2s;
}
.btn-line-cta:hover {
  background-color: #05b34c;
  transform: translateY(-2px);
}
.line-icon-svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}
.btn-flow-link {
  font-size: 14px;
  color: #7a6e6d;
  text-decoration: none;
  transition: color 0.2s;
  padding: 5px 10px;
}
.btn-flow-link:hover {
  color: var(--gold, #b5a48c);
}

/* 響應式中斷點設定 */
@media (max-width: 992px) {
  .online-reserve-card {
    padding: 30px 20px;
    margin-top: 15px;
  }
}