:root {
  --bg: #fbf7f5;
  --card: #ffffff;
  --primary: #b79a96;
  --text-main: #7a5f5b;
  --text-sub: #a08b87;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", system-ui, -apple-system;
}

body {
  background: var(--bg);
  color: var(--text-main);
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 40px 20px 48px;
  margin: 0 auto; 
}

.container:not(.price-page):not(.booking-page):not(.qa-page):not(.care-page) {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container:not(.price-page):not(.booking-page):not(.qa-page):not(.care-page) .social {
  margin-top: auto;
  padding-top: 44px;
  margin-bottom: 120px;
}

.logo-section {
  text-align: center;
  margin-bottom: 36px;
}

.logo-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.4);  
  transform-origin: center; 
}

.brand-title {
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.brand-subtitle {
  font-size: 14px;
  color: var(--text-sub);
  letter-spacing: 2px;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.menu-item {
  background: var(--card);
  border-radius: 22px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-main);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.menu-item:active {
  transform: scale(0.97);
}

.menu-item .icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f3ecea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  color: var(--primary);
}

.menu-item .text {
  flex: 1;
  font-size: 16px;
}

.menu-item .arrow {
  font-size: 22px;
  color: #d4c2be;
}

.social {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.social-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
}

@media (min-width: 768px) {
  .container {
    max-width: 480px;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-right: 10px; 
  white-space: nowrap;
}

.tag.must {
  background: rgba(183, 154, 150, 0.18);
  color: var(--primary);
  border: 1px solid rgba(183, 154, 150, 0.35);
}
/* ====== 服務價目表 ====== */

.price-page {
  padding-bottom: 140px;
}

.page-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.page-title h1 {
  font-size: 20px;
  letter-spacing: 2px;
}

.title-icon {
  color: var(--primary);
  font-size: 18px;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.card-title {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f3ecea;
  font-size: 15px;
}

.price-row:last-child {
  border-bottom: none;
}

.card-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-sub);
}

.notice-card {
  background: #f6eded;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--text-main);
}

.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  padding: 16px 16px 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.bottom-btn {
  flex: 1;
  max-width: 220px;
  height: 56px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: var(--shadow);
}

.bottom-btn.ghost {
  background: #fff;
  color: var(--primary);
}

.bottom-btn.primary {
  background: var(--primary);
  color: #fff;
}


/* ====== 預約須知 ====== */

.booking-page {
  padding-bottom: 150px;
}

.booking-card {
  background: #fff;
  border-radius: 26px;
  padding: 26px 22px 30px;
  box-shadow: var(--shadow);
}

.booking-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bank-box {
  background: #faf5f3;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 20px;
}

.bank-name {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.bank-number {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.bank-note {
  font-size: 13px;
  color: var(--text-sub);
}

.alert {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.alert-icon {
  font-size: 18px;
  line-height: 1.2;
}

.alert.danger {
  background: #fff1f1;
  color: #d24a4a;
}

.alert.warning {
  background: #fff7ea;
  color: #c47a1c;
}

.alert.success {
  background: #f0faf4;
  color: #3c8c5a;
}

.finish-box {
  margin: 20px 0;
  padding: 14px;
  border-radius: 14px;
  background: #faf2f0;
  text-align: center;
  font-size: 14px;
  color: var(--text-sub);
}

.confirm-btn {
  display: block;
  width: 100%;
  height: 54px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  line-height: 54px;
  text-decoration: none;
  font-size: 15px;
}

.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bank-row .bank-number {
  margin-bottom: 0; 
}

.copy-btn {
  border: none;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.15s ease;
  white-space: nowrap;
}

.copy-btn:active {
  transform: scale(0.97);
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 110px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  color: var(--text-main);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}


/* ====== 常見問題 QA ====== */

.qa-page {
  padding-bottom: 140px;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qa-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.qa-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--text-main);
  cursor: pointer;
}

.qa-question .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #cbb1ac;
  border-bottom: 2px solid #cbb1ac;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  transition: all 0.3s ease;
}

.qa-item.active .qa-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}

.qa-item.active .arrow {
  transform: rotate(-135deg);
}


/* ====== 保養前後須知 ====== */

.care-page {
  padding-bottom: 140px;
}

.care-card {
  background: #fff;
  border-radius: 26px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.care-section + .care-section {
  margin-top: 22px;
}

.care-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 12px;
}

.care-icon {
  font-size: 16px;
}

.care-icon.check {
  color: #5b9c7a;
}

.care-list {
  list-style: disc;
  padding-left: 18px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.8;
}

.care-divider {
  border: none;
  border-top: 1px solid #f1e4e1;
  margin: 22px 0;
}
