@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@500;700;900&family=Noto+Sans+TC:wght@400;500;700&display=swap');

:root {
  --maroon: #82301a;
  --maroon-dark: #3b1008;
  --maroon-light: #b86d40;
  --gold: #cb8c43;
  --gold-light: #e49a54;
  --gold-deep: #e16c2f;
  --cream: #ebe1d0;
  --paper: #f6f1e6;
  --ink: #3a2317;
  --ink-soft: #7f887e;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(59, 16, 8, 0.14);
  --shadow-sm: 0 4px 14px rgba(59, 16, 8, 0.09);
}

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

body {
  margin: 0;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: "Noto Serif TC", serif;
  margin: 0;
  color: var(--maroon-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--maroon-dark);
  color: var(--gold-light);
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar-links { display: flex; gap: 18px; }
.topbar-links span { opacity: .85; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 242, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(225, 108, 47, 0.25);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-light), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.35), var(--shadow-sm);
}
.logo-img {
  height: 50px;
  width: auto;
  border-radius: 10px;
}
.footer-brand .logo-img {
  height: 56px;
}
.brand-name {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--maroon-dark);
  letter-spacing: 2px;
}
.brand-sub {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--maroon);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-deep);
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--maroon);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
.cart-btn:hover { background: var(--maroon-light); }
.cart-count {
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 12px;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.nav-toggle { display: none; }
.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--maroon);
  padding: 4px 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon) 55%, var(--maroon-light));
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,161,90,0.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,161,90,0.25), transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(232,205,148,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: 46px;
  line-height: 1.4;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--maroon-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-maroon {
  background: var(--maroon);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-maroon:hover { background: var(--maroon-light); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* hero token stack (illustration, blended into hero background — no box/frame) */
.hero-token {
  position: relative;
  justify-self: center;
  width: 340px;
  height: 460px;
  animation: float 6s ease-in-out infinite;
}
.hero-token img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: lighten;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

/* ---------- Section shells ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--paper); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.eyebrow {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { font-size: 30px; }
.section-desc { color: var(--ink-soft); font-size: 15px; max-width: 560px; }
.link-more {
  font-weight: 700;
  color: var(--maroon);
  white-space: nowrap;
}
.link-more:hover { color: var(--maroon-light); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  border: 1px solid rgba(225,108,47,0.12);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.block {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: #fff;
  position: relative;
}
.block::after {
  content: attr(data-tag);
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  color: var(--maroon-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
}
.block-maroon { background: linear-gradient(150deg, var(--maroon-light), var(--maroon-dark)); }
.block-gold { background: linear-gradient(150deg, var(--gold-light), var(--gold-deep)); }
.block-goldlight { background: linear-gradient(150deg, #f3e3bd, var(--gold)); }
.block-ink { background: linear-gradient(150deg, #4a3d34, var(--ink)); }

/* real product photo (used in place of .block once a photo is available) */
.product-photo {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-photo::after {
  content: attr(data-tag);
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--maroon-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
}
.product-detail .product-photo { border-radius: var(--radius); aspect-ratio: 1/1; }

/* news card */
.news-card { padding: 22px; display: flex; gap: 16px; flex-direction: column; }
.news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 1px;
}
.news-card h3 { font-size: 17px; line-height: 1.5; }
.news-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* service / feature card */
.feature-card { padding: 30px 24px; text-align: center; }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  background: linear-gradient(150deg, var(--gold-light), var(--gold));
}
.feature-icon-photo {
  width: 84px;
  height: 84px;
  background: none;
  overflow: hidden;
  border-radius: 20px;
}
.feature-icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.feature-card h3 { font-size: 17px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 14px; }

/* product card */
.product-card { display: flex; flex-direction: column; }
.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 12px; color: var(--gold-deep); font-weight: 700; letter-spacing: 1px; }
.product-title { font-size: 17px; color: var(--maroon-dark); font-family: "Noto Serif TC", serif; font-weight: 700; }
.product-desc { font-size: 13px; color: var(--ink-soft); flex: 1; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.price { font-size: 20px; font-weight: 900; color: var(--maroon); }
.price small { font-size: 12px; font-weight: 500; color: var(--ink-soft); }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-chip {
  padding: 9px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(225,108,47,0.3);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.filter-chip.active, .filter-chip:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

/* culture list */
.culture-card { padding: 26px; }
.culture-card .block { border-radius: 12px; margin-bottom: 16px; aspect-ratio: 16/9; font-size: 40px; }
.culture-card h3 { font-size: 18px; margin-bottom: 8px; }
.culture-card p { color: var(--ink-soft); font-size: 14px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--gold-light);
  color: var(--maroon-dark);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* banner CTA */
.cta-banner {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 60%, var(--gold-light));
  border-radius: 24px;
  padding: 52px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--maroon-dark);
}
.cta-banner h2 { font-size: 26px; margin-bottom: 10px; }
.cta-banner p { color: #5c3e12; font-size: 14px; max-width: 460px; }

/* deity strip */
.deity-strip { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 6px; }
.deity-token {
  min-width: 150px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(225,108,47,0.15);
}
.deity-token .glyph {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: linear-gradient(150deg, var(--maroon-light), var(--maroon-dark));
  color: var(--gold-light);
}
.deity-token h4 { font-size: 14px; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(120deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  padding: 56px 0 46px;
}
.page-header .eyebrow { color: var(--gold-light); }
.page-header h1 { color: #fff; font-size: 34px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 10px; }
.breadcrumb a { color: var(--gold-light); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(225,108,47,0.3);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--maroon);
}
.radio-row { display: flex; gap: 14px; flex-wrap: wrap; }
.radio-option {
  flex: 1;
  min-width: 220px;
  border: 1.5px solid rgba(225,108,47,0.3);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.radio-option input { margin-top: 3px; }
.radio-option strong { display: block; font-size: 14px; margin-bottom: 4px; }
.radio-option span.desc { font-size: 12px; color: var(--ink-soft); }
.radio-option.selected { border-color: var(--maroon); background: rgba(122,31,43,0.04); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand-name { color: #fff; }
.footer-col h4 { color: var(--gold-light); font-size: 14px; margin-bottom: 16px; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--gold-deep); }

/* ---------- misc ---------- */
.notice-bar {
  background: var(--gold-light);
  color: #5c3e12;
  text-align: center;
  font-size: 13px;
  padding: 9px 0;
  font-weight: 600;
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
}
.empty-state .glyph { font-size: 54px; margin-bottom: 16px; }

table.cart-table { width: 100%; border-collapse: collapse; }
table.cart-table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-soft);
  padding: 0 12px 14px;
  border-bottom: 1px solid rgba(225,108,47,0.25);
}
table.cart-table td {
  padding: 18px 12px;
  border-bottom: 1px solid rgba(225,108,47,0.12);
  vertical-align: middle;
  font-size: 14px;
}
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-thumb {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; flex-shrink: 0;
}
.qty-control { display: inline-flex; align-items: center; border: 1px solid rgba(225,108,47,0.3); border-radius: 999px; overflow: hidden; }
.qty-control button { background: none; border: none; width: 30px; height: 30px; font-size: 16px; color: var(--maroon); }
.qty-control span { width: 28px; text-align: center; font-weight: 700; font-size: 13px; }
.remove-link { color: #a33; font-size: 12px; font-weight: 700; }

.summary-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(225,108,47,0.15);
}
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; color: var(--ink-soft); }
.summary-row.total { font-size: 18px; font-weight: 900; color: var(--maroon-dark); border-top: 1px dashed rgba(225,108,47,0.35); padding-top: 14px; margin-top: 4px; }

.step-track { display: flex; align-items: center; gap: 8px; margin-bottom: 40px; }
.step-track .step { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); font-weight: 700; }
.step-track .step .dot { width: 26px; height: 26px; border-radius: 50%; background: #e6dcc8; color: var(--maroon-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.step-track .step.active .dot { background: var(--maroon); color: #fff; }
.step-track .step.active { color: var(--maroon-dark); }
.step-track .sep { flex: 1; height: 1px; background: rgba(225,108,47,0.3); }

.confirm-box {
  text-align: center;
  padding: 60px 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.confirm-box .glyph {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; margin: 0 auto 22px;
}

.product-detail { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; }
.product-detail .block { border-radius: var(--radius); font-size: 90px; aspect-ratio: 1/1; }
.product-detail h1 { font-size: 28px; margin-bottom: 14px; }
.detail-price { font-size: 30px; font-weight: 900; color: var(--maroon); margin: 14px 0; }
.detail-desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.stock-note { font-size: 12px; color: var(--gold-deep); font-weight: 700; }
.detail-list { margin: 18px 0; }
.detail-list li { font-size: 13px; color: var(--ink-soft); padding-left: 18px; position: relative; margin-bottom: 8px; }
.detail-list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold-deep); font-size: 9px; top: 5px; }

.occasion-label { font-size: 13px; font-weight: 700; color: var(--ink); margin: 4px 0 10px; }
.occasion-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.occasion-chip {
  font-size: 12px;
  background: var(--paper);
  border: 1px solid rgba(225,108,47,0.3);
  color: var(--ink-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.price-note { font-size: 13px; color: var(--ink-soft); margin-left: 10px; }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--maroon-dark);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Coming soon / launch countdown ---------- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon) 55%, var(--maroon-light));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,161,90,0.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(201,161,90,0.25), transparent 40%);
  pointer-events: none;
}
.coming-soon-inner { position: relative; max-width: 640px; }
.coming-soon .logo-img { margin: 0 auto 28px; height: 64px; }
.coming-soon-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(232,205,148,0.4);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.coming-soon h1 { color: #fff; font-size: 34px; margin-bottom: 16px; }
.coming-soon p.lead { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 40px; }
#countdown { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.cd-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  min-width: 84px;
  padding: 18px 10px;
}
.cd-box span {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--gold-light);
}
.cd-box small { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 1px; }
.coming-soon .contact-line { font-size: 13px; color: rgba(255,255,255,0.7); }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 50px; min-width: 0; }
  .hero-inner > div { min-width: 0; }
  .hero-token { order: -1; width: 220px; height: 300px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .nav-toggle-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid rgba(225,108,47,0.2);
    box-shadow: var(--shadow);
    padding: 6px 24px 16px;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid rgba(225,108,47,0.12); }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { font-weight: 700; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .nav-cart { gap: 10px; }
}
