:root {
  --brand-gold: #EEC05C;
  --wood-brown: #8B5E3C;
  --warm-cream: #F7E9D7;
  --sand: #D9C2A6;
  --plant-green: #50624A;

  --background: #FBF8F3;
  --surface: #FFFDF9;

  --text-main: #4A3628;
  --text-soft: #887466;
  --border: #E8DED1;

  --shadow:
    0 8px 28px rgba(90, 62, 40, 0.08);

  --radius-large: 24px;
  --radius-medium: 18px;
  --radius-small: 12px;
}


/* 基本設定 */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    linear-gradient(
      180deg,
      #faf6ef 0%,
      #fffdf9 35%,
      #faf7f1 100%
    );

  color: var(--text-main);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Microsoft JhengHei",
    "PingFang TC",
    sans-serif;
}

button {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-shell {
  width: 100%;
  max-width: 520px;

  margin: 0 auto;

  min-height: 100vh;

  background: var(--surface);

  position: relative;
}


/* 頂部 */

.topbar {
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 22px;

  background:
    rgba(255, 253, 249, 0.95);

  position: sticky;

  top: 0;

  z-index: 20;

  backdrop-filter: blur(12px);

  border-bottom:
    1px solid rgba(139, 94, 60, 0.08);
}

.brand {
  line-height: 1;
}

.brand-cn {
  color: var(--wood-brown);

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 27px;

  letter-spacing: 8px;
}

.brand-en {
  margin-top: 6px;

  color: var(--wood-brown);

  font-size: 9px;

  letter-spacing: 6px;
}

.menu-button {
  border: none;
  background: transparent;

  color: var(--wood-brown);

  font-size: 26px;

  cursor: pointer;
}


/* 主視覺 */

.hero {
  height: 330px;

  margin: 0 14px;

  border-radius:
    0 0 var(--radius-large) var(--radius-large);

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #d9c2a6 0%,
      #f7e9d7 45%,
      #c8b18e 100%
    );
}

.hero::before {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  top: -70px;
  right: -50px;

  background:
    rgba(238, 192, 92, 0.22);
}

.hero::after {
  content: "❧";

  position: absolute;

  right: 30px;
  bottom: 24px;

  font-size: 110px;

  color:
    rgba(80, 98, 74, 0.16);

  transform: rotate(-25deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(67,46,31,0.15)
    );
}

.hero-content {
  position: absolute;

  left: 30px;
  right: 30px;
  bottom: 36px;

  z-index: 2;
}

.hero-eyebrow {
  color:
    rgba(74, 54, 40, 0.72);

  font-size: 11px;

  letter-spacing: 1.6px;

  margin-bottom: 12px;
}

.hero h1 {
  margin: 0;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 37px;

  line-height: 1.35;

  letter-spacing: 4px;

  font-weight: 500;
}

.hero p {
  margin:
    16px 0 0;

  font-size: 14px;

  letter-spacing: 2px;
}


/* 共用區塊 */

.section {
  padding: 30px 20px 0;
}

.section-heading {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 16px;

  margin-bottom: 18px;
}

.section-label {
  display: inline-block;

  margin-bottom: 6px;

  color: var(--wood-brown);

  font-size: 10px;

  letter-spacing: 2px;

  font-weight: 700;
}

.section h2 {
  margin: 0;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 24px;

  font-weight: 500;

  letter-spacing: 1px;
}


/* 歡迎 */

.welcome {
  text-align: center;
}

.welcome-time {
  margin:
    0 0 5px;

  color: var(--wood-brown);

  font-size: 14px;

  letter-spacing: 3px;
}

.welcome h2 {
  margin-bottom: 10px;

  font-size: 25px;
}

.welcome > p:last-child {
  max-width: 330px;

  margin:
    0 auto;

  color: var(--text-soft);

  font-size: 14px;

  line-height: 1.9;
}


/* 六大功能 */

.quick-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;
}

.quick-card {
  min-height: 126px;

  padding: 16px 8px;

  border: 1px solid
    rgba(139,94,60,0.08);

  border-radius: var(--radius-medium);

  background:
    linear-gradient(
      180deg,
      #fffdf9,
      #f8f0e6
    );

  color: var(--text-main);

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 7px;

  cursor: pointer;

  box-shadow:
    0 4px 14px
    rgba(90,62,40,0.05);

  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.quick-card:active {
  transform:
    scale(.97);
}

.quick-card-primary {
  background:
    linear-gradient(
      145deg,
      #f0c667,
      #e5ad42
    );

  color: #4f341e;

  box-shadow:
    0 10px 24px
    rgba(238,192,92,.26);
}

.quick-icon {
  font-size: 30px;

  color: var(--wood-brown);

  line-height: 1;
}

.quick-card strong {
  font-size: 15px;

  font-weight: 600;
}

.quick-card small {
  color: var(--text-soft);

  font-size: 10px;
}

.quick-card-primary small {
  color:
    rgba(79,52,30,.7);
}


/* 品牌理念 */

.philosophy-card {
  border-radius: var(--radius-large);

  padding: 26px;

  background:
    linear-gradient(
      135deg,
      #f5e5cf,
      #e8d2b4
    );

  position: relative;

  overflow: hidden;

  display: flex;

  gap: 18px;
}

.philosophy-leaf {
  min-width: 52px;
  height: 52px;

  border-radius: 50%;

  background:
    rgba(255,255,255,.52);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--plant-green);

  font-size: 27px;
}

.philosophy-card h2 {
  font-size: 21px;

  margin-bottom: 10px;
}

.philosophy-card p {
  margin: 0;

  color: #6f5d50;

  font-size: 13px;

  line-height: 1.8;
}


/* 文字連結 */

.text-link {
  padding: 0;

  border: none;

  background: transparent;

  color: var(--wood-brown);

  font-size: 12px;

  cursor: pointer;
}


/* 服務 */

.service-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.service-card {
  min-width: 230px;
  flex: 0 0 230px;
  scroll-snap-align: start;
}
  gap: 14px;

  overflow-x: auto;

  padding-bottom: 6px;

  scrollbar-width: none;
}

.service-scroll::-webkit-scrollbar {
  display: none;
}

.service-card {
  background: #fff;

  border-radius: var(--radius-medium);

  overflow: hidden;

  border:
    1px solid var(--border);

  box-shadow: var(--shadow);
}

.service-image {
  height: 145px;

  display: flex;

  justify-content: flex-end;
  align-items: flex-end;

  padding: 14px;

  position: relative;
}

.service-image span {
  padding:
    6px 10px;

  border-radius: 30px;

  background:
    rgba(255,255,255,.82);

  backdrop-filter:
    blur(8px);

  color: var(--wood-brown);

  font-size: 12px;
}

.massage-image {
  background:
    linear-gradient(
      135deg,
      #d5b58d,
      #8b5e3c
    );
}

.bowl-image {
  background:
    linear-gradient(
      135deg,
      #72614c,
      #d7bd87
    );
}

.inner-image {
  background:
    linear-gradient(
      135deg,
      #776568,
      #b9a193
    );
}

.service-body {
  padding: 16px;
}

.service-tag {
  color: var(--wood-brown);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;
}

.service-body h3 {
  margin:
    7px 0;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 19px;

  font-weight: 500;
}

.service-body p {
  margin:
    0 0 12px;

  min-height: 44px;

  color: var(--text-soft);

  font-size: 12px;

  line-height: 1.65;
}

.service-meta {
  margin-bottom: 14px;

  padding-top: 10px;

  border-top:
    1px solid var(--border);

  color: #786354;

  font-size: 11px;
}

.service-button {
  width: 100%;

  padding: 11px 14px;

  border: none;

  border-radius: 50px;

  background: var(--wood-brown);

  color: white;

  cursor: pointer;

  font-size: 13px;
}


/* 最新消息 */

.news-card {
  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px;

  border:
    1px solid var(--border);

  border-radius: var(--radius-medium);

  background: #fff;

  box-shadow:
    0 5px 20px
    rgba(90,62,40,.05);
}

.news-date {
  width: 53px;
  height: 63px;

  flex-shrink: 0;

  border-radius: 15px;

  background:
    var(--warm-cream);

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  color: var(--wood-brown);
}

.news-date strong {
  font-size: 9px;

  letter-spacing: 1px;
}

.news-date span {
  margin-top: 2px;

  font-size: 22px;

  font-family:
    "Times New Roman",
    serif;
}

.news-content {
  flex: 1;
}

.news-content > span {
  color: var(--wood-brown);

  font-size: 10px;
}

.news-content h3 {
  margin:
    4px 0 5px;

  font-size: 16px;
}

.news-content p {
  margin: 0;

  color: var(--text-soft);

  font-size: 11px;

  line-height: 1.55;
}

.news-arrow {
  color: var(--wood-brown);

  font-size: 28px;
}


/* 底部導航 */

.bottom-space {
  height: 110px;
}

.bottom-nav {
  width: 100%;
  max-width: 520px;

  height: 76px;

  position: fixed;

  bottom: 0;

  left: 50%;

  transform:
    translateX(-50%);

  z-index: 30;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  align-items: center;

  padding:
    7px 8px
    max(7px, env(safe-area-inset-bottom));

  background:
    rgba(255,253,249,.95);

  backdrop-filter:
    blur(15px);

  border-top:
    1px solid var(--border);
}

.nav-item {
  border: none;

  background: transparent;

  color: #8a7666;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 4px;

  cursor: pointer;
}

.nav-item span {
  font-size: 22px;
}

.nav-item small {
  font-size: 10px;
}

.nav-item.active {
  color: var(--wood-brown);
}

.booking-nav span {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    var(--brand-gold);

  color:
    var(--text-main);

  font-size: 26px;

  margin-top: -18px;

  box-shadow:
    0 5px 15px
    rgba(238,192,92,.35);
}


/* 大螢幕 */

@media (min-width: 521px) {

  body {
    padding:
      25px 0 0;
  }

  .app-shell {
    box-shadow:
      0 0 40px
      rgba(80,50,30,.08);
  }

}



/* ==================================================
   預約頁面
================================================== */

.booking-page {
  background:
    linear-gradient(
      180deg,
      #fffdf9,
      #faf6ef
    );
}


.booking-header {
  height: 74px;

  display: grid;

  grid-template-columns:
    45px 1fr 45px;

  align-items: center;

  padding: 0 16px;

  position: sticky;
  top: 0;

  z-index: 20;

  background:
    rgba(255,253,249,.95);

  backdrop-filter:
    blur(14px);

  border-bottom:
    1px solid var(--border);

  text-align: center;
}


.back-button {
  width: 40px;
  height: 40px;

  border: none;

  border-radius: 50%;

  background:
    var(--warm-cream);

  color:
    var(--wood-brown);

  font-size: 22px;

  cursor: pointer;
}


.booking-title {
  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 19px;

  letter-spacing: 2px;
}


.booking-subtitle {
  margin-top: 3px;

  font-size: 8px;

  letter-spacing: 4px;

  color:
    var(--text-soft);
}


.header-spacer {
  width: 40px;
}


/* 預約進度 */

.booking-progress {
  display: flex;

  align-items: flex-start;
  justify-content: center;

  padding:
    25px 18px 15px;
}


.progress-item {
  width: 44px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 6px;

  color:
    #a69789;

  font-size: 9px;

  flex-shrink: 0;
}


.progress-circle {
  width: 27px;
  height: 27px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    #eee7df;

  color:
    #968577;

  font-size: 11px;
}


.progress-item.active {
  color:
    var(--wood-brown);

  font-weight: 600;
}


.progress-item.active
.progress-circle {
  background:
    var(--wood-brown);

  color:
    white;
}


.progress-line {
  height: 1px;

  flex: 1;

  max-width: 38px;

  margin-top: 13px;

  background:
    #ded4ca;
}


/* 預約介紹 */

.booking-intro {
  padding:
    22px 22px 12px;
}


.booking-intro h1 {
  margin:
    4px 0 10px;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 27px;

  font-weight: 500;

  letter-spacing: 1px;
}


.booking-intro p {
  margin: 0;

  color:
    var(--text-soft);

  line-height: 1.8;

  font-size: 13px;
}


/* 類別按鈕 */

.booking-category {
  display: flex;

  gap: 9px;

  padding:
    15px 22px 18px;

  overflow-x: auto;

  scrollbar-width: none;
}


.booking-category::-webkit-scrollbar {
  display: none;
}


.category-button {
  flex-shrink: 0;

  border:
    1px solid var(--border);

  background:
    white;

  color:
    var(--text-soft);

  padding:
    9px 16px;

  border-radius:
    30px;

  cursor: pointer;

  font-size: 12px;
}


.category-button.active {
  border-color:
    var(--wood-brown);

  background:
    var(--wood-brown);

  color:
    white;
}


/* 預約服務 */

.booking-services {
  padding:
    0 18px;

  display: flex;

  flex-direction: column;

  gap: 13px;
}


.booking-service-card {
  position: relative;

  display: grid;

  grid-template-columns:
    108px 1fr 18px;

  gap: 14px;

  align-items: center;

  padding:
    12px;

  border:
    1px solid var(--border);

  border-radius:
    20px;

  background:
    white;

  box-shadow:
    0 5px 18px
    rgba(90,62,40,.05);

  cursor: pointer;

  transition:
    transform .15s ease,
    box-shadow .15s ease;
}


.booking-service-card:active {
  transform:
    scale(.985);
}


.booking-service-image {
  width: 108px;
  height: 125px;

  border-radius:
    15px;

  overflow: hidden;

  display: flex;

  align-items: flex-end;
  justify-content: flex-start;

  padding:
    10px;
}


.booking-service-image span {
  padding:
    5px 9px;

  border-radius:
    20px;

  background:
    rgba(255,255,255,.82);

  color:
    var(--wood-brown);

  font-size: 10px;

  backdrop-filter:
    blur(6px);
}


.booking-service-content {
  min-width: 0;
}


.booking-service-content h2 {
  margin:
    5px 0 7px;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 18px;

  font-weight: 500;
}


.booking-service-content p {
  margin:
    0 0 10px;

  color:
    var(--text-soft);

  font-size: 11px;

  line-height: 1.55;
}


.booking-service-info {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  color:
    var(--wood-brown);

  font-size: 10px;

  font-weight: 600;
}


.booking-card-arrow {
  color:
    var(--wood-brown);

  font-size: 27px;

  align-self: center;
}


.booking-bottom-space {
  height: 60px;
}


@media (max-width: 380px) {

  .booking-service-card {
    grid-template-columns:
      92px 1fr 14px;
  }

  .booking-service-image {
    width: 92px;
  }

}

/* ==================================================
   日期選擇頁
================================================== */

.progress-item.done {
  color: var(--wood-brown);
}

.progress-item.done .progress-circle {
  background: var(--brand-gold);
  color: var(--text-main);
}

.progress-line.active {
  background: var(--wood-brown);
}


/* 已選療程 */

.selected-summary {
  margin:
    18px 20px 4px;

  padding:
    18px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  border-radius:
    var(--radius-medium);

  background:
    linear-gradient(
      135deg,
      #f7e9d7,
      #f0ddc2
    );

  border:
    1px solid
    rgba(139,94,60,.08);
}

.selected-summary h2 {
  margin:
    2px 0 5px;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 18px;

  font-weight: 500;
}

.selected-summary p {
  margin: 0;

  color:
    var(--text-soft);

  font-size: 12px;
}

.selected-summary button {
  flex-shrink: 0;

  border: none;

  border-radius: 30px;

  padding:
    8px 13px;

  background:
    rgba(255,255,255,.72);

  color:
    var(--wood-brown);

  font-size: 11px;

  cursor: pointer;
}


/* 日期區 */

.date-intro {
  padding-bottom: 18px;
}

.calendar-section {
  margin:
    0 18px;

  padding:
    20px 15px;

  border-radius:
    var(--radius-large);

  background: white;

  border:
    1px solid var(--border);

  box-shadow:
    0 6px 22px
    rgba(90,62,40,.05);
}

.calendar-header {
  display: grid;

  grid-template-columns:
    40px 1fr 40px;

  align-items: center;

  margin-bottom: 20px;
}

.calendar-arrow {
  width: 36px;
  height: 36px;

  border: none;

  border-radius: 50%;

  background:
    var(--warm-cream);

  color:
    var(--wood-brown);

  font-size: 25px;

  cursor: pointer;
}

.calendar-arrow:disabled {
  opacity: .3;

  cursor:
    not-allowed;
}

.calendar-month {
  text-align: center;

  display: flex;

  flex-direction: column;

  gap: 3px;
}

.calendar-month strong {
  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 21px;

  font-weight: 500;
}

.calendar-month span {
  color:
    var(--text-soft);

  font-size: 10px;

  letter-spacing: 2px;
}

.calendar-weekdays {
  display: grid;

  grid-template-columns:
    repeat(7, 1fr);

  text-align: center;

  margin-bottom: 8px;
}

.calendar-weekdays span {
  color:
    #a18f80;

  font-size: 10px;
}

.calendar-grid {
  display: grid;

  grid-template-columns:
    repeat(7, 1fr);

  gap: 6px;
}

.calendar-day {
  aspect-ratio: 1 / 1;

  min-width: 0;

  border: none;

  border-radius: 50%;

  background:
    transparent;

  color:
    var(--text-main);

  display: flex;

  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 12px;

  transition:
    background .15s ease,
    color .15s ease,
    transform .15s ease;
}

.calendar-day:active {
  transform:
    scale(.92);
}

.calendar-day.other-month {
  visibility: hidden;
}

.calendar-day.disabled {
  color:
    #d0c6bd;

  cursor:
    not-allowed;
}

.calendar-day.today {
  border:
    1px solid
    var(--brand-gold);
}

.calendar-day.selected {
  background:
    var(--wood-brown);

  color:
    white;
}

.calendar-day.available:hover {
  background:
    var(--warm-cream);
}


/* 說明 */

.date-note {
  margin:
    18px 20px;

  display: flex;

  gap: 12px;

  padding:
    14px 16px;

  border-radius:
    var(--radius-medium);

  background:
    rgba(80,98,74,.07);

  color:
    var(--plant-green);
}

.date-note-icon {
  font-size: 20px;

  flex-shrink: 0;
}

.date-note p {
  margin: 0;

  font-size: 11px;

  line-height: 1.7;
}


/* 底部選擇面板 */

.selected-date-panel {
  position: sticky;

  bottom: 0;

  z-index: 15;

  margin-top: 25px;

  padding:
    16px 20px
    max(16px, env(safe-area-inset-bottom));

  background:
    rgba(255,253,249,.96);

  backdrop-filter:
    blur(14px);

  border-top:
    1px solid var(--border);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;
}

.selected-date-panel div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.selected-date-panel span {
  color:
    var(--text-soft);

  font-size: 10px;
}

.selected-date-panel strong {
  font-size: 15px;

  color:
    var(--text-main);
}

.selected-date-panel button {
  border: none;

  border-radius:
    40px;

  padding:
    13px 20px;

  background:
    var(--wood-brown);

  color:
    white;

  font-size: 13px;

  cursor: pointer;
}

.selected-date-panel button:disabled {
  background:
    #d6ccc3;

  cursor:
    not-allowed;
}

/* ==================================================
   時間選擇頁
================================================== */

.time-summary {
  margin: 18px 20px 4px;

  padding: 18px;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  gap: 14px;

  align-items: center;

  border-radius:
    var(--radius-medium);

  background:
    linear-gradient(
      135deg,
      #f7e9d7,
      #f0ddc2
    );

  border:
    1px solid
    rgba(139,94,60,.08);
}

.time-summary-block {
  min-width: 0;

  display: flex;

  flex-direction: column;

  gap: 5px;
}

.time-summary-block strong {
  font-size: 13px;

  font-weight: 500;

  line-height: 1.5;
}

.time-summary-divider {
  width: 1px;
  height: 42px;

  background:
    rgba(139,94,60,.18);
}


/* 時段區 */

.time-section {
  padding:
    4px 20px 0;
}

.time-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;
}

.time-button {
  min-height: 48px;

  border:
    1px solid var(--border);

  border-radius:
    14px;

  background:
    white;

  color:
    var(--text-main);

  font-size: 13px;

  cursor: pointer;

  transition:
    .15s ease;
}

.time-button:hover {
  border-color:
    var(--sand);

  background:
    var(--warm-cream);
}

.time-button:active {
  transform:
    scale(.96);
}

.time-button.selected {
  border-color:
    var(--wood-brown);

  background:
    var(--wood-brown);

  color:
    white;
}

.time-button.disabled {
  background:
    #f4f0eb;

  color:
    #c7bbb1;

  cursor:
    not-allowed;

  text-decoration:
    line-through;
}

.no-time-message {
  padding:
    30px 20px;

  border-radius:
    var(--radius-medium);

  background:
    var(--warm-cream);

  color:
    var(--text-soft);

  text-align: center;

  font-size: 13px;

  line-height: 1.8;
}


@media (max-width: 360px) {

  .time-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .time-summary {
    grid-template-columns:
      1fr;
  }

  .time-summary-divider {
    width: 100%;
    height: 1px;
  }

}

/* ==================================================
   Step 04 客戶資料
================================================== */

.info-booking-summary {
  margin: 18px 20px 4px;
  padding: 19px;

  border-radius: var(--radius-medium);

  background:
    linear-gradient(
      135deg,
      #f7e9d7,
      #f0ddc2
    );

  border:
    1px solid rgba(139,94,60,.08);
}

.info-booking-summary h2 {
  margin: 3px 0 8px;

  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 19px;
  font-weight: 500;
}

.info-summary-row {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--text-soft);

  font-size: 12px;
}

.info-summary-row strong {
  color: var(--wood-brown);
}

.summary-dot {
  opacity: .5;
}


/* 身分卡 */

.identity-card {
  margin: 5px 20px 14px;
  padding: 17px;

  display: flex;
  align-items: center;
  gap: 14px;

  border-radius: var(--radius-medium);

  background:
    rgba(80,98,74,.07);

  border:
    1px solid rgba(80,98,74,.10);
}

.identity-icon {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: white;

  color: var(--plant-green);

  font-size: 20px;
}

.identity-text {
  min-width: 0;
}

.identity-text > span {
  display: block;

  margin-bottom: 3px;

  color: var(--plant-green);

  font-size: 10px;
  letter-spacing: 1px;
}

.identity-text strong {
  display: block;

  font-size: 14px;
  font-weight: 600;
}

.identity-text p {
  margin: 4px 0 0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}


/* 登入選項 */

.login-options {
  margin: 0 20px 26px;
}

.line-login-button {
  width: 100%;

  padding: 14px 16px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: none;
  border-radius: 16px;

  background: #06C755;
  color: white;

  text-align: left;

  cursor: pointer;
}

.line-mark {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: white;

  color: #06C755;

  font-size: 9px;
  font-weight: 800;
}

.line-login-button strong {
  display: block;

  font-size: 14px;
}

.line-login-button small {
  display: block;

  margin-top: 3px;

  opacity: .86;

  font-size: 10px;
}

.continue-guest-button {
  width: 100%;

  margin-top: 9px;
  padding: 12px;

  border:
    1px solid var(--border);

  border-radius: 14px;

  background: white;

  color: var(--wood-brown);

  cursor: pointer;

  font-size: 12px;
}

.login-hint {
  margin: 8px 3px 0;

  color: #a08f82;

  text-align: center;

  font-size: 9px;
}


/* 表單 */

.customer-form {
  margin: 0 20px;

  padding: 22px 18px;

  border:
    1px solid var(--border);

  border-radius: var(--radius-large);

  background: white;

  box-shadow:
    0 6px 22px
    rgba(90,62,40,.05);
}

.form-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 22px;
}

.form-section-title span {
  font-family:
    "Times New Roman",
    "Noto Serif TC",
    serif;

  font-size: 19px;
}

.form-section-title small {
  color: var(--text-soft);

  font-size: 9px;
}

.form-field {
  display: block;

  margin-bottom: 20px;
}

.field-label {
  display: block;

  margin-bottom: 8px;

  color: var(--text-main);

  font-size: 12px;
  font-weight: 600;
}

.field-label b {
  color: #b06d4f;
}

.field-label em {
  margin-left: 5px;

  color: var(--text-soft);

  font-size: 9px;
  font-style: normal;
  font-weight: 400;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;

  padding: 13px 14px;

  border:
    1px solid var(--border);

  border-radius: 13px;

  outline: none;

  background: #fffdf9;

  color: var(--text-main);

  font-family: inherit;
  font-size: 13px;

  transition:
    border .15s ease,
    box-shadow .15s ease;
}

.form-field textarea {
  resize: vertical;

  min-height: 100px;

  line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sand);

  box-shadow:
    0 0 0 3px
    rgba(238,192,92,.13);
}

.field-help {
  display: block;

  margin-top: 6px;

  color: var(--text-soft);

  font-size: 9px;
  line-height: 1.5;
}


/* 第一次來 */

.choice-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 9px;
}

.choice-button input {
  position: absolute;

  opacity: 0;
  pointer-events: none;
}

.choice-button span {
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 9px;

  border:
    1px solid var(--border);

  border-radius: 13px;

  background: #fffdf9;

  color: var(--text-soft);

  font-size: 11px;

  cursor: pointer;
}

.choice-button input:checked + span {
  border-color:
    var(--wood-brown);

  background:
    var(--warm-cream);

  color:
    var(--wood-brown);

  font-weight: 600;
}


/* 備註 */

.textarea-counter {
  margin-top: 5px;

  color: #aa9c90;

  text-align: right;

  font-size: 9px;
}


/* 儲存會員資料 */

.save-profile-option {
  display: flex;

  gap: 11px;

  padding: 15px;

  margin:
    5px 0 18px;

  border-radius: 15px;

  background:
    var(--warm-cream);

  cursor: pointer;
}

.save-profile-option > input {
  position: absolute;

  opacity: 0;
}

.custom-checkbox {
  width: 21px;
  height: 21px;

  flex-shrink: 0;

  border:
    1px solid var(--sand);

  border-radius: 6px;

  background: white;
}

.save-profile-option strong {
  display: block;

  font-size: 11px;
}

.save-profile-option small {
  display: block;

  margin-top: 4px;

  color: var(--text-soft);

  font-size: 9px;
  line-height: 1.5;
}

.save-profile-option:has(input:disabled) {
  opacity: .55;

  cursor: default;
}

.save-profile-option:has(input:checked)
.custom-checkbox {
  background:
    var(--wood-brown);

  border-color:
    var(--wood-brown);

  position: relative;
}

.save-profile-option:has(input:checked)
.custom-checkbox::after {
  content: "✓";

  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 12px;
}


/* 個資 */

.privacy-note {
  display: flex;

  gap: 10px;

  padding: 13px;

  margin-bottom: 18px;

  border-radius: 14px;

  background:
    rgba(80,98,74,.06);

  color: var(--plant-green);
}

.privacy-note span {
  flex-shrink: 0;
}

.privacy-note p {
  margin: 0;

  font-size: 9px;
  line-height: 1.65;
}


/* 下一步 */

.info-submit-button {
  width: 100%;

  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: none;

  border-radius: 40px;

  background:
    var(--wood-brown);

  color: white;

  font-size: 13px;

  cursor: pointer;
}

.info-submit-button span {
  font-size: 17px;
}

/* ==================================================
   Booking Success Page
================================================== */

.success-page {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(
      180deg,
      var(--warm-cream) 0%,
      var(--background) 42%,
      var(--background) 100%
    );
}

.success-container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding:
    48px
    20px
    60px;
}

.success-card {
  background:
    var(--surface);

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-large);

  box-shadow:
    var(--shadow);

  padding:
    36px
    24px;

  text-align:
    center;
}

.success-icon {
  width: 72px;
  height: 72px;

  margin:
    0 auto
    22px;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  border-radius:
    50%;

  background:
    var(--brand-gold);

  color:
    var(--text-main);

  font-size:
    34px;

  font-weight:
    700;
}

.success-eyebrow {
  margin:
    0 0 8px;

  font-size:
    12px;

  letter-spacing:
    0.18em;

  color:
    var(--wood-brown);
}

.success-title {
  margin:
    0;

  font-size:
    30px;

  color:
    var(--text-main);
}

.success-message {
  margin:
    18px 0 28px;

  line-height:
    1.9;

  color:
    var(--text-soft);
}

.success-booking-card {
  margin:
    0 0 22px;

  padding:
    10px 18px;

  background:
    var(--warm-cream);

  border-radius:
    var(--radius-medium);

  text-align:
    left;
}

.success-row {
  display:
    flex;

  justify-content:
    space-between;

  gap:
    20px;

  padding:
    14px 0;

  border-bottom:
    1px solid
    rgba(
      139,
      94,
      60,
      0.12
    );
}

.success-row:last-child {
  border-bottom:
    none;
}

.success-row span {
  flex:
    0 0 auto;

  color:
    var(--text-soft);

  font-size:
    14px;
}

.success-row strong {
  text-align:
    right;

  color:
    var(--text-main);

  font-size:
    15px;

  font-weight:
    600;
}

.success-notice {
  margin:
    22px 0;

  padding:
    18px;

  border:
    1px solid
    var(--border);

  border-radius:
    var(--radius-medium);

  text-align:
    left;
}

.success-notice strong {
  color:
    var(--plant-green);
}

.success-notice p {
  margin:
    8px 0 0;

  line-height:
    1.7;

  color:
    var(--text-soft);

  font-size:
    14px;
}

.success-primary-button {
  width:
    100%;

  margin-top:
    6px;
}

.success-secondary-button {
  width:
    100%;

  margin-top:
    12px;

  padding:
    14px 18px;

  background:
    transparent;

  border:
    1px solid
    var(--wood-brown);

  border-radius:
    var(--radius-small);

  color:
    var(--wood-brown);

  font-size:
    15px;

  cursor:
    pointer;
}

.success-brand-copy {
  margin:
    30px 0 0;

  color:
    var(--text-soft);

  font-size:
    13px;

  letter-spacing:
    0.08em;
}

/* ==================================================
   我的預約
================================================== */

.my-bookings-page {
  min-height: 100vh;
  background: var(--background);
  padding: 24px 16px 60px;
}

.my-bookings-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.my-bookings-intro {
  margin: 18px 0 24px;
  color: var(--text-soft);
  line-height: 1.7;
}

.my-bookings-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-soft);
}

.my-bookings-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.my-bookings-empty-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
}

.my-bookings-empty-text {
  margin: 0 0 24px;
  color: var(--text-soft);
}

.my-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.my-booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: 22px;
  box-shadow: var(--shadow);
}

.my-booking-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.my-booking-label {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.my-booking-service {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-main);
}

.my-booking-status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--warm-cream);
  color: var(--wood-brown);
  font-size: 13px;
  font-weight: 700;
}

.my-booking-info {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.my-booking-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}

.my-booking-row span {
  color: var(--text-soft);
  font-size: 14px;
}

.my-booking-row strong {
  color: var(--text-main);
  text-align: right;
  font-size: 14px;
  font-weight: 600;
}

.booking-group {
  margin-top: 30px;
}

.booking-group-header {
  margin-bottom: 14px;
}

.booking-group-title {
  margin: 4px 0 0;
  font-size: 22px;
  color: var(--text-main);
}

.my-booking-actions {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.booking-secondary-action {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--wood-brown);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.booking-secondary-action:hover {
  background: var(--warm-cream);
}