/* ════════════════════════════════════════════════════════════════════
   Google 商家資訊卡 — 11 款版型總集 (gbc-styles.all.css)
   v2.2.0  ·  純 CSS · 無 JS · HTML 結構不變
   使用：在 .gbc-wrap 上加 gbc-style-{name} 切換版型
   版型清單：aurora, tokyo, dusk, sakura, aloha, trail, pop, bistro, notion, riso, y2k
   ════════════════════════════════════════════════════════════════════ */


/* ════════════ AURORA ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Aurora（極光）
   定位：深色玻璃感 × 漸層光暈，適合美食、選物、夜生活、質感旅宿
   特色：深藍紫底 + 青綠色光暈 + 玻璃模糊質感 + 等寬數字
   ══════════════════════════════════════════════════════════════ */

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

/* ── 變數與外殼 ─────────────────────────────── */
.gbc-style-aurora {
  --au-bg: #0a0e1a;
  --au-card: #11162a;
  --au-card-2: #161c34;
  --au-line: rgba(255,255,255,.08);
  --au-line-2: rgba(255,255,255,.14);
  --au-text: #eef1ff;
  --au-text-dim: #8b93b5;
  --au-text-mute: #5a6285;
  --au-accent: #7df9c8;       /* 主色：薄荷青 */
  --au-accent-2: #b388ff;     /* 紫 */
  --au-accent-3: #5ec8ff;     /* 藍 */
  --au-warn: #ff8a5b;
  --au-radius: 20px;
  font-family: 'Noto Sans TC', system-ui, sans-serif;
  color: var(--au-text);
  max-width: 560px;
  margin: 0 auto;
}

.gbc-style-aurora .gbc-card {
  position: relative;
  background: var(--au-card);
  border-radius: var(--au-radius);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--au-line);
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 30px 60px -20px rgba(0,0,0,.5),
    0 8px 20px -8px rgba(0,0,0,.4);
}

/* 漸層光暈頂飾 */
.gbc-style-aurora .gbc-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 220px;
  background:
    radial-gradient(60% 80% at 15% 0%, rgba(125,249,200,.22), transparent 60%),
    radial-gradient(50% 70% at 85% 0%, rgba(179,136,255,.20), transparent 65%),
    radial-gradient(40% 50% at 50% 0%, rgba(94,200,255,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.gbc-style-aurora .gbc-card::after {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--au-accent) 30%, var(--au-accent-2) 70%, transparent);
  opacity: .6;
  z-index: 1;
}

.gbc-style-aurora > .gbc-card > * {
  position: relative;
  z-index: 2;
}

/* ── 區塊 1：標頭 ─────────────────────────────── */
.gbc-style-aurora .gbc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 22px 22px 20px;
  align-items: start;
}

.gbc-style-aurora .gbc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--au-card-2);
  border: 1px solid var(--au-line-2);
  box-shadow: 0 0 0 4px rgba(125,249,200,.08), 0 8px 24px -8px rgba(125,249,200,.3);
}
.gbc-style-aurora .gbc-avatar-photo,
.gbc-style-aurora .gbc-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gbc-style-aurora .gbc-head-text {
  min-width: 0;
}
.gbc-style-aurora .gbc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--au-accent);
  margin-bottom: 6px;
}
.gbc-style-aurora .gbc-name {
  font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 4px;
  color: var(--au-text);
}
.gbc-style-aurora .gbc-address-short {
  font-size: 12.5px;
  color: var(--au-text-dim);
  margin: 0;
  line-height: 1.5;
}

.gbc-style-aurora .gbc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid var(--au-line-2);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.gbc-style-aurora .gbc-status-open {
  color: var(--au-accent);
  border-color: rgba(125,249,200,.3);
  background: rgba(125,249,200,.08);
}
.gbc-style-aurora .gbc-status-closed {
  color: var(--au-text-mute);
}
.gbc-style-aurora .gbc-dot-blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--au-accent);
  box-shadow: 0 0 8px var(--au-accent);
  animation: au-blink 2s ease-in-out infinite;
}
@keyframes au-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ── 區塊 2：評分區 ─────────────────────────────── */
.gbc-style-aurora .gbc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin: 0 22px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--au-line);
  border: 1px solid var(--au-line);
}
.gbc-style-aurora .gbc-metric {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  padding: 16px 12px 14px;
  text-align: center;
}
.gbc-style-aurora .gbc-metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--au-text);
  font-variant-numeric: tabular-nums;
}
.gbc-style-aurora .gbc-today-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--au-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gbc-style-aurora .gbc-stars {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin: 6px 0 4px;
  font-size: 11px;
  color: var(--au-accent);
  letter-spacing: 0;
}
.gbc-style-aurora .gbc-stars .half {
  background: linear-gradient(90deg, var(--au-accent) 50%, rgba(125,249,200,.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gbc-style-aurora .gbc-metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--au-text-mute);
  margin-top: 4px;
}
.gbc-style-aurora .gbc-metric-sub {
  font-size: 10.5px;
  color: var(--au-text-dim);
  margin-top: 2px;
}

/* ── 區塊 3：週時段 ─────────────────────────────── */
.gbc-style-aurora .gbc-hours {
  padding: 22px 22px 18px;
  margin-top: 18px;
}
.gbc-style-aurora .gbc-hours-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.gbc-style-aurora .gbc-hours-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--au-text-dim);
  margin: 0;
}
.gbc-style-aurora .gbc-hours-title::before {
  content: "// ";
  color: var(--au-accent);
}

.gbc-style-aurora .gbc-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.gbc-style-aurora .gbc-day-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 4px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid transparent;
  transition: background .2s;
}
.gbc-style-aurora .gbc-day-col.gbc-today {
  background: rgba(125,249,200,.06);
  border-color: rgba(125,249,200,.25);
  box-shadow: 0 0 24px -8px rgba(125,249,200,.4);
}
.gbc-style-aurora .gbc-bar-track {
  width: 8px;
  height: 56px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.gbc-style-aurora .gbc-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--au-accent), rgba(125,249,200,.4));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(125,249,200,.5);
}
.gbc-style-aurora .gbc-day-col.gbc-today .gbc-bar-fill {
  background: linear-gradient(180deg, #ffffff, var(--au-accent));
  box-shadow: 0 0 16px rgba(125,249,200,.7);
}
.gbc-style-aurora .gbc-bar-closed {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.1);
}
.gbc-style-aurora .gbc-closed-mark {
  font-size: 11px;
  color: var(--au-text-mute);
  align-self: center;
  margin: auto;
}
.gbc-style-aurora .gbc-day-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--au-text-dim);
}
.gbc-style-aurora .gbc-day-col.gbc-today .gbc-day-label {
  color: var(--au-accent);
}
.gbc-style-aurora .gbc-day-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: var(--au-text-mute);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── 區塊 4：資訊格 ─────────────────────────────── */
.gbc-style-aurora .gbc-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 22px;
  background: var(--au-line);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--au-line);
}
.gbc-style-aurora .gbc-cell {
  background: rgba(255,255,255,.02);
  padding: 14px 14px 12px;
}
.gbc-style-aurora .gbc-cell.gbc-full {
  grid-column: 1 / -1;
}
.gbc-style-aurora .gbc-cell-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--au-text-mute);
  margin-bottom: 4px;
}
.gbc-style-aurora .gbc-cell-val {
  font-size: 13.5px;
  color: var(--au-text);
  line-height: 1.45;
  word-break: break-all;
}
.gbc-style-aurora .gbc-cell-link {
  color: var(--au-accent-3);
  text-decoration: none;
  border-bottom: 1px dashed rgba(94,200,255,.4);
  transition: color .15s;
}
.gbc-style-aurora .gbc-cell-link:hover {
  color: var(--au-accent);
  border-bottom-color: var(--au-accent);
}

/* ── 區塊 5：按鈕 ─────────────────────────────── */
.gbc-style-aurora .gbc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 18px 22px 0;
  background: transparent;
  border-top: none;
}
.gbc-style-aurora .gbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid var(--au-line-2);
  transition: transform .12s, box-shadow .15s, background .15s;
}
.gbc-style-aurora .gbc-btn-ico {
  font-size: 15px;
}
.gbc-style-aurora .gbc-btn-pri {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--au-accent), #4dd6a3);
  color: #042418;
  border-color: rgba(125,249,200,.5);
  box-shadow: 0 8px 20px -6px rgba(125,249,200,.5), 0 1px 0 rgba(255,255,255,.4) inset;
}
.gbc-style-aurora .gbc-btn-pri:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(125,249,200,.7), 0 1px 0 rgba(255,255,255,.5) inset;
}
.gbc-style-aurora .gbc-btn-sec {
  background: rgba(125,249,200,.10);
  color: #ffffff;
  border-color: rgba(125,249,200,.45);
  backdrop-filter: blur(8px);
}
.gbc-style-aurora .gbc-btn-sec:hover {
  background: rgba(125,249,200,.18);
  border-color: var(--au-accent);
  color: var(--au-accent);
}
.gbc-style-aurora .gbc-btn-ticket {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--au-warn), #ff5e7c);
  color: #fff;
  border-color: rgba(255,138,91,.4);
  box-shadow: 0 8px 20px -6px rgba(255,94,124,.5), 0 1px 0 rgba(255,255,255,.2) inset;
}

/* ── 區塊 6：頁尾 ─────────────────────────────── */
.gbc-style-aurora .gbc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px 18px;
  margin-top: 18px;
  border-top: 1px solid var(--au-line);
  background: rgba(0,0,0,.2);
  font-size: 10.5px;
  color: var(--au-text-mute);
  flex-wrap: wrap;
  gap: 6px;
}
.gbc-style-aurora .gbc-foot-txt {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}
.gbc-style-aurora .gbc-foot-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
}
.gbc-style-aurora .gbc-foot-date {
  color: var(--au-text-dim);
}
.gbc-style-aurora .gbc-powered-by {
  color: var(--au-text-mute);
  opacity: .7;
}

/* ── 手機適配 ≤ 380px ─────────────────────────────── */
@media (max-width: 380px) {
  .gbc-style-aurora .gbc-head { padding: 18px 16px 16px; gap: 10px; grid-template-columns: auto 1fr; }
  .gbc-style-aurora .gbc-status { grid-column: 1 / -1; justify-self: start; }
  .gbc-style-aurora .gbc-name { font-size: 19px; }
  .gbc-style-aurora .gbc-metrics,
  .gbc-style-aurora .gbc-info { margin: 0 16px; }
  .gbc-style-aurora .gbc-hours,
  .gbc-style-aurora .gbc-actions { padding-left: 16px; padding-right: 16px; }
  .gbc-style-aurora .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-aurora .gbc-metric-num { font-size: 22px; }
  .gbc-style-aurora .gbc-today-time { font-size: 13px; }
  .gbc-style-aurora .gbc-bar-track { height: 44px; width: 6px; }
}


/* ════════════ TOKYO ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Tokyo（東京）
   定位：黑白編輯雜誌風 × 一抹日本紅，適合都會生活、深度遊記
   特色：大量留白、襯線標題、極細邊線、編號裝飾、紅色強調
   ══════════════════════════════════════════════════════════════ */

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

/* ── 變數與外殼 ─────────────────────────────── */
.gbc-style-tokyo {
  --tk-paper: #fafaf7;
  --tk-card: #ffffff;
  --tk-ink: #1a1a1a;
  --tk-ink-2: #4a4a48;
  --tk-ink-3: #8b8b86;
  --tk-line: #1a1a1a;
  --tk-rule: #e6e3d9;
  --tk-red: #c8102e;        /* 日本紅 */
  --tk-red-deep: #8b0a1f;
  --tk-warm: #faf6ec;
  font-family: 'Noto Sans TC', system-ui, sans-serif;
  color: var(--tk-ink);
  max-width: 560px;
  margin: 0 auto;
  background: var(--tk-paper);
}

.gbc-style-tokyo .gbc-card {
  background: var(--tk-card);
  border: 1px solid var(--tk-ink);
  border-radius: 0;
  padding: 0;
  position: relative;
  box-shadow: 6px 6px 0 var(--tk-ink);
}

/* 雙線頂部裝飾 */
.gbc-style-tokyo .gbc-card::before {
  content: "";
  position: absolute;
  top: 5px; left: 5px; right: 5px; bottom: 5px;
  border: 1px solid var(--tk-ink);
  pointer-events: none;
  z-index: 0;
}

.gbc-style-tokyo > .gbc-card > * {
  position: relative;
  z-index: 1;
}

/* ── 區塊 1：標頭 ─────────────────────────────── */
.gbc-style-tokyo .gbc-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--tk-ink);
  position: relative;
}

/* 編號標誌 N°01 */
.gbc-style-tokyo .gbc-head::before {
  content: "N° 01";
  position: absolute;
  top: 14px;
  right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--tk-ink-3);
  letter-spacing: .08em;
}

.gbc-style-tokyo .gbc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--tk-ink);
  flex-shrink: 0;
  filter: grayscale(.15) contrast(1.05);
}
.gbc-style-tokyo .gbc-avatar-photo,
.gbc-style-tokyo .gbc-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gbc-style-tokyo .gbc-head-text {
  min-width: 0;
  padding-top: 4px;
}
.gbc-style-tokyo .gbc-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--tk-red);
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--tk-red);
}
.gbc-style-tokyo .gbc-name {
  font-family: 'Noto Serif TC', 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.005em;
  margin: 0 0 8px;
  color: var(--tk-ink);
}
.gbc-style-tokyo .gbc-address-short {
  font-family: 'Cormorant Garamond', 'Noto Serif TC', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--tk-ink-2);
  margin: 0;
  line-height: 1.5;
}

.gbc-style-tokyo .gbc-status {
  position: absolute;
  bottom: 16px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: none;
  border: none;
}
.gbc-style-tokyo .gbc-status-open { color: var(--tk-ink); }
.gbc-style-tokyo .gbc-status-closed { color: var(--tk-ink-3); }
.gbc-style-tokyo .gbc-dot-blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tk-red);
  animation: tk-pulse 1.6s ease-in-out infinite;
}
@keyframes tk-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.85); }
}

/* ── 區塊 2：評分區 ─────────────────────────────── */
.gbc-style-tokyo .gbc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--tk-rule);
}
.gbc-style-tokyo .gbc-metric {
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid var(--tk-rule);
}
.gbc-style-tokyo .gbc-metric:last-child { border-right: none; }

.gbc-style-tokyo .gbc-metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--tk-ink);
  font-variant-numeric: tabular-nums;
}
.gbc-style-tokyo .gbc-today-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--tk-ink);
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.gbc-style-tokyo .gbc-stars {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin: 8px 0 6px;
  font-size: 11px;
  color: var(--tk-red);
  letter-spacing: 1px;
}
.gbc-style-tokyo .gbc-stars .half {
  background: linear-gradient(90deg, var(--tk-red) 50%, #e8d5d8 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gbc-style-tokyo .gbc-metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tk-ink-3);
  margin-top: 8px;
}
.gbc-style-tokyo .gbc-metric-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--tk-ink-2);
  margin-top: 4px;
}

/* ── 區塊 3：週時段 ─────────────────────────────── */
.gbc-style-tokyo .gbc-hours {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--tk-rule);
  position: relative;
}
.gbc-style-tokyo .gbc-hours-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.gbc-style-tokyo .gbc-hours-title {
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--tk-ink);
  margin: 0;
  position: relative;
  padding-left: 18px;
}
.gbc-style-tokyo .gbc-hours-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--tk-red);
}

.gbc-style-tokyo .gbc-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  align-items: end;
}
.gbc-style-tokyo .gbc-day-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 2px 8px;
  position: relative;
}
.gbc-style-tokyo .gbc-day-col.gbc-today::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--tk-red);
  border-radius: 50%;
}
.gbc-style-tokyo .gbc-bar-track {
  width: 100%;
  height: 64px;
  background: var(--tk-warm);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.gbc-style-tokyo .gbc-bar-fill {
  width: 100%;
  background: var(--tk-ink);
  border-radius: 0;
}
.gbc-style-tokyo .gbc-day-col.gbc-today .gbc-bar-fill {
  background: var(--tk-red);
}
.gbc-style-tokyo .gbc-bar-closed {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    var(--tk-rule) 4px,
    var(--tk-rule) 5px
  );
}
.gbc-style-tokyo .gbc-closed-mark {
  font-family: 'Noto Serif TC', serif;
  font-size: 13px;
  color: var(--tk-ink-3);
  align-self: center;
  margin: auto;
  background: var(--tk-card);
  padding: 0 4px;
}
.gbc-style-tokyo .gbc-day-label {
  font-family: 'Noto Serif TC', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--tk-ink);
}
.gbc-style-tokyo .gbc-day-col.gbc-today .gbc-day-label {
  color: var(--tk-red);
  font-weight: 600;
}
.gbc-style-tokyo .gbc-day-time {
  font-family: 'Inter', sans-serif;
  font-size: 8.5px;
  color: var(--tk-ink-3);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── 區塊 4：資訊格 ─────────────────────────────── */
.gbc-style-tokyo .gbc-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.gbc-style-tokyo .gbc-cell {
  padding: 18px 28px 16px;
  border-bottom: 1px solid var(--tk-rule);
  border-right: 1px solid var(--tk-rule);
}
.gbc-style-tokyo .gbc-cell:nth-child(2n) { border-right: none; }
.gbc-style-tokyo .gbc-cell.gbc-full {
  grid-column: 1 / -1;
  border-right: none;
}
.gbc-style-tokyo .gbc-cell-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--tk-ink-3);
  margin-bottom: 6px;
}
.gbc-style-tokyo .gbc-cell-val {
  font-family: 'Noto Serif TC', serif;
  font-size: 14.5px;
  color: var(--tk-ink);
  line-height: 1.45;
  word-break: break-all;
}
.gbc-style-tokyo .gbc-cell-link {
  color: var(--tk-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--tk-ink);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.gbc-style-tokyo .gbc-cell-link:hover {
  color: var(--tk-red);
  border-bottom-color: var(--tk-red);
}

/* ── 區塊 5：按鈕 ─────────────────────────────── */
.gbc-style-tokyo .gbc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--tk-ink);
}
.gbc-style-tokyo .gbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 16px;
  border-radius: 0;
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-right: 1px solid var(--tk-rule);
  border-bottom: 1px solid var(--tk-rule);
  transition: background .15s, color .15s;
  background: var(--tk-card);
  color: var(--tk-ink);
}
.gbc-style-tokyo .gbc-btn:nth-child(2n) { border-right: none; }
.gbc-style-tokyo .gbc-btn-ico {
  font-size: 14px;
  letter-spacing: 0;
}
.gbc-style-tokyo .gbc-btn-pri {
  grid-column: 1 / -1;
  background: var(--tk-ink);
  color: #fff;
  border-right: none;
  height: 60px;
  font-size: 14px;
}
.gbc-style-tokyo .gbc-btn-pri:hover {
  background: var(--tk-red);
}
.gbc-style-tokyo .gbc-btn-sec {
  background: var(--tk-card);
  color: var(--tk-ink);
}
.gbc-style-tokyo .gbc-btn-sec:hover {
  background: var(--tk-warm);
}
.gbc-style-tokyo .gbc-btn-ticket {
  grid-column: 1 / -1;
  background: var(--tk-red);
  color: #fff;
  border-right: none;
  height: 60px;
  font-size: 14px;
}
.gbc-style-tokyo .gbc-btn-ticket:hover {
  background: var(--tk-red-deep);
}

/* ── 區塊 6：頁尾 ─────────────────────────────── */
.gbc-style-tokyo .gbc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px 18px;
  background: var(--tk-warm);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--tk-ink-3);
  letter-spacing: .08em;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--tk-rule);
}
.gbc-style-tokyo .gbc-foot-txt {
  font-style: normal;
}
.gbc-style-tokyo .gbc-foot-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gbc-style-tokyo .gbc-foot-date {
  font-variant-numeric: tabular-nums;
}
.gbc-style-tokyo .gbc-powered-by {
  opacity: .8;
}

/* ── 手機適配 ≤ 380px ─────────────────────────────── */
@media (max-width: 380px) {
  .gbc-style-tokyo .gbc-card { box-shadow: 4px 4px 0 var(--tk-ink); }
  .gbc-style-tokyo .gbc-head { padding: 24px 18px 20px; }
  .gbc-style-tokyo .gbc-head::before { right: 18px; top: 10px; font-size: 11px; }
  .gbc-style-tokyo .gbc-status { right: 18px; bottom: 12px; font-size: 9px; }
  .gbc-style-tokyo .gbc-name { font-size: 22px; }
  .gbc-style-tokyo .gbc-metrics,
  .gbc-style-tokyo .gbc-hours { padding: 22px 18px 20px; }
  .gbc-style-tokyo .gbc-metric-num { font-size: 32px; }
  .gbc-style-tokyo .gbc-today-time { font-size: 18px; }
  .gbc-style-tokyo .gbc-cell { padding: 14px 18px; }
  .gbc-style-tokyo .gbc-bar-track { height: 52px; }
  .gbc-style-tokyo .gbc-foot { padding: 14px 18px; font-size: 9.5px; }
}


/* ════════════ DUSK ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Dusk（黃昏）
   定位：大地戶外暖風 × 礦物色手作感，適合親子旅遊、自然景點
   特色：黏土橘 / 苔綠 / 米色，圓潤柔邊、虛線分隔、輕鬆友善
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&family=Noto+Sans+TC:wght@400;500;600;700&display=swap');

/* ── 變數與外殼 ─────────────────────────────── */
.gbc-style-dusk {
  --du-bg: #f4ede1;
  --du-card: #fbf6ec;
  --du-card-2: #f4ecdb;
  --du-line: #e0d2b8;
  --du-line-soft: #ead9bd;
  --du-ink: #2b2118;
  --du-ink-2: #5b4a39;
  --du-ink-3: #8a7458;
  --du-clay: #d56a3f;       /* 主色：黏土橘 */
  --du-clay-deep: #a84a25;
  --du-moss: #6b8a4e;       /* 苔綠 */
  --du-moss-deep: #4a6533;
  --du-sky: #7a9bb8;
  --du-warn: #e8533c;
  --du-radius: 24px;
  font-family: 'Noto Sans TC', system-ui, sans-serif;
  color: var(--du-ink);
  max-width: 560px;
  margin: 0 auto;
}

.gbc-style-dusk .gbc-card {
  background: var(--du-card);
  border-radius: var(--du-radius);
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--du-line);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 12px 32px -12px rgba(102,72,38,.18),
    0 4px 8px -4px rgba(102,72,38,.1);
}

/* 頂部曬斑色塊（hero 感） */
.gbc-style-dusk .gbc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130px;
  background:
    radial-gradient(60% 100% at 20% 0%, rgba(213,106,63,.22), transparent 70%),
    radial-gradient(50% 80% at 100% 0%, rgba(107,138,78,.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gbc-style-dusk > .gbc-card > * {
  position: relative;
  z-index: 1;
}

/* ── 區塊 1：標頭 ─────────────────────────────── */
.gbc-style-dusk .gbc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 24px 24px 22px;
  align-items: start;
}

.gbc-style-dusk .gbc-avatar {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--du-card-2);
  border: 2px solid var(--du-card);
  box-shadow: 0 0 0 1px var(--du-line), 0 6px 14px -4px rgba(213,106,63,.3);
  transform: rotate(-2deg);
}
.gbc-style-dusk .gbc-avatar-photo,
.gbc-style-dusk .gbc-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gbc-style-dusk .gbc-head-text { min-width: 0; padding-top: 2px; }
.gbc-style-dusk .gbc-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--du-moss-deep);
  background: rgba(107,138,78,.14);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.gbc-style-dusk .gbc-name {
  font-family: 'Fraunces', 'Noto Serif TC', serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.005em;
  margin: 0 0 4px;
  color: var(--du-ink);
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.gbc-style-dusk .gbc-address-short {
  font-size: 13px;
  color: var(--du-ink-2);
  margin: 0;
  line-height: 1.5;
}

.gbc-style-dusk .gbc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  border: 1px solid transparent;
}
.gbc-style-dusk .gbc-status-open {
  color: var(--du-moss-deep);
  background: rgba(107,138,78,.16);
  border-color: rgba(107,138,78,.3);
}
.gbc-style-dusk .gbc-status-closed {
  color: var(--du-ink-3);
  background: var(--du-card-2);
}
.gbc-style-dusk .gbc-dot-blink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--du-moss);
  position: relative;
}
.gbc-style-dusk .gbc-dot-blink::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--du-moss);
  opacity: .35;
  animation: du-ripple 2s ease-out infinite;
}
@keyframes du-ripple {
  0% { transform: scale(.6); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── 區塊 2：評分區 ─────────────────────────────── */
.gbc-style-dusk .gbc-metrics {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  margin: 0 24px;
  background: var(--du-card-2);
  border-radius: 18px;
  padding: 18px 4px 16px;
  position: relative;
  border: 1px solid var(--du-line-soft);
}
.gbc-style-dusk .gbc-metric {
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.gbc-style-dusk .gbc-metric + .gbc-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    var(--du-line) 0 3px,
    transparent 3px 6px
  );
}

.gbc-style-dusk .gbc-metric-num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--du-clay);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.gbc-style-dusk .gbc-today-time {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--du-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gbc-style-dusk .gbc-stars {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin: 6px 0 4px;
  font-size: 12px;
  color: var(--du-clay);
}
.gbc-style-dusk .gbc-stars .half {
  background: linear-gradient(90deg, var(--du-clay) 50%, rgba(213,106,63,.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gbc-style-dusk .gbc-metric-label {
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--du-ink-3);
  margin-top: 6px;
  font-weight: 500;
}
.gbc-style-dusk .gbc-metric-sub {
  font-size: 11px;
  color: var(--du-ink-2);
  margin-top: 2px;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* ── 區塊 3：週時段 ─────────────────────────────── */
.gbc-style-dusk .gbc-hours {
  padding: 24px 24px 20px;
  margin-top: 22px;
}
.gbc-style-dusk .gbc-hours-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.gbc-style-dusk .gbc-hours-title {
  font-family: 'Fraunces', 'Noto Serif TC', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--du-ink);
  margin: 0;
  font-style: italic;
}
.gbc-style-dusk .gbc-hours-title::after {
  content: " ✦";
  color: var(--du-clay);
  font-style: normal;
}

.gbc-style-dusk .gbc-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  align-items: end;
}
.gbc-style-dusk .gbc-day-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 2px 6px;
  position: relative;
  border-radius: 12px;
}
.gbc-style-dusk .gbc-day-col.gbc-today {
  background: rgba(213,106,63,.1);
}
.gbc-style-dusk .gbc-day-col.gbc-today::before {
  content: "今";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--du-clay);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--du-card);
  box-shadow: 0 2px 6px rgba(213,106,63,.4);
}
.gbc-style-dusk .gbc-bar-track {
  width: 100%;
  height: 60px;
  background: var(--du-card-2);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid var(--du-line-soft);
}
.gbc-style-dusk .gbc-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--du-clay), #b85530);
  border-radius: 6px 6px 0 0;
}
.gbc-style-dusk .gbc-day-col.gbc-today .gbc-bar-fill {
  background: linear-gradient(180deg, var(--du-clay), var(--du-clay-deep));
}
.gbc-style-dusk .gbc-bar-closed {
  background: var(--du-card-2);
  border: 1px dashed var(--du-line);
}
.gbc-style-dusk .gbc-closed-mark {
  font-family: 'Fraunces', 'Noto Serif TC', serif;
  font-size: 13px;
  color: var(--du-ink-3);
  align-self: center;
  margin: auto;
  font-style: italic;
}
.gbc-style-dusk .gbc-day-label {
  font-family: 'Fraunces', 'Noto Serif TC', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--du-ink-2);
}
.gbc-style-dusk .gbc-day-col.gbc-today .gbc-day-label {
  color: var(--du-clay-deep);
}
.gbc-style-dusk .gbc-day-time {
  font-family: 'Outfit', sans-serif;
  font-size: 8.5px;
  color: var(--du-ink-3);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ── 區塊 4：資訊格 ─────────────────────────────── */
.gbc-style-dusk .gbc-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 24px;
}
.gbc-style-dusk .gbc-cell {
  background: var(--du-card-2);
  padding: 14px 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--du-line-soft);
}
.gbc-style-dusk .gbc-cell.gbc-full {
  grid-column: 1 / -1;
}
.gbc-style-dusk .gbc-cell-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--du-ink-3);
  margin-bottom: 4px;
  font-weight: 600;
}
.gbc-style-dusk .gbc-cell-val {
  font-size: 13.5px;
  color: var(--du-ink);
  line-height: 1.45;
  word-break: break-all;
}
.gbc-style-dusk .gbc-cell-link {
  color: var(--du-clay-deep);
  text-decoration: none;
  border-bottom: 1.5px dotted var(--du-clay);
  transition: color .15s, border-color .15s;
}
.gbc-style-dusk .gbc-cell-link:hover {
  color: var(--du-moss-deep);
  border-bottom-color: var(--du-moss);
}

/* ── 區塊 5：按鈕 ─────────────────────────────── */
.gbc-style-dusk .gbc-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 20px 24px 0;
}
.gbc-style-dusk .gbc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  border: 1px solid var(--du-line);
  transition: transform .12s, box-shadow .15s, background .15s;
  background: var(--du-card-2);
  color: var(--du-ink);
}
.gbc-style-dusk .gbc-btn-ico { font-size: 15px; }

.gbc-style-dusk .gbc-btn-pri {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, var(--du-clay), var(--du-clay-deep));
  color: #fff;
  border-color: var(--du-clay-deep);
  box-shadow: 0 6px 14px -4px rgba(213,106,63,.5), 0 1px 0 rgba(255,255,255,.25) inset;
  font-size: 15px;
  height: 52px;
}
.gbc-style-dusk .gbc-btn-pri:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -4px rgba(213,106,63,.6), 0 1px 0 rgba(255,255,255,.3) inset;
}
.gbc-style-dusk .gbc-btn-sec:hover {
  background: var(--du-card);
  border-color: var(--du-line);
}
.gbc-style-dusk .gbc-btn-ticket {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--du-warn), #b53e2a);
  color: #fff;
  border-color: #b53e2a;
  box-shadow: 0 6px 14px -4px rgba(232,83,60,.5), 0 1px 0 rgba(255,255,255,.2) inset;
}

/* ── 區塊 6：頁尾 ─────────────────────────────── */
.gbc-style-dusk .gbc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 20px;
  margin-top: 20px;
  border-top: 1px dashed var(--du-line);
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  font-size: 11px;
  color: var(--du-ink-3);
  flex-wrap: wrap;
  gap: 8px;
}
.gbc-style-dusk .gbc-foot-txt {
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 12px;
}
.gbc-style-dusk .gbc-foot-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gbc-style-dusk .gbc-foot-date {
  font-variant-numeric: tabular-nums;
}
.gbc-style-dusk .gbc-powered-by {
  opacity: .85;
}

/* ── 手機適配 ≤ 380px ─────────────────────────────── */
@media (max-width: 380px) {
  .gbc-style-dusk .gbc-head { padding: 20px 16px 18px; gap: 12px; grid-template-columns: auto 1fr; }
  .gbc-style-dusk .gbc-status { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  .gbc-style-dusk .gbc-name { font-size: 20px; }
  .gbc-style-dusk .gbc-metrics,
  .gbc-style-dusk .gbc-info { margin: 0 16px; }
  .gbc-style-dusk .gbc-hours,
  .gbc-style-dusk .gbc-actions,
  .gbc-style-dusk .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-dusk .gbc-metric-num { font-size: 24px; }
  .gbc-style-dusk .gbc-today-time { font-size: 14px; }
  .gbc-style-dusk .gbc-bar-track { height: 50px; }
}


/* ════════════ SAKURA ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Sakura（櫻 · 和風）
   定位：和紙米白 × 黛灰 × 赤紅，適合日本旅遊、温泉、京都奈良
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Noto+Serif+TC:wght@400;500;600;700&display=swap');

.gbc-style-sakura {
  --sk-paper: #f7f1e6;
  --sk-card: #fbf6ec;
  --sk-line: #d8c9af;
  --sk-line-2: #ebdfc8;
  --sk-ink: #1f1a14;
  --sk-ink-2: #5a4f40;
  --sk-ink-3: #8a7e6a;
  --sk-red: #b32a2a;          /* 朱赤 */
  --sk-red-deep: #7a1818;
  --sk-pink: #e8b4b8;          /* 櫻 */
  --sk-gold: #b8923a;
  font-family: 'Zen Kaku Gothic New', 'Noto Sans TC', sans-serif;
  color: var(--sk-ink);
  max-width: 560px; margin: 0 auto;
}

.gbc-style-sakura .gbc-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(232,180,184,.22) 0, transparent 40%),
    var(--sk-card);
  border: 1px solid var(--sk-line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--sk-line), 0 16px 40px -16px rgba(31,26,20,.18);
}
/* 朱印章感角落 */
.gbc-style-sakura .gbc-card::before {
  content: "桜";
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Shippori Mincho', serif;
  font-size: 56px;
  color: var(--sk-red);
  opacity: .08;
  line-height: 1;
  z-index: 0;
  font-weight: 600;
}
.gbc-style-sakura > .gbc-card > * { position: relative; z-index: 1; }

/* ── 標頭 ── */
.gbc-style-sakura .gbc-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 26px 24px 22px;
  border-bottom: 1px solid var(--sk-line-2);
  align-items: start;
}
.gbc-style-sakura .gbc-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; border: 1px solid var(--sk-line);
  box-shadow: 0 0 0 4px var(--sk-card), 0 0 0 5px var(--sk-line);
}
.gbc-style-sakura .gbc-avatar-photo,
.gbc-style-sakura .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gbc-style-sakura .gbc-head-text { min-width: 0; }
.gbc-style-sakura .gbc-eyebrow {
  font-family: 'Shippori Mincho', serif;
  font-size: 11px; font-weight: 500; letter-spacing: .3em;
  color: var(--sk-red); margin-bottom: 6px;
}
.gbc-style-sakura .gbc-eyebrow::before { content: "— "; color: var(--sk-gold); }
.gbc-style-sakura .gbc-name {
  font-family: 'Shippori Mincho', 'Noto Serif TC', serif;
  font-size: 24px; line-height: 1.25; font-weight: 600; margin: 0 0 6px;
  letter-spacing: .02em;
}
.gbc-style-sakura .gbc-address-short { font-size: 12.5px; color: var(--sk-ink-2); margin: 0; line-height: 1.5; }

.gbc-style-sakura .gbc-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 2px;
  font-family: 'Shippori Mincho', serif;
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  background: var(--sk-red); color: #fff;
}
.gbc-style-sakura .gbc-status-closed { background: var(--sk-ink-3); }
.gbc-style-sakura .gbc-dot-blink {
  width: 5px; height: 5px; border-radius: 50%; background: #fff;
  animation: sk-blink 1.6s ease-in-out infinite;
}
@keyframes sk-blink { 50% { opacity: .35; } }

/* ── 評分 ── */
.gbc-style-sakura .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 22px 24px;
  border-bottom: 1px solid var(--sk-line-2);
}
.gbc-style-sakura .gbc-metric { text-align: center; padding: 0 8px; position: relative; }
.gbc-style-sakura .gbc-metric + .gbc-metric::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px;
  background: var(--sk-line-2);
}
.gbc-style-sakura .gbc-metric-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px; font-weight: 600; line-height: 1; letter-spacing: -.02em;
  color: var(--sk-red); font-variant-numeric: tabular-nums;
}
.gbc-style-sakura .gbc-today-time {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px; line-height: 1; font-weight: 500; color: var(--sk-ink);
  font-variant-numeric: tabular-nums;
}
.gbc-style-sakura .gbc-stars {
  display: flex; justify-content: center; gap: 2px; margin: 6px 0 4px;
  font-size: 11px; color: var(--sk-red);
}
.gbc-style-sakura .gbc-stars .half {
  background: linear-gradient(90deg, var(--sk-red) 50%, var(--sk-pink) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-sakura .gbc-metric-label {
  font-family: 'Shippori Mincho', serif;
  font-size: 10.5px; letter-spacing: .2em; color: var(--sk-ink-3); margin-top: 6px;
}
.gbc-style-sakura .gbc-metric-sub { font-size: 11px; color: var(--sk-ink-2); margin-top: 2px; font-style: italic; }

/* ── 週時段 ── */
.gbc-style-sakura .gbc-hours { padding: 22px 24px; border-bottom: 1px solid var(--sk-line-2); }
.gbc-style-sakura .gbc-hours-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.gbc-style-sakura .gbc-hours-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px; font-weight: 500; letter-spacing: .15em; color: var(--sk-ink); margin: 0;
}
.gbc-style-sakura .gbc-hours-title::before { content: "│ "; color: var(--sk-red); font-weight: 700; }
.gbc-style-sakura .gbc-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; align-items: end; }
.gbc-style-sakura .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 6px 2px; position: relative;
}
.gbc-style-sakura .gbc-day-col.gbc-today::after {
  content: ""; position: absolute; bottom: 0; left: 20%; right: 20%; height: 2px;
  background: var(--sk-red);
}
.gbc-style-sakura .gbc-bar-track {
  width: 100%; height: 60px; background: var(--sk-line-2); border-radius: 2px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.gbc-style-sakura .gbc-bar-fill { width: 100%; background: var(--sk-ink-2); border-radius: 0; }
.gbc-style-sakura .gbc-day-col.gbc-today .gbc-bar-fill { background: var(--sk-red); }
.gbc-style-sakura .gbc-bar-closed {
  background: repeating-linear-gradient(45deg, transparent 0 4px, var(--sk-line-2) 4px 5px);
}
.gbc-style-sakura .gbc-closed-mark { font-family: 'Shippori Mincho', serif; font-size: 13px; color: var(--sk-ink-3); margin: auto; }
.gbc-style-sakura .gbc-day-label {
  font-family: 'Shippori Mincho', serif; font-size: 13px; font-weight: 600; color: var(--sk-ink-2);
}
.gbc-style-sakura .gbc-day-col.gbc-today .gbc-day-label { color: var(--sk-red); }
.gbc-style-sakura .gbc-day-time { font-size: 8.5px; color: var(--sk-ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── 資訊格 ── */
.gbc-style-sakura .gbc-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--sk-line-2);
}
.gbc-style-sakura .gbc-cell {
  padding: 14px 24px;
  border-right: 1px solid var(--sk-line-2);
  border-bottom: 1px solid var(--sk-line-2);
}
.gbc-style-sakura .gbc-cell:nth-child(2n) { border-right: none; }
.gbc-style-sakura .gbc-cell:nth-last-child(-n+2) { border-bottom: none; }
.gbc-style-sakura .gbc-cell.gbc-full { grid-column: 1 / -1; border-right: none; }
.gbc-style-sakura .gbc-cell-lbl {
  font-family: 'Shippori Mincho', serif;
  font-size: 10.5px; letter-spacing: .22em; color: var(--sk-ink-3); margin-bottom: 4px;
}
.gbc-style-sakura .gbc-cell-val {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px; color: var(--sk-ink); line-height: 1.45; word-break: break-all;
}
.gbc-style-sakura .gbc-cell-link {
  color: var(--sk-red); text-decoration: none;
  border-bottom: 1px solid var(--sk-red);
}

/* ── 按鈕 ── */
.gbc-style-sakura .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 24px 0; }
.gbc-style-sakura .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 14px; border-radius: 2px;
  font-family: 'Shippori Mincho', 'Noto Serif TC', serif;
  font-size: 14px; font-weight: 500; letter-spacing: .15em;
  text-decoration: none; border: 1px solid var(--sk-ink);
  transition: background .15s, color .15s;
  background: var(--sk-card); color: var(--sk-ink);
}
.gbc-style-sakura .gbc-btn-ico { font-size: 14px; letter-spacing: 0; }
.gbc-style-sakura .gbc-btn-pri {
  grid-column: 1/-1; background: var(--sk-ink); color: #fff; border-color: var(--sk-ink);
  height: 50px; font-size: 15px;
}
.gbc-style-sakura .gbc-btn-pri:hover { background: var(--sk-red); border-color: var(--sk-red); }
.gbc-style-sakura .gbc-btn-sec:hover { background: var(--sk-paper); }
.gbc-style-sakura .gbc-btn-ticket {
  grid-column: 1/-1; background: var(--sk-red); color: #fff; border-color: var(--sk-red-deep);
  height: 50px;
}

/* ── 頁尾 ── */
.gbc-style-sakura .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 18px; margin-top: 18px;
  border-top: 1px solid var(--sk-line-2); background: var(--sk-paper);
  font-family: 'Shippori Mincho', serif;
  font-size: 11px; color: var(--sk-ink-3); flex-wrap: wrap; gap: 6px;
}
.gbc-style-sakura .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-sakura .gbc-foot-date { font-variant-numeric: tabular-nums; }

@media (max-width: 380px) {
  .gbc-style-sakura .gbc-head { padding: 20px 16px; gap: 10px; }
  .gbc-style-sakura .gbc-name { font-size: 20px; }
  .gbc-style-sakura .gbc-metrics, .gbc-style-sakura .gbc-hours { padding: 18px 16px; }
  .gbc-style-sakura .gbc-cell { padding: 12px 16px; }
  .gbc-style-sakura .gbc-actions, .gbc-style-sakura .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-sakura .gbc-bar-track { height: 50px; }
  .gbc-style-sakura .gbc-metric-num { font-size: 28px; }
}


/* ════════════ ALOHA ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Aloha（海島）
   定位：天空藍 × 沙色 × 珊瑚橘，明信片郵戳感，適合度假/海島
   ══════════════════════════════════════════════════════════════ */

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

.gbc-style-aloha {
  --al-sky: #6cb8d4;
  --al-sky-deep: #2c7494;
  --al-sand: #f4ead4;
  --al-card: #fffaf0;
  --al-coral: #ff7a59;
  --al-coral-deep: #d4502c;
  --al-palm: #4a8763;
  --al-ink: #1d3a4a;
  --al-ink-2: #4a6878;
  --al-ink-3: #87a0ad;
  --al-line: #d9e4ea;
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  color: var(--al-ink);
  max-width: 560px; margin: 0 auto;
}

.gbc-style-aloha .gbc-card {
  background: var(--al-card);
  border-radius: 24px;
  position: relative; overflow: hidden;
  border: 1px solid var(--al-line);
  box-shadow: 0 2px 0 var(--al-sky-deep), 0 18px 36px -14px rgba(44,116,148,.3);
}
/* 海天頂飾：天空+海面條紋 */
.gbc-style-aloha .gbc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 90px;
  background:
    linear-gradient(180deg, var(--al-sky) 0 60%, #95d4e8 60% 70%, #c2e6f1 70% 80%, var(--al-sand) 80%);
  z-index: 0;
}
/* 太陽 */
.gbc-style-aloha .gbc-card::after {
  content: ""; position: absolute; top: 14px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #ffd76b;
  box-shadow: 0 0 0 6px rgba(255,215,107,.3), 0 0 0 14px rgba(255,215,107,.15);
  z-index: 0;
}
.gbc-style-aloha > .gbc-card > * { position: relative; z-index: 1; }

/* ── 標頭 ── */
.gbc-style-aloha .gbc-head {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  padding: 70px 24px 18px 24px; align-items: end;
}
.gbc-style-aloha .gbc-avatar {
  width: 70px; height: 70px; border-radius: 16px;
  overflow: hidden; border: 4px solid var(--al-card);
  box-shadow: 0 6px 14px -4px rgba(44,116,148,.4);
  transform: rotate(-3deg);
}
.gbc-style-aloha .gbc-avatar-photo,
.gbc-style-aloha .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gbc-style-aloha .gbc-head-text { min-width: 0; padding-bottom: 4px; }
.gbc-style-aloha .gbc-eyebrow {
  display: inline-block;
  font-family: 'Caveat', 'Noto Sans TC', cursive;
  font-size: 18px; font-weight: 700; color: var(--al-coral); margin-bottom: 2px;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.gbc-style-aloha .gbc-name {
  font-family: 'DM Serif Display', 'Noto Serif TC', serif;
  font-size: 24px; line-height: 1.15; font-weight: 400; margin: 0 0 4px;
  color: var(--al-ink); letter-spacing: -.005em;
}
.gbc-style-aloha .gbc-address-short { font-size: 12.5px; color: var(--al-ink-2); margin: 0; }

.gbc-style-aloha .gbc-status {
  position: absolute; top: 18px; left: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  background: rgba(255,255,255,.95); color: var(--al-coral-deep);
  border: 1.5px solid var(--al-coral);
  text-transform: uppercase;
}
.gbc-style-aloha .gbc-status-closed { color: var(--al-ink-3); border-color: var(--al-ink-3); }
.gbc-style-aloha .gbc-dot-blink {
  width: 6px; height: 6px; border-radius: 50%; background: var(--al-coral);
  animation: al-pulse 1.4s ease-in-out infinite;
}
@keyframes al-pulse { 50% { transform: scale(1.4); opacity: .5; } }

/* ── 評分 ── */
.gbc-style-aloha .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
  padding: 16px 24px;
}
.gbc-style-aloha .gbc-metric {
  background: var(--al-sand); border-radius: 14px; padding: 14px 8px;
  text-align: center; border: 1px solid rgba(217,228,234,.6);
}
.gbc-style-aloha .gbc-metric-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px; line-height: 1; color: var(--al-coral-deep);
  font-variant-numeric: tabular-nums;
}
.gbc-style-aloha .gbc-today-time {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; line-height: 1; color: var(--al-sky-deep);
  font-variant-numeric: tabular-nums;
}
.gbc-style-aloha .gbc-stars { display: flex; justify-content: center; gap: 2px; margin: 5px 0 3px; font-size: 11px; color: var(--al-coral); }
.gbc-style-aloha .gbc-stars .half {
  background: linear-gradient(90deg, var(--al-coral) 50%, rgba(255,122,89,.3) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-aloha .gbc-metric-label {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--al-ink-2);
  margin-top: 6px; font-weight: 600;
}
.gbc-style-aloha .gbc-metric-sub { font-family: 'Caveat', cursive; font-size: 14px; color: var(--al-coral); margin-top: 2px; }

/* ── 週時段 ── */
.gbc-style-aloha .gbc-hours { padding: 16px 24px 18px; }
.gbc-style-aloha .gbc-hours-head { margin-bottom: 14px; }
.gbc-style-aloha .gbc-hours-title {
  font-family: 'Caveat', 'Noto Sans TC', cursive;
  font-size: 22px; color: var(--al-sky-deep); margin: 0; font-weight: 700;
}
.gbc-style-aloha .gbc-hours-title::after { content: " 🌊"; }

.gbc-style-aloha .gbc-timeline {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  background: var(--al-sand); padding: 12px 8px; border-radius: 16px;
}
.gbc-style-aloha .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 4px 2px; border-radius: 10px; position: relative;
}
.gbc-style-aloha .gbc-day-col.gbc-today { background: var(--al-card); box-shadow: 0 2px 6px -2px rgba(44,116,148,.3); }
.gbc-style-aloha .gbc-day-col.gbc-today::before {
  content: "✦"; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  color: var(--al-coral); font-size: 12px;
}
.gbc-style-aloha .gbc-bar-track {
  width: 100%; height: 50px; background: rgba(255,255,255,.5); border-radius: 999px 999px 4px 4px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.gbc-style-aloha .gbc-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--al-sky), var(--al-sky-deep));
  border-radius: 999px 999px 4px 4px;
}
.gbc-style-aloha .gbc-day-col.gbc-today .gbc-bar-fill {
  background: linear-gradient(180deg, var(--al-coral), var(--al-coral-deep));
}
.gbc-style-aloha .gbc-bar-closed { background: rgba(255,255,255,.4); border: 1px dashed var(--al-ink-3); }
.gbc-style-aloha .gbc-closed-mark { font-family: 'Caveat', cursive; font-size: 14px; color: var(--al-ink-3); margin: auto; }
.gbc-style-aloha .gbc-day-label { font-size: 12px; font-weight: 700; color: var(--al-ink); }
.gbc-style-aloha .gbc-day-col.gbc-today .gbc-day-label { color: var(--al-coral-deep); }
.gbc-style-aloha .gbc-day-time { font-size: 8.5px; color: var(--al-ink-2); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── 資訊格 ── */
.gbc-style-aloha .gbc-info { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 24px; }
.gbc-style-aloha .gbc-cell {
  background: var(--al-sand); padding: 12px 14px; border-radius: 12px;
  border-left: 3px solid var(--al-sky);
}
.gbc-style-aloha .gbc-cell.gbc-full { grid-column: 1/-1; border-left-color: var(--al-coral); }
.gbc-style-aloha .gbc-cell-lbl {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--al-ink-2);
  margin-bottom: 4px; font-weight: 700;
}
.gbc-style-aloha .gbc-cell-val { font-size: 13.5px; color: var(--al-ink); line-height: 1.45; word-break: break-all; }
.gbc-style-aloha .gbc-cell-link { color: var(--al-sky-deep); text-decoration: none; border-bottom: 2px dotted var(--al-sky); }

/* ── 按鈕 ── */
.gbc-style-aloha .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 24px 0; }
.gbc-style-aloha .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 14px; border-radius: 999px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: .04em; text-decoration: none; border: 2px solid var(--al-ink);
  background: var(--al-card); color: var(--al-ink);
  transition: transform .12s, background .15s;
}
.gbc-style-aloha .gbc-btn-ico { font-size: 15px; }
.gbc-style-aloha .gbc-btn-pri {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--al-sky), var(--al-sky-deep));
  color: #fff; border-color: var(--al-sky-deep);
  height: 52px; font-size: 15px;
  box-shadow: 0 4px 0 var(--al-sky-deep);
}
.gbc-style-aloha .gbc-btn-pri:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--al-sky-deep); }
.gbc-style-aloha .gbc-btn-sec:hover { background: var(--al-sand); }
.gbc-style-aloha .gbc-btn-ticket {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--al-coral), var(--al-coral-deep));
  color: #fff; border-color: var(--al-coral-deep);
  box-shadow: 0 4px 0 var(--al-coral-deep);
}

/* ── 頁尾 ── */
.gbc-style-aloha .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 18px; margin-top: 18px;
  border-top: 1px dashed var(--al-line);
  font-size: 11px; color: var(--al-ink-2); flex-wrap: wrap; gap: 8px;
}
.gbc-style-aloha .gbc-foot-txt { font-family: 'Caveat', cursive; font-size: 14px; color: var(--al-sky-deep); }
.gbc-style-aloha .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-aloha .gbc-foot-date { font-variant-numeric: tabular-nums; }

@media (max-width: 380px) {
  .gbc-style-aloha .gbc-head { padding: 60px 16px 16px; }
  .gbc-style-aloha .gbc-status { left: 16px; top: 14px; }
  .gbc-style-aloha .gbc-name { font-size: 20px; }
  .gbc-style-aloha .gbc-metrics, .gbc-style-aloha .gbc-hours, .gbc-style-aloha .gbc-info,
  .gbc-style-aloha .gbc-actions, .gbc-style-aloha .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-aloha .gbc-metric-num { font-size: 24px; }
  .gbc-style-aloha .gbc-bar-track { height: 42px; }
}


/* ════════════ TRAIL ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Trail（山系徽章）
   定位：森林綠 × 卡其 × 等高線地形紋，適合登山/露營/國家公園
   ══════════════════════════════════════════════════════════════ */

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

.gbc-style-trail {
  --tr-paper: #efe8d6;
  --tr-card: #f5efe0;
  --tr-line: #c0b393;
  --tr-line-2: #d4c8aa;
  --tr-ink: #1c2418;
  --tr-ink-2: #3e4a36;
  --tr-ink-3: #6f7560;
  --tr-forest: #2d4a2b;
  --tr-forest-deep: #1a2d18;
  --tr-pine: #5a7548;
  --tr-rust: #b54a2a;          /* 鏽紅 */
  --tr-amber: #d68a32;
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--tr-ink);
  max-width: 560px; margin: 0 auto;
}

.gbc-style-trail .gbc-card {
  /* 等高線地形紋 */
  background:
    radial-gradient(ellipse 200% 60% at 50% 0%, transparent 30%, rgba(45,74,43,.04) 32%, transparent 34%),
    radial-gradient(ellipse 180% 50% at 50% 0%, transparent 40%, rgba(45,74,43,.05) 42%, transparent 44%),
    radial-gradient(ellipse 160% 45% at 50% 0%, transparent 50%, rgba(45,74,43,.05) 52%, transparent 54%),
    var(--tr-card);
  border: 2px solid var(--tr-forest);
  border-radius: 4px;
  position: relative; overflow: hidden;
  box-shadow: 4px 4px 0 var(--tr-forest), 0 12px 28px -12px rgba(28,36,24,.35);
}
/* 山形 SVG 裝飾頂部 */
.gbc-style-trail .gbc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--tr-forest) 0 12px, var(--tr-amber) 12px 14px, var(--tr-forest) 14px 26px, var(--tr-rust) 26px 28px);
}
.gbc-style-trail > .gbc-card > * { position: relative; z-index: 1; }

/* ── 標頭 ── */
.gbc-style-trail .gbc-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 22px 22px 20px; align-items: start;
  border-bottom: 2px dashed var(--tr-line);
}
.gbc-style-trail .gbc-avatar {
  width: 60px; height: 60px; border-radius: 8px;
  overflow: hidden; border: 2px solid var(--tr-forest);
  box-shadow: 4px 4px 0 var(--tr-amber);
}
.gbc-style-trail .gbc-avatar-photo,
.gbc-style-trail .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.05) saturate(.9); }
.gbc-style-trail .gbc-head-text { min-width: 0; }
.gbc-style-trail .gbc-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .25em; color: var(--tr-rust); margin-bottom: 4px;
}
.gbc-style-trail .gbc-eyebrow::before { content: "▲ "; color: var(--tr-amber); font-size: 10px; vertical-align: 2px; }
.gbc-style-trail .gbc-name {
  font-family: 'Bebas Neue', 'Noto Sans TC', sans-serif;
  font-size: 28px; line-height: 1.1; font-weight: 400; margin: 0 0 4px;
  color: var(--tr-forest-deep); letter-spacing: .015em; text-transform: uppercase;
}
.gbc-style-trail .gbc-address-short {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12.5px; color: var(--tr-ink-2); margin: 0; line-height: 1.4;
}

.gbc-style-trail .gbc-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: .15em;
  background: var(--tr-forest); color: var(--tr-paper);
  border-radius: 0; clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  padding: 4px 14px;
}
.gbc-style-trail .gbc-status-closed { background: var(--tr-ink-3); }
.gbc-style-trail .gbc-dot-blink {
  width: 6px; height: 6px; border-radius: 50%; background: var(--tr-amber);
  animation: tr-blink 1.6s ease-in-out infinite;
}
@keyframes tr-blink { 50% { opacity: .35; } }

/* ── 評分 ── */
.gbc-style-trail .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  margin: 18px 22px;
  border: 2px solid var(--tr-forest);
  background: var(--tr-card);
}
.gbc-style-trail .gbc-metric {
  text-align: center; padding: 14px 8px;
  border-right: 1px dashed var(--tr-line);
}
.gbc-style-trail .gbc-metric:last-child { border-right: none; }
.gbc-style-trail .gbc-metric-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; line-height: 1; color: var(--tr-forest-deep); letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}
.gbc-style-trail .gbc-today-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; line-height: 1; color: var(--tr-rust);
  font-variant-numeric: tabular-nums; letter-spacing: .02em;
}
.gbc-style-trail .gbc-stars { display: flex; justify-content: center; gap: 1px; margin: 4px 0 4px; font-size: 11px; color: var(--tr-amber); }
.gbc-style-trail .gbc-stars .half {
  background: linear-gradient(90deg, var(--tr-amber) 50%, rgba(214,138,50,.3) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-trail .gbc-metric-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px; letter-spacing: .2em; color: var(--tr-ink-3); margin-top: 4px;
}
.gbc-style-trail .gbc-metric-sub { font-family: 'Roboto Condensed', sans-serif; font-size: 11px; color: var(--tr-ink-2); margin-top: 2px; }

/* ── 週時段 ── */
.gbc-style-trail .gbc-hours { padding: 8px 22px 18px; }
.gbc-style-trail .gbc-hours-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.gbc-style-trail .gbc-hours-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: .2em; color: var(--tr-forest-deep); margin: 0;
}
.gbc-style-trail .gbc-hours-title::before { content: "▲▼ "; color: var(--tr-amber); }

.gbc-style-trail .gbc-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; align-items: end; }
.gbc-style-trail .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 4px 2px; position: relative;
}
.gbc-style-trail .gbc-day-col.gbc-today {
  background: rgba(181,74,42,.08);
  outline: 2px solid var(--tr-rust);
  border-radius: 2px;
}
.gbc-style-trail .gbc-bar-track {
  width: 100%; height: 60px;
  background: var(--tr-line-2); border-radius: 0;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.gbc-style-trail .gbc-bar-fill {
  width: 100%;
  background:
    repeating-linear-gradient(45deg, transparent 0 3px, rgba(0,0,0,.08) 3px 4px),
    var(--tr-pine);
}
.gbc-style-trail .gbc-day-col.gbc-today .gbc-bar-fill {
  background:
    repeating-linear-gradient(45deg, transparent 0 3px, rgba(0,0,0,.1) 3px 4px),
    var(--tr-rust);
}
.gbc-style-trail .gbc-bar-closed { background: var(--tr-card); border: 1px dashed var(--tr-line); }
.gbc-style-trail .gbc-closed-mark { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--tr-ink-3); margin: auto; letter-spacing: .1em; }
.gbc-style-trail .gbc-day-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; color: var(--tr-ink); letter-spacing: .04em;
}
.gbc-style-trail .gbc-day-col.gbc-today .gbc-day-label { color: var(--tr-rust); }
.gbc-style-trail .gbc-day-time { font-family: 'Roboto Condensed', sans-serif; font-size: 9px; color: var(--tr-ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ── 資訊格 ── */
.gbc-style-trail .gbc-info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin: 0 22px;
  border: 2px solid var(--tr-forest);
}
.gbc-style-trail .gbc-cell {
  padding: 12px 14px;
  border-right: 1px dashed var(--tr-line);
  border-bottom: 1px dashed var(--tr-line);
  background: var(--tr-card);
}
.gbc-style-trail .gbc-cell:nth-child(2n) { border-right: none; }
.gbc-style-trail .gbc-cell:nth-last-child(-n+2) { border-bottom: none; }
.gbc-style-trail .gbc-cell.gbc-full { grid-column: 1/-1; border-right: none; }
.gbc-style-trail .gbc-cell-lbl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: .2em; color: var(--tr-rust); margin-bottom: 2px;
}
.gbc-style-trail .gbc-cell-val {
  font-family: 'Roboto Condensed', 'Noto Sans TC', sans-serif;
  font-size: 14px; color: var(--tr-ink); line-height: 1.45; word-break: break-all; font-weight: 500;
}
.gbc-style-trail .gbc-cell-link { color: var(--tr-forest); text-decoration: none; border-bottom: 2px solid var(--tr-amber); }

/* ── 按鈕 ── */
.gbc-style-trail .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 22px 0; }
.gbc-style-trail .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 14px; border-radius: 0;
  font-family: 'Bebas Neue', 'Noto Sans TC', sans-serif;
  font-size: 16px; font-weight: 400; letter-spacing: .15em;
  text-decoration: none; border: 2px solid var(--tr-forest);
  background: var(--tr-card); color: var(--tr-forest-deep);
  transition: transform .1s;
}
.gbc-style-trail .gbc-btn-ico { font-size: 15px; letter-spacing: 0; }
.gbc-style-trail .gbc-btn-pri {
  grid-column: 1/-1; background: var(--tr-forest); color: var(--tr-paper);
  height: 54px; font-size: 18px;
  box-shadow: 4px 4px 0 var(--tr-amber);
}
.gbc-style-trail .gbc-btn-pri:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--tr-amber); }
.gbc-style-trail .gbc-btn-sec:hover { background: var(--tr-paper); }
.gbc-style-trail .gbc-btn-ticket {
  grid-column: 1/-1; background: var(--tr-rust); color: #fff; border-color: var(--tr-forest-deep);
  box-shadow: 4px 4px 0 var(--tr-forest-deep);
}

/* ── 頁尾 ── */
.gbc-style-trail .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 16px; margin-top: 18px;
  border-top: 2px dashed var(--tr-line);
  background: var(--tr-paper);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 11px; color: var(--tr-ink-3); flex-wrap: wrap; gap: 6px;
  letter-spacing: .04em;
}
.gbc-style-trail .gbc-foot-txt::before { content: "▲ "; color: var(--tr-amber); }
.gbc-style-trail .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-trail .gbc-foot-date { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: .1em; color: var(--tr-forest); }

@media (max-width: 380px) {
  .gbc-style-trail .gbc-card { box-shadow: 3px 3px 0 var(--tr-forest); }
  .gbc-style-trail .gbc-head { padding: 18px 16px; gap: 10px; grid-template-columns: auto 1fr; }
  .gbc-style-trail .gbc-status { grid-column: 1/-1; justify-self: start; }
  .gbc-style-trail .gbc-name { font-size: 22px; }
  .gbc-style-trail .gbc-metrics, .gbc-style-trail .gbc-info { margin-left: 16px; margin-right: 16px; }
  .gbc-style-trail .gbc-hours, .gbc-style-trail .gbc-actions, .gbc-style-trail .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-trail .gbc-bar-track { height: 50px; }
}


/* ════════════ POP ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Pop（親子童趣）
   定位：鮮黃 × 亮藍 × 圓潤胖體，適合親子餐廳/樂園/兒童景點
   ══════════════════════════════════════════════════════════════ */

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

.gbc-style-pop {
  --pp-bg: #fff8e3;
  --pp-card: #fffefa;
  --pp-yellow: #ffd23f;
  --pp-yellow-deep: #e8a90b;
  --pp-blue: #4ec5ff;
  --pp-blue-deep: #1d8ec9;
  --pp-pink: #ff7eb3;
  --pp-pink-deep: #d44d8a;
  --pp-mint: #6ed7a8;
  --pp-ink: #1f2438;
  --pp-ink-2: #4a5170;
  --pp-ink-3: #8d96b3;
  --pp-line: #ffe88f;
  font-family: 'Baloo 2', 'Noto Sans TC', sans-serif;
  color: var(--pp-ink);
  max-width: 560px; margin: 0 auto;
}

.gbc-style-pop .gbc-card {
  background: var(--pp-card);
  border: 3px solid var(--pp-ink);
  border-radius: 28px;
  position: relative; overflow: hidden;
  box-shadow: 6px 6px 0 var(--pp-ink), 0 18px 36px -14px rgba(31,36,56,.3);
}
/* 圓點背景 */
.gbc-style-pop .gbc-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--pp-line) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  background-position: 0 0;
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}
.gbc-style-pop > .gbc-card > * { position: relative; z-index: 1; }

/* ── 標頭 ── */
.gbc-style-pop .gbc-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 20px 20px 18px;
  align-items: start;
}
.gbc-style-pop .gbc-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--pp-ink);
  box-shadow: 0 0 0 4px var(--pp-yellow), 4px 4px 0 var(--pp-ink);
}
.gbc-style-pop .gbc-avatar-photo,
.gbc-style-pop .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gbc-style-pop .gbc-head-text { min-width: 0; padding-top: 4px; }
.gbc-style-pop .gbc-eyebrow {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--pp-yellow); color: var(--pp-ink);
  padding: 3px 10px; border-radius: 999px;
  border: 2px solid var(--pp-ink);
  margin-bottom: 8px; transform: rotate(-2deg);
}
.gbc-style-pop .gbc-name {
  font-family: 'Fredoka', 'Noto Sans TC', sans-serif;
  font-size: 24px; line-height: 1.15; font-weight: 700; margin: 0 0 4px;
  color: var(--pp-ink); letter-spacing: -.005em;
}
.gbc-style-pop .gbc-address-short { font-size: 13px; color: var(--pp-ink-2); margin: 0; font-weight: 500; }

.gbc-style-pop .gbc-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  background: var(--pp-mint); color: var(--pp-ink);
  border: 2px solid var(--pp-ink);
  white-space: nowrap;
}
.gbc-style-pop .gbc-status-closed { background: #e8e8e8; }
.gbc-style-pop .gbc-dot-blink {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pp-ink);
  animation: pp-bounce 1.2s ease-in-out infinite;
}
@keyframes pp-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.2); }
}

/* ── 評分 ── */
.gbc-style-pop .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  padding: 8px 20px 16px;
}
.gbc-style-pop .gbc-metric {
  background: var(--pp-yellow);
  border: 2.5px solid var(--pp-ink);
  border-radius: 18px; padding: 12px 6px;
  text-align: center; box-shadow: 3px 3px 0 var(--pp-ink);
}
.gbc-style-pop .gbc-metric:nth-child(2) { background: var(--pp-blue); color: #fff; }
.gbc-style-pop .gbc-metric:nth-child(3) { background: var(--pp-pink); color: #fff; }
.gbc-style-pop .gbc-metric-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 28px; line-height: 1; font-weight: 700; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; color: var(--pp-ink);
}
.gbc-style-pop .gbc-metric:nth-child(2) .gbc-metric-num,
.gbc-style-pop .gbc-metric:nth-child(3) .gbc-metric-num { color: #fff; }
.gbc-style-pop .gbc-today-time {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px; line-height: 1; font-weight: 700;
  color: #fff; font-variant-numeric: tabular-nums;
}
.gbc-style-pop .gbc-stars { display: flex; justify-content: center; gap: 1px; margin: 4px 0 2px; font-size: 11px; color: var(--pp-ink); }
.gbc-style-pop .gbc-stars .half {
  background: linear-gradient(90deg, var(--pp-ink) 50%, rgba(31,36,56,.25) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-pop .gbc-metric-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--pp-ink); margin-top: 4px; opacity: .85;
}
.gbc-style-pop .gbc-metric:nth-child(2) .gbc-metric-label,
.gbc-style-pop .gbc-metric:nth-child(3) .gbc-metric-label { color: #fff; opacity: .95; }
.gbc-style-pop .gbc-metric-sub { font-size: 11px; margin-top: 2px; font-weight: 600; opacity: .8; }

/* ── 週時段 ── */
.gbc-style-pop .gbc-hours { padding: 4px 20px 16px; }
.gbc-style-pop .gbc-hours-head { margin-bottom: 12px; }
.gbc-style-pop .gbc-hours-title {
  font-family: 'Fredoka', 'Noto Sans TC', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--pp-ink); margin: 0;
}
.gbc-style-pop .gbc-hours-title::before { content: "🎈 "; }

.gbc-style-pop .gbc-timeline {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
  background: var(--pp-bg); padding: 12px 8px; border-radius: 18px;
  border: 2.5px solid var(--pp-ink);
  box-shadow: 3px 3px 0 var(--pp-ink);
}
.gbc-style-pop .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 4px 2px; border-radius: 10px; position: relative;
}
.gbc-style-pop .gbc-day-col.gbc-today {
  background: var(--pp-pink); transform: translateY(-2px);
}
.gbc-style-pop .gbc-bar-track {
  width: 100%; height: 50px; background: #fff;
  border: 2px solid var(--pp-ink); border-radius: 8px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.gbc-style-pop .gbc-bar-fill { width: 100%; background: var(--pp-blue); border-radius: 4px 4px 0 0; }
.gbc-style-pop .gbc-day-col.gbc-today .gbc-bar-fill { background: var(--pp-yellow); }
.gbc-style-pop .gbc-bar-closed { background: #f0f0f0; }
.gbc-style-pop .gbc-closed-mark { font-family: 'Fredoka', serif; font-size: 13px; font-weight: 700; color: var(--pp-ink-3); margin: auto; }
.gbc-style-pop .gbc-day-label {
  font-family: 'Fredoka', 'Noto Sans TC', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--pp-ink);
}
.gbc-style-pop .gbc-day-col.gbc-today .gbc-day-label { color: #fff; }
.gbc-style-pop .gbc-day-time { font-family: 'Fredoka', sans-serif; font-size: 9px; color: var(--pp-ink-2); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.gbc-style-pop .gbc-day-col.gbc-today .gbc-day-time { color: rgba(255,255,255,.85); }

/* ── 資訊格 ── */
.gbc-style-pop .gbc-info { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 20px; }
.gbc-style-pop .gbc-cell {
  background: var(--pp-card);
  border: 2.5px solid var(--pp-ink);
  border-radius: 14px; padding: 11px 14px;
  box-shadow: 3px 3px 0 var(--pp-ink);
}
.gbc-style-pop .gbc-cell.gbc-full { grid-column: 1/-1; }
.gbc-style-pop .gbc-cell-lbl {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--pp-blue-deep); margin-bottom: 3px;
}
.gbc-style-pop .gbc-cell-val { font-size: 13.5px; color: var(--pp-ink); line-height: 1.45; word-break: break-all; font-weight: 600; }
.gbc-style-pop .gbc-cell-link { color: var(--pp-pink-deep); text-decoration: underline wavy; text-underline-offset: 3px; }

/* ── 按鈕 ── */
.gbc-style-pop .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 18px 20px 0; }
.gbc-style-pop .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 14px; border-radius: 14px;
  font-family: 'Fredoka', 'Noto Sans TC', sans-serif;
  font-size: 14.5px; font-weight: 700; letter-spacing: .02em;
  text-decoration: none; border: 3px solid var(--pp-ink);
  transition: transform .1s, box-shadow .1s;
}
.gbc-style-pop .gbc-btn-ico { font-size: 16px; }
.gbc-style-pop .gbc-btn-pri {
  grid-column: 1/-1; background: var(--pp-blue); color: #fff;
  height: 56px; font-size: 16px;
  box-shadow: 5px 5px 0 var(--pp-ink);
}
.gbc-style-pop .gbc-btn-pri:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--pp-ink); }
.gbc-style-pop .gbc-btn-sec {
  background: var(--pp-card); color: var(--pp-ink);
  box-shadow: 3px 3px 0 var(--pp-ink);
}
.gbc-style-pop .gbc-btn-sec:hover { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--pp-ink); }
.gbc-style-pop .gbc-btn-ticket {
  grid-column: 1/-1; background: var(--pp-pink); color: #fff;
  height: 56px;
  box-shadow: 5px 5px 0 var(--pp-ink);
}

/* ── 頁尾 ── */
.gbc-style-pop .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px 18px; margin-top: 18px;
  border-top: 3px dashed var(--pp-ink);
  background: var(--pp-bg);
  font-family: 'Fredoka', sans-serif;
  font-size: 11.5px; font-weight: 600; color: var(--pp-ink-2); flex-wrap: wrap; gap: 8px;
}
.gbc-style-pop .gbc-foot-txt::before { content: "✨ "; }
.gbc-style-pop .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-pop .gbc-foot-date { font-variant-numeric: tabular-nums; }

@media (max-width: 380px) {
  .gbc-style-pop .gbc-card { box-shadow: 4px 4px 0 var(--pp-ink); }
  .gbc-style-pop .gbc-head { padding: 16px; gap: 10px; grid-template-columns: auto 1fr; }
  .gbc-style-pop .gbc-status { grid-column: 1/-1; justify-self: start; }
  .gbc-style-pop .gbc-name { font-size: 20px; }
  .gbc-style-pop .gbc-metrics, .gbc-style-pop .gbc-hours, .gbc-style-pop .gbc-info,
  .gbc-style-pop .gbc-actions, .gbc-style-pop .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-pop .gbc-metric-num { font-size: 22px; }
  .gbc-style-pop .gbc-bar-track { height: 42px; }
}


/* ════════════ BISTRO ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Bistro（餐酒 / 米其林）
   定位：深酒紅 × 米白 × 燙金襯線，適合 fine dining、Omakase、餐廳推薦
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Italiana&family=Noto+Serif+TC:wght@400;500;600;700&display=swap');

.gbc-style-bistro {
  --bs-paper: #f5efe2;
  --bs-card: #faf5e8;
  --bs-line: #d8c79c;
  --bs-line-2: #ead9b1;
  --bs-ink: #1a0e08;
  --bs-ink-2: #4a3a2a;
  --bs-ink-3: #8a7656;
  --bs-wine: #5c1822;
  --bs-wine-deep: #3a0d14;
  --bs-gold: #b08a3e;
  --bs-gold-2: #d8b15c;
  font-family: 'Noto Serif TC', 'Cormorant', serif;
  color: var(--bs-ink); max-width: 560px; margin: 0 auto;
}

.gbc-style-bistro .gbc-card {
  background: var(--bs-card);
  border: 1px solid var(--bs-gold);
  border-radius: 0;
  position: relative; overflow: hidden;
  box-shadow:
    0 0 0 1px var(--bs-card) inset,
    0 0 0 4px var(--bs-gold) inset,
    0 0 0 5px var(--bs-card) inset,
    0 0 0 6px var(--bs-gold) inset,
    0 18px 40px -16px rgba(26,14,8,.4);
  padding: 4px;
}
.gbc-style-bistro > .gbc-card { padding: 8px; background: var(--bs-card); }
.gbc-style-bistro > .gbc-card > * { position: relative; z-index: 1; }

.gbc-style-bistro .gbc-head {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 30px 24px 22px; align-items: end;
  border-bottom: 1px solid var(--bs-gold);
  position: relative;
}
.gbc-style-bistro .gbc-head::after {
  content: "✦"; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  background: var(--bs-card); color: var(--bs-gold); padding: 0 8px; font-size: 14px;
}
.gbc-style-bistro .gbc-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; border: 1px solid var(--bs-gold);
  box-shadow: 0 0 0 4px var(--bs-card), 0 0 0 5px var(--bs-gold-2);
}
.gbc-style-bistro .gbc-avatar-photo,
.gbc-style-bistro .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(.1); }
.gbc-style-bistro .gbc-head-text { min-width: 0; }
.gbc-style-bistro .gbc-eyebrow {
  font-family: 'Italiana', serif;
  font-size: 13px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--bs-wine); margin-bottom: 4px;
}
.gbc-style-bistro .gbc-eyebrow::before, .gbc-style-bistro .gbc-eyebrow::after {
  content: "—"; color: var(--bs-gold); margin: 0 8px; vertical-align: 2px;
}
.gbc-style-bistro .gbc-name {
  font-family: 'Italiana', 'Noto Serif TC', serif;
  font-size: 28px; line-height: 1.15; font-weight: 400; margin: 0 0 4px;
  letter-spacing: .005em;
}
.gbc-style-bistro .gbc-address-short {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 14px; color: var(--bs-ink-2); margin: 0;
}

.gbc-style-bistro .gbc-status {
  position: absolute; top: 18px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Italiana', serif;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--bs-wine);
  background: none; border: none;
}
.gbc-style-bistro .gbc-status-closed { color: var(--bs-ink-3); }
.gbc-style-bistro .gbc-dot-blink { width: 6px; height: 6px; border-radius: 50%; background: var(--bs-wine); animation: bs-blink 1.6s infinite; }
@keyframes bs-blink { 50% { opacity: .3; } }

.gbc-style-bistro .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 24px 16px; border-bottom: 1px solid var(--bs-line-2);
}
.gbc-style-bistro .gbc-metric { text-align: center; padding: 0 8px; position: relative; }
.gbc-style-bistro .gbc-metric + .gbc-metric::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--bs-line);
}
.gbc-style-bistro .gbc-metric-num {
  font-family: 'Italiana', serif;
  font-size: 44px; line-height: 1; color: var(--bs-wine); letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.gbc-style-bistro .gbc-today-time {
  font-family: 'Italiana', serif;
  font-size: 24px; line-height: 1; color: var(--bs-ink);
  font-variant-numeric: tabular-nums;
}
.gbc-style-bistro .gbc-stars { display: flex; justify-content: center; gap: 2px; margin: 6px 0 4px; font-size: 11px; color: var(--bs-gold); }
.gbc-style-bistro .gbc-stars .half {
  background: linear-gradient(90deg, var(--bs-gold) 50%, rgba(176,138,62,.3) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-bistro .gbc-metric-label {
  font-family: 'Italiana', serif;
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--bs-ink-3); margin-top: 6px;
}
.gbc-style-bistro .gbc-metric-sub { font-family: 'Cormorant', serif; font-style: italic; font-size: 12px; color: var(--bs-ink-2); margin-top: 2px; }

.gbc-style-bistro .gbc-hours { padding: 22px 24px; border-bottom: 1px solid var(--bs-line-2); }
.gbc-style-bistro .gbc-hours-head { margin-bottom: 14px; text-align: center; }
.gbc-style-bistro .gbc-hours-title {
  font-family: 'Italiana', 'Noto Serif TC', serif;
  font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--bs-wine); margin: 0;
}
.gbc-style-bistro .gbc-hours-title::before, .gbc-style-bistro .gbc-hours-title::after {
  content: "—"; color: var(--bs-gold); margin: 0 8px; vertical-align: 2px;
}
.gbc-style-bistro .gbc-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; align-items: end; }
.gbc-style-bistro .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 4px 2px; position: relative;
}
.gbc-style-bistro .gbc-day-col.gbc-today::before {
  content: "✦"; position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  color: var(--bs-gold); font-size: 11px;
}
.gbc-style-bistro .gbc-bar-track {
  width: 100%; height: 60px; background: var(--bs-paper);
  border: 1px solid var(--bs-line); border-radius: 0;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.gbc-style-bistro .gbc-bar-fill { width: 100%; background: linear-gradient(180deg, var(--bs-gold), var(--bs-gold-2)); }
.gbc-style-bistro .gbc-day-col.gbc-today .gbc-bar-fill { background: linear-gradient(180deg, var(--bs-wine), var(--bs-wine-deep)); }
.gbc-style-bistro .gbc-bar-closed { background: var(--bs-paper); }
.gbc-style-bistro .gbc-closed-mark { font-family: 'Italiana', serif; font-size: 12px; color: var(--bs-ink-3); margin: auto; }
.gbc-style-bistro .gbc-day-label {
  font-family: 'Italiana', 'Noto Serif TC', serif; font-size: 13px; color: var(--bs-ink-2);
}
.gbc-style-bistro .gbc-day-col.gbc-today .gbc-day-label { color: var(--bs-wine); font-weight: 600; }
.gbc-style-bistro .gbc-day-time { font-family: 'Cormorant', serif; font-size: 9.5px; color: var(--bs-ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }

.gbc-style-bistro .gbc-info { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.gbc-style-bistro .gbc-cell {
  padding: 16px 24px; text-align: center;
  border-right: 1px solid var(--bs-line-2);
  border-bottom: 1px solid var(--bs-line-2);
}
.gbc-style-bistro .gbc-cell:nth-child(2n) { border-right: none; }
.gbc-style-bistro .gbc-cell:nth-last-child(-n+2) { border-bottom: none; }
.gbc-style-bistro .gbc-cell.gbc-full { grid-column: 1/-1; border-right: none; text-align: center; }
.gbc-style-bistro .gbc-cell-lbl {
  font-family: 'Italiana', serif;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--bs-ink-3); margin-bottom: 4px;
}
.gbc-style-bistro .gbc-cell-val {
  font-family: 'Cormorant', serif; font-size: 16px; color: var(--bs-ink); line-height: 1.4; word-break: break-all;
}
.gbc-style-bistro .gbc-cell-link { color: var(--bs-wine); text-decoration: none; border-bottom: 1px solid var(--bs-gold); font-style: italic; }

.gbc-style-bistro .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 24px 0; }
.gbc-style-bistro .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 14px; border-radius: 0;
  font-family: 'Italiana', 'Noto Serif TC', serif;
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--bs-gold);
  background: var(--bs-card); color: var(--bs-ink);
  transition: background .15s, color .15s;
}
.gbc-style-bistro .gbc-btn-ico { font-size: 14px; letter-spacing: 0; }
.gbc-style-bistro .gbc-btn-pri {
  grid-column: 1/-1; background: var(--bs-wine); color: var(--bs-card);
  border: 1px solid var(--bs-wine-deep);
  box-shadow: 0 0 0 1px var(--bs-card) inset, 0 0 0 2px var(--bs-gold) inset, 0 0 0 3px var(--bs-card) inset, 0 0 0 4px var(--bs-wine) inset;
  height: 58px; font-size: 14px;
}
.gbc-style-bistro .gbc-btn-pri:hover { background: var(--bs-wine-deep); }
.gbc-style-bistro .gbc-btn-sec:hover { background: var(--bs-paper); color: var(--bs-wine); }
.gbc-style-bistro .gbc-btn-ticket {
  grid-column: 1/-1; background: var(--bs-gold); color: var(--bs-wine-deep);
  border-color: var(--bs-wine);
  height: 58px; font-weight: 600;
}

.gbc-style-bistro .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px 20px; margin-top: 22px;
  border-top: 1px solid var(--bs-gold);
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 12px; color: var(--bs-ink-3); flex-wrap: wrap; gap: 8px;
}
.gbc-style-bistro .gbc-foot-right { display: flex; align-items: center; gap: 10px; font-style: normal; font-family: 'Italiana', serif; letter-spacing: .1em; font-size: 10.5px; }
.gbc-style-bistro .gbc-foot-date { color: var(--bs-wine); }

@media (max-width: 380px) {
  .gbc-style-bistro .gbc-head { padding: 24px 16px 18px; gap: 12px; }
  .gbc-style-bistro .gbc-status { right: 16px; top: 14px; font-size: 10px; }
  .gbc-style-bistro .gbc-name { font-size: 22px; }
  .gbc-style-bistro .gbc-metrics, .gbc-style-bistro .gbc-hours { padding: 18px 14px; }
  .gbc-style-bistro .gbc-cell { padding: 12px 14px; }
  .gbc-style-bistro .gbc-actions, .gbc-style-bistro .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-bistro .gbc-metric-num { font-size: 32px; }
  .gbc-style-bistro .gbc-bar-track { height: 50px; }
}


/* ════════════ NOTION ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Notion（極簡編輯）
   定位：灰白 × 木色 × 細線，適合居家收納/書評/整理術/極簡生活
   ══════════════════════════════════════════════════════════════ */

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

.gbc-style-notion {
  --nt-bg: #ffffff;
  --nt-card: #ffffff;
  --nt-soft: #f7f6f3;
  --nt-line: #ebeae5;
  --nt-line-2: #e0ded7;
  --nt-ink: #2a2a26;
  --nt-ink-2: #5a5a52;
  --nt-ink-3: #9c9b91;
  --nt-wood: #b89578;
  --nt-wood-deep: #8b6e54;
  --nt-accent: #2a2a26;
  font-family: 'IBM Plex Sans', 'Noto Sans TC', sans-serif;
  color: var(--nt-ink); max-width: 560px; margin: 0 auto;
}

.gbc-style-notion .gbc-card {
  background: var(--nt-card);
  border: 1px solid var(--nt-line);
  border-radius: 8px;
  position: relative; overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 20px -10px rgba(0,0,0,.08);
}

.gbc-style-notion .gbc-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 22px 24px 18px; align-items: start;
  border-bottom: 1px solid var(--nt-line);
}
.gbc-style-notion .gbc-avatar {
  width: 52px; height: 52px; border-radius: 8px;
  overflow: hidden; background: var(--nt-soft);
}
.gbc-style-notion .gbc-avatar-photo,
.gbc-style-notion .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.4); }
.gbc-style-notion .gbc-head-text { min-width: 0; padding-top: 2px; }
.gbc-style-notion .gbc-eyebrow {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--nt-ink-3); margin-bottom: 6px;
  letter-spacing: 0; font-weight: 400;
}
.gbc-style-notion .gbc-eyebrow::before {
  content: "#"; color: var(--nt-wood); font-weight: 600;
}
.gbc-style-notion .gbc-name {
  font-family: 'IBM Plex Sans', 'Noto Sans TC', sans-serif;
  font-size: 22px; line-height: 1.25; font-weight: 600; margin: 0 0 4px;
  color: var(--nt-ink); letter-spacing: -.01em;
}
.gbc-style-notion .gbc-address-short { font-size: 13px; color: var(--nt-ink-2); margin: 0; }

.gbc-style-notion .gbc-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  background: var(--nt-soft); color: var(--nt-ink-2);
  border: 1px solid var(--nt-line);
}
.gbc-style-notion .gbc-status-open { color: #2d6a3d; background: #eef7ee; border-color: #cfe6d2; }
.gbc-style-notion .gbc-status-closed { color: var(--nt-ink-3); }
.gbc-style-notion .gbc-dot-blink {
  width: 5px; height: 5px; border-radius: 50%; background: #2d6a3d;
  animation: nt-blink 2s infinite;
}
@keyframes nt-blink { 50% { opacity: .4; } }

.gbc-style-notion .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 24px; border-bottom: 1px solid var(--nt-line);
}
.gbc-style-notion .gbc-metric { text-align: left; padding: 0; padding-right: 12px; position: relative; }
.gbc-style-notion .gbc-metric + .gbc-metric { padding-left: 16px; border-left: 1px solid var(--nt-line); }
.gbc-style-notion .gbc-metric-num {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 24px; font-weight: 600; line-height: 1.1; color: var(--nt-ink);
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.gbc-style-notion .gbc-today-time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px; font-weight: 500; line-height: 1.2; color: var(--nt-ink);
  font-variant-numeric: tabular-nums;
}
.gbc-style-notion .gbc-stars { display: flex; gap: 1px; margin: 4px 0 2px; font-size: 11px; color: var(--nt-wood-deep); }
.gbc-style-notion .gbc-stars .half {
  background: linear-gradient(90deg, var(--nt-wood-deep) 50%, var(--nt-line-2) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-notion .gbc-metric-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; color: var(--nt-ink-3); margin-top: 4px; letter-spacing: 0;
}
.gbc-style-notion .gbc-metric-sub { font-size: 11px; color: var(--nt-ink-3); margin-top: 1px; }

.gbc-style-notion .gbc-hours { padding: 18px 24px; border-bottom: 1px solid var(--nt-line); }
.gbc-style-notion .gbc-hours-head { margin-bottom: 12px; }
.gbc-style-notion .gbc-hours-title {
  font-family: 'IBM Plex Sans', 'Noto Sans TC', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--nt-ink); margin: 0;
}
.gbc-style-notion .gbc-hours-title::before { content: "▸ "; color: var(--nt-ink-3); font-weight: 400; }

.gbc-style-notion .gbc-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; align-items: end; }
.gbc-style-notion .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 4px 2px; border-radius: 4px;
}
.gbc-style-notion .gbc-day-col.gbc-today { background: var(--nt-soft); }
.gbc-style-notion .gbc-bar-track {
  width: 100%; height: 56px; background: var(--nt-soft); border-radius: 4px;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.gbc-style-notion .gbc-bar-fill { width: 100%; background: var(--nt-ink-3); border-radius: 2px 2px 0 0; }
.gbc-style-notion .gbc-day-col.gbc-today .gbc-bar-fill { background: var(--nt-ink); }
.gbc-style-notion .gbc-bar-closed { background: var(--nt-soft); border: 1px dashed var(--nt-line-2); }
.gbc-style-notion .gbc-closed-mark { font-size: 11px; color: var(--nt-ink-3); margin: auto; }
.gbc-style-notion .gbc-day-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--nt-ink-2); font-weight: 500;
}
.gbc-style-notion .gbc-day-col.gbc-today .gbc-day-label { color: var(--nt-ink); font-weight: 600; }
.gbc-style-notion .gbc-day-time { font-family: 'IBM Plex Mono', monospace; font-size: 9px; color: var(--nt-ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }

.gbc-style-notion .gbc-info { display: flex; flex-direction: column; padding: 0; }
.gbc-style-notion .gbc-cell {
  display: grid; grid-template-columns: 80px 1fr; gap: 12px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--nt-line);
  align-items: baseline;
}
.gbc-style-notion .gbc-cell.gbc-full { grid-template-columns: 80px 1fr; }
.gbc-style-notion .gbc-cell-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; color: var(--nt-ink-3); font-weight: 400;
}
.gbc-style-notion .gbc-cell-val {
  font-size: 14px; color: var(--nt-ink); line-height: 1.45; word-break: break-all;
}
.gbc-style-notion .gbc-cell-link { color: var(--nt-wood-deep); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }

.gbc-style-notion .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 24px 0; }
.gbc-style-notion .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 14px; border-radius: 6px;
  font-family: 'IBM Plex Sans', 'Noto Sans TC', sans-serif;
  font-size: 13.5px; font-weight: 500; letter-spacing: -.005em;
  text-decoration: none; border: 1px solid var(--nt-line-2);
  background: var(--nt-card); color: var(--nt-ink);
  transition: background .15s, border-color .15s;
}
.gbc-style-notion .gbc-btn-ico { font-size: 14px; }
.gbc-style-notion .gbc-btn-pri {
  grid-column: 1/-1; background: var(--nt-ink); color: #fff; border-color: var(--nt-ink);
  height: 44px; font-weight: 600;
}
.gbc-style-notion .gbc-btn-pri:hover { background: #000; }
.gbc-style-notion .gbc-btn-sec:hover { background: var(--nt-soft); border-color: var(--nt-ink-3); }
.gbc-style-notion .gbc-btn-ticket {
  grid-column: 1/-1; background: var(--nt-wood-deep); color: #fff; border-color: var(--nt-wood-deep);
  height: 44px; font-weight: 600;
}

.gbc-style-notion .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 24px 14px; margin-top: 18px;
  border-top: 1px solid var(--nt-line);
  background: var(--nt-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--nt-ink-3); flex-wrap: wrap; gap: 6px;
}
.gbc-style-notion .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-notion .gbc-foot-date { font-variant-numeric: tabular-nums; }

@media (max-width: 380px) {
  .gbc-style-notion .gbc-head { padding: 18px 16px; gap: 10px; }
  .gbc-style-notion .gbc-name { font-size: 19px; }
  .gbc-style-notion .gbc-metrics, .gbc-style-notion .gbc-hours { padding: 14px 16px; }
  .gbc-style-notion .gbc-cell { padding: 9px 16px; grid-template-columns: 72px 1fr; }
  .gbc-style-notion .gbc-actions, .gbc-style-notion .gbc-foot { padding-left: 16px; padding-right: 16px; }
  .gbc-style-notion .gbc-bar-track { height: 46px; }
}


/* ════════════ RISO ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Riso（手繪偏色印刷）
   定位：螢光粉 × 螢光藍 × 噪點半色調，適合有個性的部落客
   ══════════════════════════════════════════════════════════════ */

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

.gbc-style-riso {
  --rs-paper: #fef9e7;
  --rs-card: #fef9e7;
  --rs-ink: #1a1a1a;
  --rs-ink-2: #4a4a4a;
  --rs-ink-3: #888;
  --rs-pink: #ff48a5;       /* riso fluorescent pink */
  --rs-blue: #3d6cff;       /* riso federal blue */
  --rs-yellow: #ffd700;
  --rs-green: #00a878;
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--rs-ink); max-width: 560px; margin: 0 auto;
}

.gbc-style-riso .gbc-card {
  background:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.18) 1px, transparent 1.5px) 0 0/4px 4px,
    var(--rs-card);
  border: 2.5px solid var(--rs-ink);
  border-radius: 0;
  position: relative; overflow: hidden;
}
/* 偏色色塊 */
.gbc-style-riso .gbc-card::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--rs-pink); mix-blend-mode: multiply;
  filter: blur(.5px);
  z-index: 0;
}
.gbc-style-riso .gbc-card::after {
  content: ""; position: absolute; top: 30px; right: 80px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--rs-blue); mix-blend-mode: multiply;
  filter: blur(1px);
  z-index: 0;
}
.gbc-style-riso > .gbc-card > * { position: relative; z-index: 1; }

.gbc-style-riso .gbc-head {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  padding: 22px 22px 20px; align-items: start;
  border-bottom: 2.5px solid var(--rs-ink);
}
.gbc-style-riso .gbc-avatar {
  width: 64px; height: 64px; border-radius: 0;
  overflow: hidden; border: 2.5px solid var(--rs-ink);
  filter: contrast(1.1) saturate(.7);
  position: relative;
}
.gbc-style-riso .gbc-avatar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--rs-pink); mix-blend-mode: screen; opacity: .15;
}
.gbc-style-riso .gbc-avatar-photo,
.gbc-style-riso .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gbc-style-riso .gbc-head-text { min-width: 0; padding-top: 2px; }
.gbc-style-riso .gbc-eyebrow {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--rs-yellow); color: var(--rs-ink);
  padding: 2px 8px; margin-bottom: 6px;
  border: 2px solid var(--rs-ink); transform: rotate(-1.5deg);
}
.gbc-style-riso .gbc-name {
  font-family: 'Archivo Black', 'Noto Sans TC', sans-serif;
  font-size: 26px; line-height: 1.05; font-weight: 900; margin: 0 0 4px;
  color: var(--rs-ink); letter-spacing: -.005em;
  text-transform: uppercase;
}
.gbc-style-riso .gbc-address-short {
  font-family: 'Space Mono', monospace;
  font-size: 12px; color: var(--rs-ink-2); margin: 0;
}

.gbc-style-riso .gbc-status {
  position: absolute; top: 22px; right: 22px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 0;
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--rs-pink); color: var(--rs-ink);
  border: 2.5px solid var(--rs-ink);
}
.gbc-style-riso .gbc-status-closed { background: #ddd; }
.gbc-style-riso .gbc-dot-blink {
  width: 6px; height: 6px; border-radius: 0; background: var(--rs-ink);
  animation: rs-blink 1.4s infinite;
}
@keyframes rs-blink { 50% { opacity: 0; } }

.gbc-style-riso .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  padding: 0; border-bottom: 2.5px solid var(--rs-ink);
}
.gbc-style-riso .gbc-metric {
  text-align: center; padding: 14px 8px;
  border-right: 2.5px solid var(--rs-ink);
}
.gbc-style-riso .gbc-metric:nth-child(2) { background: var(--rs-blue); color: #fff; }
.gbc-style-riso .gbc-metric:last-child { border-right: none; background: var(--rs-yellow); }
.gbc-style-riso .gbc-metric-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px; line-height: 1; color: var(--rs-ink);
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.gbc-style-riso .gbc-metric:nth-child(2) .gbc-metric-num { color: #fff; }
.gbc-style-riso .gbc-today-time {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; line-height: 1; color: var(--rs-ink);
  font-variant-numeric: tabular-nums;
}
.gbc-style-riso .gbc-stars { display: flex; justify-content: center; gap: 2px; margin: 4px 0 2px; font-size: 11px; color: var(--rs-pink); }
.gbc-style-riso .gbc-metric:nth-child(2) .gbc-stars { color: var(--rs-yellow); }
.gbc-style-riso .gbc-stars .half { opacity: .5; }
.gbc-style-riso .gbc-metric-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rs-ink); margin-top: 4px;
}
.gbc-style-riso .gbc-metric:nth-child(2) .gbc-metric-label { color: #fff; }
.gbc-style-riso .gbc-metric-sub { font-family: 'Space Mono', monospace; font-size: 10px; margin-top: 2px; opacity: .85; color: var(--rs-ink); }
.gbc-style-riso .gbc-metric:nth-child(2) .gbc-metric-sub { color: #fff; opacity: 1; font-weight: 700; }

.gbc-style-riso .gbc-hours { padding: 18px 22px; border-bottom: 2.5px solid var(--rs-ink); }
.gbc-style-riso .gbc-hours-head { margin-bottom: 12px; }
.gbc-style-riso .gbc-hours-title {
  font-family: 'Archivo Black', 'Noto Sans TC', sans-serif;
  font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--rs-ink); margin: 0;
}
.gbc-style-riso .gbc-hours-title::before { content: "▼ "; color: var(--rs-pink); }

.gbc-style-riso .gbc-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; align-items: end; }
.gbc-style-riso .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 4px 2px;
}
.gbc-style-riso .gbc-bar-track {
  width: 100%; height: 56px;
  background: rgba(61,108,255,.15); border: 2px solid var(--rs-ink); border-radius: 0;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.gbc-style-riso .gbc-bar-fill {
  width: 100%; background: var(--rs-blue);
}
.gbc-style-riso .gbc-day-col.gbc-today .gbc-bar-fill { background: var(--rs-pink); }
.gbc-style-riso .gbc-day-col.gbc-today .gbc-bar-track { box-shadow: 3px 3px 0 var(--rs-ink); }
.gbc-style-riso .gbc-bar-closed { background: var(--rs-card); }
.gbc-style-riso .gbc-closed-mark { font-family: 'Archivo Black', serif; font-size: 12px; color: var(--rs-ink); margin: auto; }
.gbc-style-riso .gbc-day-label {
  font-family: 'Archivo Black', 'Noto Sans TC', sans-serif; font-size: 13px; color: var(--rs-ink); text-transform: uppercase;
}
.gbc-style-riso .gbc-day-col.gbc-today .gbc-day-label { color: var(--rs-pink); }
.gbc-style-riso .gbc-day-time { font-family: 'Space Mono', monospace; font-size: 8.5px; color: var(--rs-ink-2); font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 700; }

.gbc-style-riso .gbc-info { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.gbc-style-riso .gbc-cell {
  padding: 12px 14px;
  border-right: 2.5px solid var(--rs-ink);
  border-bottom: 2.5px solid var(--rs-ink);
}
.gbc-style-riso .gbc-cell:nth-child(2n) { border-right: none; }
.gbc-style-riso .gbc-cell:nth-last-child(-n+2) { border-bottom: none; }
.gbc-style-riso .gbc-cell.gbc-full { grid-column: 1/-1; border-right: none; }
.gbc-style-riso .gbc-cell-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rs-pink); margin-bottom: 2px;
}
.gbc-style-riso .gbc-cell-val { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--rs-ink); line-height: 1.45; word-break: break-all; font-weight: 700; }
.gbc-style-riso .gbc-cell-link { color: var(--rs-blue); text-decoration: none; border-bottom: 2px solid var(--rs-blue); }

.gbc-style-riso .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 18px 22px 0; }
.gbc-style-riso .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 14px; border-radius: 0;
  font-family: 'Archivo Black', 'Noto Sans TC', sans-serif;
  font-size: 14px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 2.5px solid var(--rs-ink);
  background: var(--rs-card); color: var(--rs-ink);
  transition: transform .1s;
}
.gbc-style-riso .gbc-btn-ico { font-size: 15px; letter-spacing: 0; }
.gbc-style-riso .gbc-btn-pri {
  grid-column: 1/-1; background: var(--rs-blue); color: #fff;
  height: 54px; font-size: 16px;
  box-shadow: 5px 5px 0 var(--rs-ink);
}
.gbc-style-riso .gbc-btn-pri:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--rs-ink); }
.gbc-style-riso .gbc-btn-sec { box-shadow: 3px 3px 0 var(--rs-ink); }
.gbc-style-riso .gbc-btn-sec:hover { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--rs-ink); }
.gbc-style-riso .gbc-btn-ticket {
  grid-column: 1/-1; background: var(--rs-pink); color: var(--rs-ink);
  height: 54px;
  box-shadow: 5px 5px 0 var(--rs-ink);
}

.gbc-style-riso .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 14px; margin-top: 18px;
  border-top: 2.5px solid var(--rs-ink);
  background: var(--rs-yellow);
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--rs-ink); flex-wrap: wrap; gap: 6px;
  letter-spacing: .04em; text-transform: uppercase;
}
.gbc-style-riso .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-riso .gbc-foot-date { font-variant-numeric: tabular-nums; }

@media (max-width: 380px) {
  .gbc-style-riso .gbc-head { padding: 18px 16px; }
  .gbc-style-riso .gbc-status { right: 16px; top: 16px; font-size: 10px; }
  .gbc-style-riso .gbc-name { font-size: 22px; }
  .gbc-style-riso .gbc-cell { padding: 10px 14px; }
  .gbc-style-riso .gbc-actions, .gbc-style-riso .gbc-foot, .gbc-style-riso .gbc-hours { padding-left: 16px; padding-right: 16px; }
  .gbc-style-riso .gbc-bar-track { height: 46px; }
  .gbc-style-riso .gbc-metric-num { font-size: 24px; }
}


/* ════════════ Y2K ════════════ */
/* ══════════════════════════════════════════════════════════════
   版型：Y2K（未來 / 千禧）
   定位：螢光紫青 × Chrome 銀 × 漸層，適合 3C/科技/新世代部落客
   ══════════════════════════════════════════════════════════════ */

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

.gbc-style-y2k {
  --y2-bg: #050518;
  --y2-card: #0c0c2a;
  --y2-card-2: #161640;
  --y2-line: rgba(255,255,255,.1);
  --y2-line-2: rgba(255,255,255,.2);
  --y2-text: #f0f4ff;
  --y2-text-dim: #a5aede;
  --y2-text-mute: #6970a8;
  --y2-cyan: #00f0ff;
  --y2-magenta: #ff2db8;
  --y2-purple: #a855ff;
  --y2-lime: #c6ff3a;
  --y2-chrome: linear-gradient(135deg, #e0e6f5 0%, #a3b1d4 30%, #f0f4ff 50%, #8590b8 70%, #d8dff0 100%);
  font-family: 'Space Grotesk', 'Noto Sans TC', sans-serif;
  color: var(--y2-text);
  max-width: 560px; margin: 0 auto;
}

.gbc-style-y2k .gbc-card {
  background:
    linear-gradient(180deg, rgba(168,85,255,.15), transparent 30%),
    linear-gradient(0deg, rgba(0,240,255,.12), transparent 35%),
    var(--y2-card);
  border-radius: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--y2-line-2);
  box-shadow:
    0 0 0 1px rgba(255,45,184,.3),
    0 0 24px -2px rgba(255,45,184,.4),
    0 0 60px -10px rgba(0,240,255,.5);
}
/* 網格背景 */
.gbc-style-y2k .gbc-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none; z-index: 0;
}
/* 角落切角 */
.gbc-style-y2k .gbc-card::after {
  content: ""; position: absolute; top: 0; right: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, transparent 50%, var(--y2-magenta) 50%);
  z-index: 1;
}
.gbc-style-y2k > .gbc-card > * { position: relative; z-index: 2; }

.gbc-style-y2k .gbc-head {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  padding: 22px 22px 18px; align-items: start;
  border-bottom: 1px solid var(--y2-line);
}
.gbc-style-y2k .gbc-avatar {
  width: 56px; height: 56px; border-radius: 4px;
  overflow: hidden; padding: 2px;
  background: var(--y2-chrome);
  position: relative;
}
.gbc-style-y2k .gbc-avatar-photo {
  width: 100%; height: 100%; border-radius: 2px; overflow: hidden;
}
.gbc-style-y2k .gbc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: hue-rotate(20deg) saturate(1.2); }
.gbc-style-y2k .gbc-head-text { min-width: 0; padding-top: 2px; }
.gbc-style-y2k .gbc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: .25em; text-transform: uppercase;
  color: var(--y2-cyan); margin-bottom: 6px;
}
.gbc-style-y2k .gbc-eyebrow::before { content: "▶ "; color: var(--y2-magenta); }
.gbc-style-y2k .gbc-name {
  font-family: 'Orbitron', 'Noto Sans TC', sans-serif;
  font-size: 22px; line-height: 1.2; font-weight: 700; margin: 0 0 4px;
  color: var(--y2-text); letter-spacing: 0;
  text-shadow: 0 0 16px rgba(0,240,255,.4);
}
.gbc-style-y2k .gbc-address-short {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; color: var(--y2-text-dim); margin: 0;
}

.gbc-style-y2k .gbc-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  background: linear-gradient(135deg, rgba(198,255,58,.15), rgba(0,240,255,.1));
  color: var(--y2-lime); border: 1px solid var(--y2-lime);
  white-space: nowrap;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.gbc-style-y2k .gbc-status-closed { color: var(--y2-text-mute); border-color: var(--y2-text-mute); background: none; }
.gbc-style-y2k .gbc-dot-blink {
  width: 6px; height: 6px; border-radius: 50%; background: var(--y2-lime);
  box-shadow: 0 0 8px var(--y2-lime);
  animation: y2-blink 1s ease-in-out infinite;
}
@keyframes y2-blink { 50% { opacity: .3; } }

.gbc-style-y2k .gbc-metrics {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: var(--y2-line-2);
  border-bottom: 1px solid var(--y2-line);
}
.gbc-style-y2k .gbc-metric {
  background: var(--y2-card); padding: 14px 8px;
  text-align: center;
}
.gbc-style-y2k .gbc-metric-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1; letter-spacing: .02em;
  background: linear-gradient(135deg, var(--y2-cyan), var(--y2-magenta));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.gbc-style-y2k .gbc-today-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; font-weight: 600; line-height: 1; color: var(--y2-cyan);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 8px rgba(0,240,255,.6);
}
.gbc-style-y2k .gbc-stars { display: flex; justify-content: center; gap: 1px; margin: 4px 0 2px; font-size: 11px; color: var(--y2-magenta); }
.gbc-style-y2k .gbc-stars .half {
  background: linear-gradient(90deg, var(--y2-magenta) 50%, rgba(255,45,184,.3) 50%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gbc-style-y2k .gbc-metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--y2-text-mute); margin-top: 4px;
}
.gbc-style-y2k .gbc-metric-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--y2-text-dim); margin-top: 2px; }

.gbc-style-y2k .gbc-hours { padding: 18px 22px; border-bottom: 1px solid var(--y2-line); }
.gbc-style-y2k .gbc-hours-head { margin-bottom: 12px; }
.gbc-style-y2k .gbc-hours-title {
  font-family: 'Orbitron', 'Noto Sans TC', sans-serif;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--y2-text); margin: 0;
}
.gbc-style-y2k .gbc-hours-title::before { content: "[ "; color: var(--y2-magenta); }
.gbc-style-y2k .gbc-hours-title::after { content: " ]"; color: var(--y2-magenta); }

.gbc-style-y2k .gbc-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; align-items: end; }
.gbc-style-y2k .gbc-day-col {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 4px 2px; border-radius: 0;
}
.gbc-style-y2k .gbc-day-col.gbc-today {
  background: linear-gradient(180deg, transparent, rgba(255,45,184,.15));
  outline: 1px solid var(--y2-magenta);
}
.gbc-style-y2k .gbc-bar-track {
  width: 100%; height: 56px;
  background: rgba(255,255,255,.05); border-radius: 0;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  border: 1px solid var(--y2-line-2);
}
.gbc-style-y2k .gbc-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--y2-cyan), var(--y2-purple));
  box-shadow: 0 0 12px rgba(0,240,255,.5);
}
.gbc-style-y2k .gbc-day-col.gbc-today .gbc-bar-fill {
  background: linear-gradient(180deg, var(--y2-magenta), var(--y2-purple));
  box-shadow: 0 0 16px var(--y2-magenta);
}
.gbc-style-y2k .gbc-bar-closed { background: rgba(255,255,255,.02); border-style: dashed; }
.gbc-style-y2k .gbc-closed-mark { font-family: 'Orbitron', serif; font-size: 12px; color: var(--y2-text-mute); margin: auto; }
.gbc-style-y2k .gbc-day-label {
  font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 700; color: var(--y2-text-dim); letter-spacing: .04em;
}
.gbc-style-y2k .gbc-day-col.gbc-today .gbc-day-label { color: var(--y2-magenta); }
.gbc-style-y2k .gbc-day-time { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; color: var(--y2-text-mute); font-variant-numeric: tabular-nums; white-space: nowrap; }

.gbc-style-y2k .gbc-info { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--y2-line); }
.gbc-style-y2k .gbc-cell {
  background: var(--y2-card); padding: 12px 14px;
}
.gbc-style-y2k .gbc-cell.gbc-full { grid-column: 1/-1; }
.gbc-style-y2k .gbc-cell-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--y2-cyan); margin-bottom: 3px;
}
.gbc-style-y2k .gbc-cell-lbl::before { content: "// "; color: var(--y2-text-mute); }
.gbc-style-y2k .gbc-cell-val { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--y2-text); line-height: 1.45; word-break: break-all; }
.gbc-style-y2k .gbc-cell-link { color: var(--y2-magenta); text-decoration: none; text-shadow: 0 0 8px rgba(255,45,184,.5); border-bottom: 1px dashed var(--y2-magenta); }

.gbc-style-y2k .gbc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 18px 22px 0; background: transparent; border-top: none; }
.gbc-style-y2k .gbc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 14px; border-radius: 0;
  font-family: 'Orbitron', 'Noto Sans TC', sans-serif;
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--y2-line-2);
  background: rgba(255,255,255,.04); color: var(--y2-text);
  transition: all .15s;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.gbc-style-y2k .gbc-btn-ico { font-size: 14px; letter-spacing: 0; }
.gbc-style-y2k .gbc-btn-pri {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--y2-cyan), var(--y2-purple));
  color: var(--y2-bg); border-color: var(--y2-cyan);
  height: 52px; font-size: 14px;
  box-shadow: 0 0 20px rgba(0,240,255,.5), 0 0 40px rgba(168,85,255,.3);
}
.gbc-style-y2k .gbc-btn-pri:hover {
  box-shadow: 0 0 30px rgba(0,240,255,.7), 0 0 60px rgba(168,85,255,.5);
}
.gbc-style-y2k .gbc-btn-sec {
  background: rgba(5,5,24,.85);
  color: var(--y2-cyan);
  border-color: var(--y2-cyan);
  text-shadow: 0 0 6px rgba(0,240,255,.6);
}
.gbc-style-y2k .gbc-btn-sec:hover {
  background: rgba(0,240,255,.18);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 14px rgba(0,240,255,.6);
}
.gbc-style-y2k .gbc-btn-ticket {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--y2-magenta), var(--y2-purple));
  color: #fff; border-color: var(--y2-magenta);
  height: 52px;
  box-shadow: 0 0 20px rgba(255,45,184,.6);
}

.gbc-style-y2k .gbc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 22px 14px; margin-top: 18px;
  border-top: 1px solid var(--y2-line);
  background: rgba(0,0,0,.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--y2-text-mute); flex-wrap: wrap; gap: 8px;
  letter-spacing: .08em;
}
.gbc-style-y2k .gbc-foot-txt::before { content: "[sys] "; color: var(--y2-cyan); }
.gbc-style-y2k .gbc-foot-right { display: flex; align-items: center; gap: 10px; }
.gbc-style-y2k .gbc-foot-date { color: var(--y2-text-dim); font-variant-numeric: tabular-nums; }

@media (max-width: 380px) {
  .gbc-style-y2k .gbc-head { padding: 18px 16px; gap: 10px; grid-template-columns: auto 1fr; }
  .gbc-style-y2k .gbc-status { grid-column: 1/-1; justify-self: start; }
  .gbc-style-y2k .gbc-name { font-size: 18px; }
  .gbc-style-y2k .gbc-cell { padding: 10px 14px; }
  .gbc-style-y2k .gbc-actions, .gbc-style-y2k .gbc-foot, .gbc-style-y2k .gbc-hours { padding-left: 16px; padding-right: 16px; }
  .gbc-style-y2k .gbc-bar-track { height: 46px; }
  .gbc-style-y2k .gbc-metric-num { font-size: 22px; }
}

