/* ===============================
   預設（body）
   =============================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Noto Sans TC', 'PingFang TC', 'Helvetica Neue', Arial, sans-serif;
  background: #ebdec6;
  color: #352e2a;
  letter-spacing: 0.02em;
}

/* ===============================
   共用：不允許選取（User Select None）
   =============================== */
/* 通用按鈕、Logo、互動元件等防止誤選 */
.navbar-logo span,
.nav-icon-btn,
.cta-btn,
.scroll-arrow,
.play-btn,
.tarot-card,
.tarot-modal-close {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ===============================
   Navbar 導覽列
   =============================== */
.navbar {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* 關鍵：兩側對齊 */
  padding: 0 3vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: rgba(53,46,42,0.80);
  box-shadow: 0 2px 16px rgba(53,46,42,0.09);
  backdrop-filter: blur(10px) saturate(1.02);
  transition: transform 0.38s cubic-bezier(.37,1.7,.33,.96), opacity 0.28s cubic-bezier(.34,1.49,.61,1.03);
  will-change: transform, opacity;
}

.navbar--hidden {
  transform: translateY(-110%);
  opacity: 0.25;
  pointer-events: none;
}

.navbar--shown {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar-logo span {
  font-size: 1.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: #ebdec6;
  font-family: 'Inter','Noto Sans TC',sans-serif;
  user-select: none;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 75px;
  position: relative;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(235,222,198,0.89);
  box-shadow: 0 2px 12px rgba(181,119,67,0.08);
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.14s, transform 0.14s;
  font-size: 1.2rem;
  outline: none;
  padding: 0;
}
.nav-icon-btn:hover,
.nav-icon-btn:focus {
  background: #ebdec6;
  box-shadow: 0 6px 24px rgba(181,119,67,0.13);
  transform: scale(1.06);
}
.nav-icon-btn svg {
  display: block;
  stroke: #352e2a;
}

/* ===============================
   Navbar 下拉選單
   =============================== */
.navbar-dropdown {
  position: fixed;
  top: 60px;
  right: 3vw;
  min-width: 160px;
  background: rgba(235,222,198,0.8);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(181,119,67,0.17);
  padding: 12px 0;
  z-index: 100;
  border: 1px solid #ebdec6;
  font-family: 'Inter','Noto Sans TC',sans-serif;
}
.navbar-dropdown ul { list-style: none; margin: 0; padding: 0; }
.navbar-dropdown li { padding: 0; margin: 0; }
.navbar-dropdown a {
  display: block;
  padding: 13px 26px;
  color: #352e2a;
  text-decoration: none;
  font-size: 1.07rem;
  transition: background 0.16s, color 0.13s;
}
.navbar-dropdown a:hover {
  background: #ebdec6;
  color: #352e2a;
}

/* ===============================
   Hero 主區塊（全螢幕背景）
   =============================== */

/* ===============================
   HERO-HEADER 一體式橫向大首圖（不換行不column）
   =============================== */
.hero-header {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;      /* 小螢幕可橫向滑動 */
  background: transparent;
  position: relative;
  z-index: 2;
  padding: 0;
  box-sizing: border-box;
}

.hero-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/images/hero-image-default.jpg') no-repeat center center / cover;
  filter: grayscale(1) brightness(0.8) blur(0.7px);
  pointer-events: none;
  z-index: -1; /* 背景在最底層 */
}

 
.hero-header-content {
  display: flex;
  flex-direction: row;           /* 固定橫向，永遠不 column */
  min-width: 900px;              /* 最小寬度，避免被壓縮 */
  width: 90vw;
  max-width: 1440px;
  height: 90vh;
  margin: 4vw auto;
  box-shadow: 0 4px 48px #2222;
  background: transparent;
}

.hero-header-left {
  flex: 1 1 0;
  background: linear-gradient(180deg, #f5f3eb 90%, #ede6da 100%);
  min-width: 340px;
  max-width: 600px;
  padding: 58px 48px 38px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
  box-shadow: 0 4px 44px #0001;
  align-items: flex-start;
}

.hero-header-title {
  font-family: '標楷體', DFKai-SB, 'Noto Sans TC', 'Inter', Arial, sans-serif;
  font-size: 2.9rem;
  font-weight: bold;
  color: #3c2415;
  line-height: 1.3;
  margin: 12px 0 28px 0;
  letter-spacing: 0.08em;
  /* 可選：仿手寫可用更活潑字體 */
}

.hero-header-desc {
  font-size: 1.11rem;
  color: #3c2415;
  font-family: '標楷體', DFKai-SB, 'Noto Sans TC', 'Inter', Arial, sans-serif;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.hero-header-free {
  font-size: 2.8rem;
  color: #3c2415;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}

.hero-header-btn {
  display: inline-flex;
  align-items: center;
  background: #3c2415;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 13px 36px;
  border-radius: 2em;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px #3c241545;
  margin-top: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  gap: 14px;
  user-select: none;
}
.hero-header-btn:hover, .hero-header-btn:focus {
  background: #262025;
  color: #ffe082;
  transform: translateY(-2px) scale(1.04);
}

.cart-icon {
  margin-left: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.13em;
}

/* 點陣裝飾（仿樣式） */
.hero-deco-dots {
  width: 72px; height: 22px;
  margin-bottom: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="72" height="22" viewBox="0 0 72 22" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.29" fill="%233c2415"><circle cx="4" cy="4" r="2"/><circle cx="16" cy="4" r="2"/><circle cx="28" cy="4" r="2"/><circle cx="40" cy="4" r="2"/><circle cx="52" cy="4" r="2"/><circle cx="64" cy="4" r="2"/><circle cx="4" cy="18" r="2"/><circle cx="16" cy="18" r="2"/><circle cx="28" cy="18" r="2"/><circle cx="40" cy="18" r="2"/><circle cx="52" cy="18" r="2"/><circle cx="64" cy="18" r="2"/></g></svg>') center/contain no-repeat;
}

.hero-deco-dots-bottom {
  margin-top: 38px;
  margin-bottom: 0;
  transform: rotate(180deg);
}

/* 右側形象照 */
 
.hero-header-right {
  flex: 1 1 0;
  min-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.hero-header-right img {
  width: 100%;
  height: auto;
  min-width: 240px;
  max-width: 480px;
  min-height: 340px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 2px 24px #3333;
  background: #222;
}


/* 響應式 */
@media (max-width: 1200px) {
  .hero-header-content {
    min-width: 700px;
    width: 98vw;
    height: 94vh;
    padding: 0;
  }
  .hero-header-left {
    padding: 32px 18px 18px 18px;
  }
}

@media (max-width: 800px) {
  .hero-header-content {
    min-width: 510px;
    height: 98vh;
  }
  .hero-header-right img {
    min-width: 120px;
    max-width: 260px;
    min-height: 180px;
  }
  .hero-header-left {
    padding: 16px 6vw 14px 6vw;
    min-width: 180px;
  }
}

@media (max-width: 600px) {
  .hero-header {
    min-width: 100vw;
  }
  .hero-header-content {
    min-width: 400px;
    height: 98vh;
    padding: 0;
  }
  .hero-header-right img {
    min-width: 80px;
    max-width: 160px;
    min-height: 80px;
  }
  .hero-header-left {
    padding: 8px 2vw 6px 2vw;
    min-width: 130px;
  }
}

/* ===============================
   Hero 主區塊（左右分割）
   =============================== */
.hero-split {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  background: #ebdec6;
  padding-left: 7vw;
  padding-right: 7vw;
}
.hero-left, .hero-right {
  flex: 1 1 0;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero 文字 & 行動區（左） ===== */
.hero-left h1 {
  font-size: 2.85rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 24px;
  color: #352e2a;
  line-height: 1.18;
}
.caption {
  font-size: 1.3rem;
  color: #b57743;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.solution-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 44px;
}
.solution-list li {
  font-size: 1.11rem;
  margin-bottom: 13px;
  color: #352e2a;
  line-height: 1.65;
}
.cta-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(92deg,#352e2a 60%, #b57743 100%);
  color: #ebdec6;
  font-size: 1.14rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 24px rgba(181,119,67,0.10), 0 1.5px 6px rgba(53,46,42,0.08);
  text-decoration: none;
  transition: background 0.20s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(92deg,#352e2a 60%, #b57743 100%);
  box-shadow: 0 8px 32px rgba(181,119,67,0.14), 0 2px 10px rgba(53,46,42,0.10);
  transform: translateY(-2px) scale(1.022);
}

/* ===== Hero 影片（右） ===== */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-wrapper {
  position: relative;
  width: 600px;
  height: 480px;
  background: linear-gradient(112deg, #ebdec6 60%, #fff 100%);
  border-radius: 20px;
  box-shadow: 0 6px 36px rgba(181,119,67,0.11);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper:hover {
  box-shadow: 0 14px 40px rgba(53,46,42,0.13);
  transform: scale(1.03);
}
.video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.96) contrast(1.03);
}
.play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: linear-gradient(120deg, #352e2a 70%, #b57743 120%);
  border: none;
  box-shadow: 0 6px 20px rgba(181,119,67,0.16);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn::after {
  content: '';
  margin-left: 8px;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent #ebdec6;
  width: 0;
  height: 0;
}
.play-btn:hover {
  background: linear-gradient(120deg, #352e2a 70%, #b57743 120%);
  box-shadow: 0 10px 36px rgba(53,46,42,0.13);
}
#promoVideo {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 18px;
}

/* ===============================
   響應式設計
   =============================== */
@media (max-width: 980px) {
  .hero-split {
    flex-direction: column;
    min-height: unset;
    padding-left: 0;
    padding-right: 0;
  }
  .hero-left, .hero-right {
    padding: 36px 6vw;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .video-wrapper {
    width: 98vw;
    max-width: 440px;
    height: 210px;
  }
}

/* ===============================
   塔羅 scrollbox & 卡片區
   =============================== */
.scrollbox-horizontal {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto 5rem auto;
  position: relative;
  z-index: 2;
  gap: 0.8rem;
  padding: 0;
}
.scroll-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(110deg, #efeff1 60%, #e3e3e5 100%);
  box-shadow: 0 2px 12px rgba(53,46,42,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606065;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.16s;
  font-size: 2.1rem;
  padding: 0;
}
.scroll-arrow.left { margin-right: 0.25rem; }
.scroll-arrow.right { margin-left: 0.25rem; }
.scroll-arrow:disabled { opacity: 0.2; cursor: not-allowed; }
.scroll-arrow svg, .scroll-arrow-icon {
  width: 28px;
  height: 28px;
  display: block;
  margin: auto;
  color: #606065;
}
.scrollbox-cards {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none;
  width: 100%;
  min-height: 530px;
}
.scrollbox-cards::-webkit-scrollbar { display: none; }

/* 卡片區 - tarot-card 精緻無留白 */
.tarot-card {
  flex: 0 0 345px;
  height: 500px;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(53,46,42,0.13);
  margin: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  transition: box-shadow 0.22s, transform 0.14s;
}
.tarot-card:hover {
  box-shadow: 0 16px 38px 0 rgba(181,119,67,0.13), 0 4px 12px rgba(53,46,42,0.09);
  transform: translateY(-4px) scale(1.016);
}
.tarot-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #352e2a;
  word-break: break-all;
  white-space: normal;
  text-align: center;
  padding: 0 3vw;
}
/* 卡片正背面 */
.tarot-card .card-front, .tarot-card .card-back {
  width: 100%; height: 100%;
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(53,46,42,0.13);
  position: absolute;
  left: 0; top: 0;
  backface-visibility: hidden;
  transition: transform 0.44s cubic-bezier(.19,1,.22,1), box-shadow 0.18s;
}
.tarot-card .card-front img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 26px;
  background: #ebdec6;
  box-shadow: 0 2px 8px rgba(53,46,42,0.07);
}
.tarot-card .card-back {
  font-size: 2.2rem;
  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg,#b57743 60%, #ebdec6 100%);
  color: #352e2a;
  display: flex; align-items: center; justify-content: center;
  transform: rotateY(180deg);
}
.tarot-card.flipped .card-front { transform: rotateY(180deg);}
.tarot-card.flipped .card-back { transform: rotateY(0deg);}

/* ===============================
   Modal 抽卡視窗
   =============================== */
.tarot-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
}
.tarot-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(181,119,67,0.22);
  padding: 42px 32px 32px 32px;
  min-width: 340px;
  max-width: 92vw;
  position: relative;
  z-index: 3;
  text-align: center;
  animation: popIn 0.28s cubic-bezier(.46,.75,.37,1.17);
}
@keyframes popIn {
  0% { transform: scale(0.88); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.tarot-modal-content img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(181,119,67,0.13);
}
.tarot-modal-close {
  position: absolute;
  right: 18px; top: 18px;
  font-size: 2rem;
  color: #b57743;
  cursor: pointer;
  z-index: 4;
  transition: color 0.18s;
}
.tarot-modal-close:hover { color: #b57743; }
.tarot-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(53,46,42,0.17);
  z-index: 2;
}

/* ===============================
   動態衣服流線 SVG 背景
   =============================== */
.fashion-bg-animated {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  filter: blur(0.6px);
}
.fashion-flow-svg {
  position: absolute;
  width: 200vw;
  height: 100vh;
  left: -30vw; top: 0;
}
.flow1, .flow2, .flow3 { stroke-linecap: round; stroke-linejoin: round; }
.flow1 { animation: flowmove1 13s linear infinite; stroke: #b57743; }
.flow2 { animation: flowmove2 21s linear infinite; stroke: #352e2a; }
.flow3 { animation: flowmove3 17s linear infinite; stroke: #ebdec6; }
@keyframes flowmove1 {
  0% { transform: translateX(0); opacity:0.19; }
  35% { opacity:0.26;}
  50% { opacity:0.32;}
  70% { opacity:0.18;}
  100% { transform: translateX(-350px); opacity:0.19;}
}
@keyframes flowmove2 {
  0% { transform: translateX(0); opacity:0.11;}
  55% { opacity:0.22;}
  100% { transform: translateX(-260px); opacity:0.11;}
}
@keyframes flowmove3 {
  0% { transform: translateX(0); opacity:0.06;}
  44% { opacity:0.18;}
  100% { transform: translateX(-510px); opacity:0.06;}
}

/* ===============================
   水平步驟時間軸
   =============================== */
.timeline-header.horizontal {
  position: static;
  background: transparent;
  margin: 0 auto 42px auto;
  font-size: 2.6rem;
  text-align: center;
  color: #352e2a;
  letter-spacing: 0.045em;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
  padding: 32px 0 20px 0;
}
.timeline-steps-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto 68px auto;
  position: relative;
  z-index: 1;
  max-width: 1220px;
  width: 94vw;
  padding: 0 1vw;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 188px;
  max-width: 210px;
  position: relative;
  background: none;
}
.timeline-dot {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b57743 65%, #ebdec6 110%);
  color: #352e2a;
  font-size: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 5px solid #352e2a;
  box-shadow: 0 4px 16px rgba(181,119,67,0.14), 0 1.5px 7px rgba(53,46,42,0.10);
  position: relative;
  z-index: 2;
  transition: transform 0.18s cubic-bezier(.45,1.25,.45,1.15);
  user-select: none;
}
.timeline-step:hover .timeline-dot {
  transform: scale(1.10) rotate(-8deg);
  box-shadow: 0 12px 40px rgba(53,46,42,0.19), 0 2px 12px rgba(181,119,67,0.13);
}
.timeline-info { text-align: center; }
.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #352e2a;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.timeline-desc {
  font-size: 1.08rem;
  color: #765921;
  letter-spacing: 0.01em;
  line-height: 1.52;
}

/* 連接線設計 */
.timeline-line {
  width: 70px;
  height: 8px;
  background: linear-gradient(90deg, #ebdec6 8%, #b57743 84%);
  border-radius: 4px;
  margin-top: 31px;
  box-shadow: 0 1px 9px rgba(181,119,67,0.10);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* 響應式步驟時間軸（小螢幕直向） */
@media (max-width: 950px) {
  .timeline-steps-horizontal {
    flex-wrap: wrap;
    max-width: 96vw;
    padding: 0 2vw;
  }
  .timeline-line { width: 34px; }
  .timeline-step { min-width: 140px; }
  .timeline-dot { width: 48px; height: 48px; font-size: 1.6rem; }
  .timeline-title { font-size: 1.09rem;}
  .timeline-desc { font-size: 0.97rem;}
  .timeline-header.horizontal { font-size: 1.36rem;}
}
@media (max-width: 620px) {
  .timeline-steps-horizontal {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 34px;
    padding: 0 2vw;
  }
  .timeline-step {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-width: unset; max-width: 99vw;
  }
  .timeline-dot { margin-bottom: 0; margin-right: 16px;}
  .timeline-info { text-align: left; }
  .timeline-line {
    width: 7px;
    height: 38px;
    background: linear-gradient(180deg, #ebdec6 6%, #b57743 98%);
    margin: 0 auto 0 29px;
    border-radius: 4px;
  }
}

/* ===============================
   FAQ 區塊
   =============================== */
.faq-section {
  max-width: 540px;
  margin: 60px auto;
  padding: 14px;
  background: #f9f7f3;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(53,46,42,0.10), 0 2px 8px rgba(181,119,67,0.05);
  border: 1.2px solid #ebdec6;
}
.faq-title {
  font-size: 2rem;
  color: #b57743;
  text-align: center;
  margin: 0;
  padding: 32px 0 24px 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(96deg, #ebdec6 20%, #f9f7f3 80%);
  border-radius: 24px 24px 0 0;
}
.faq-section details {
  margin: 0 0 18px 0;
  background: #fffefb;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px rgba(53,46,42,0.07);
  border: 1px solid #ebdec6;
  overflow: hidden;
  transition: box-shadow 0.22s, border-color 0.22s;
}
.faq-section details[open] {
  box-shadow: 0 6px 32px rgba(181,119,67,0.07);
  border-color: #b57743;
}
.faq-section summary {
  position: relative;
  cursor: pointer;
  padding: 20px 22px 20px 54px;
  font-size: 1.12rem;
  font-weight: 600;
  color: #352e2a;
  background: none;
  border: none;
  outline: none;
  user-select: none;
  transition: color 0.22s;
}
.faq-section details[open] summary { color: #b57743; }
.faq-section summary::before {
  content: '💡';
  position: absolute;
  left: 18px; top: 16px;
  font-size: 1.2rem;
  filter: grayscale(0.14);
  transition: transform 0.33s cubic-bezier(.35,1.44,.41,.89);
}
.faq-section details[open] summary::before {
  content: '🔎';
  transform: rotate(14deg) scale(1.14);
}
.faq-answer {
  padding: 0 28px 20px 54px;
  color: #554738;
  font-size: 1.08rem;
  line-height: 1.72;
  background: linear-gradient(94deg, #fff9ec 40%, #f9f7f3 100%);
  border-left: 3px solid #b57743;
  animation: faqOpenAnim .33s cubic-bezier(.25,.92,.44,1.25);
}
@keyframes faqOpenAnim {
  0% { opacity: 0; transform: translateY(-16px);}
  100% { opacity: 1; transform: translateY(0);}
}
@media (max-width: 640px) {
  .faq-section { border-radius: 11px; padding: 0 2vw;}
  .faq-title { font-size: 1.36rem; padding: 22px 0 13px 0; }
  .faq-section summary, .faq-answer { font-size: 0.99rem; padding-left: 38px;}
  .faq-answer { padding-right: 18px; }
  .faq-section summary::before { left: 8px; top: 10px; font-size: 1.02rem; }
}

/* ===============================
   回到頂部按鈕
   =============================== */

.scroll-to-top-btn {
  position: fixed;
  right: 2vw;
  bottom: 3vw;
  z-index: 199;
  width: 58px;
  height: 58px;
  background: linear-gradient(120deg, #3c2415 85%, #b57743 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(53,46,42,0.18), 0 1px 5px #b5774330;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px) scale(0.90);
  transition:
    opacity 0.32s cubic-bezier(.4,1.35,.45,.92),
    transform 0.33s cubic-bezier(.4,1.35,.45,.92);
  cursor: pointer;
}
.scroll-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-to-top-btn:hover, .scroll-to-top-btn:focus {
  background: linear-gradient(120deg, #b57743 60%, #3c2415 100%);
  box-shadow: 0 8px 32px #b5774355, 0 2px 10px #3c241525;
  outline: none;
  transform: scale(1.08);
}
@media (max-width: 700px) {
  .scroll-to-top-btn { right: 3vw; bottom: 5vw; width: 42px; height: 42px;}
  .scroll-to-top-btn svg { width: 21px; height: 21px;}
}


/* ===============================
   Hero-header 響應式修正 PATCH
   =============================== */
@media (max-width: 800px) {
  .hero-header {
    min-width: 100vw !important;
    overflow-x: hidden !important;
    height: auto !important;
    padding-top: 70px !important;
  }
  .hero-header-content {
    flex-direction: column !important;
    align-items: stretch !important;
    min-width: 0 !important;
    width: 100vw !important;
    height: auto !important;
    margin: 0 auto !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .hero-header-left, .hero-header-right {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 22px 4vw 12px 4vw !important;
    margin: 0 !important;
  }
  .hero-header-title {
    font-size: 2.1rem !important;
    line-height: 1.19;
    margin: 12px 0 18px 0;
    text-align: left !important;
    word-break: break-all !important;
    font-family: '標楷體', DFKai-SB, 'Noto Sans TC', 'Inter', Arial, sans-serif !important;
  }
  .hero-header-desc {
    font-size: 1.04rem !important;
    margin-bottom: 14px !important;
    font-family: '標楷體', DFKai-SB, 'Noto Sans TC', 'Inter', Arial, sans-serif !important;
  }
  .hero-header-free {
    font-size: 1.35rem !important;
    margin-bottom: 14px !important;
  }
  .hero-header-btn {
    font-size: 1.09rem !important;
    padding: 12px 0 !important;
    width: 90vw !important;
    justify-content: center !important;
  }
  .cart-icon {
    font-size: 1.12em !important;
    margin-left: 8px !important;
  }
  .hero-header-right {
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .hero-header-right img {
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: 45vh !important;
    min-width: 0 !important;
    min-height: 120px !important;
    border-radius: 0 !important;
    margin: 0 auto 14px auto !important;
    object-fit: contain !important;
    box-shadow: 0 2px 12px #3332 !important;
    background: #222 !important;
    display: block !important;
  }
  .navbar-actions {
    margin-right: 40px !important;
  }
}
@media (max-width: 600px) {
  .tarot-title {
    font-size: 1.55rem;
    line-height: 1.23;
    padding: 0 4vw;
    word-break: break-all;
    white-space: normal;
    text-align: center;
  }
  .hero-header {
    padding-top: 65px !important;
  }
  .navbar-actions {
    margin-right: 40px !important;
  }
}

@media (max-width: 410px) {
  .hero-header-title {
    font-size: 1.35rem !important;
    line-height: 1.17 !important;
    margin: 8px 0 12px 0 !important;
    text-align: left !important;
    word-break: break-all !important;
    font-family: '標楷體', DFKai-SB, 'Noto Sans TC', 'Inter', Arial, sans-serif !important;
  }
  .hero-header-desc {
    font-size: 0.93rem !important;
    margin-bottom: 9px !important;
    font-family: '標楷體', DFKai-SB, 'Noto Sans TC', 'Inter', Arial, sans-serif !important;
  }
  .hero-header-free {
    font-size: 1.09rem !important;
    margin-bottom: 8px !important;
  }
  .hero-header-left {
    padding: 6px 1vw 3px 2vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .hero-header-btn {
    font-size: 0.99rem !important;
    padding: 9px 0 !important;
    width: 88vw !important;
    min-width: 0 !important;
    justify-content: center !important;
  }
  .cart-icon { font-size: 1em !important; margin-left: 6px !important; }
  .hero-header-right img {
    max-width: 99vw !important;
    min-width: 0 !important;
    min-height: 68px !important;
    max-height: 36vh !important;
    margin: 0 auto 7px auto !important;
  }
  .navbar-actions {
    margin-right: 40px !important;
  }
}
 
@media (min-width: 1500px) {
  .hero-header-content {
    width: 82vw;
    max-width: 1920px;
    min-width: 1200px;
  }
  .hero-header-left,
  .hero-header-right {
    max-width: none;
    flex: 1 1 0;
  }
  .hero-header-right img {
    max-width: 640px;
    min-width: 320px;
    width: 100%;
  }
}
@media (min-width: 2000px) {
  .hero-header-content {
    width: 70vw;
    max-width: 2400px;
    min-width: 1200px;
  }
  .hero-header-right img {
    max-width: 820px;
  }
}
@media (min-width: 2560px) {
  .hero-header-content {
    width: 64vw;
    max-width: 2600px;
    min-width: 1400px;
  }
  .hero-header-right img {
    max-width: 950px;
  }
}
.hero-header-content {
  min-width: max(900px, 60vw);
}
.hero-header-left {
  padding: clamp(38px, 6vw, 100px) clamp(32px, 4vw, 80px) clamp(24px, 4vw, 80px) clamp(32px, 4vw, 100px);
}
.hero-header-left,
.hero-header-right {
  flex: 1 1 0;
  min-width: 0;
  max-width: unset;
}
.hero-header-right img {
  width: 100%;
  max-width: 100%;
  min-width: 300px;
  min-height: 340px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 2px 24px #3333;
  background: #222;
  display: block;
  margin: 0 auto;
}
