/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CSS Variables (§2.1 + CLAUDE.md overrides) ────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:    #07071A;
  --bg-secondary:  #141527;
  --bg-elevated:   #1C1E35;

  /* Accents */
  --accent-gold:   #F4A140;
  --accent-teal:   #13CDCB;

  /* Text */
  --text-primary:  #FFFFFF;
  --text-secondary:#8B8FA8;

  /* Borders */
  --border:        rgba(255, 255, 255, 0.08);

  /* Semantic */
  --like-red:      #E8435A;

  /* Navbar / bottom — NOT shared with bg-primary/secondary (Figma override) */
  --navbar-bg:     #080818;
  --bottom-bg:     #030410;

  /* Tier colors (§2.2) */
  --tier-1: #13CDCB;
  --tier-2: #FEAC68;
  --tier-3: #0170FE;
  --tier-4: #6FFEA8;
  --tier-5: #A839FE;
  --tier-6: #A5DEFE;
  --tier-7: #A4995C;
  --tier-8: #FDFE01;
  --tier-9: #02C458;
  --tier-10:#D40603;

  /* Typography */
  --font-thai: 'Noto Sans Thai', sans-serif;
  --font-latin: 'Noto Sans Thai', sans-serif;
  --font-mono: 'Noto Sans Thai', sans-serif;

  /* Layout */
  --navbar-h:    56px;
  --bottom-h:    64px;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-thai);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ─── Shooting stars ────────────────────────────────────────────────────── */
#shooting-stars { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.shooting-star {
  position: absolute;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  opacity: 0;
  animation: shoot var(--dur, 5s) var(--delay, 0s) infinite ease-in;
}

@keyframes shoot {
  0%   { opacity: 0; transform: translate(0, 0) rotate(var(--ang, -30deg)); }
  3%   { opacity: 1; }
  25%  { opacity: 0; transform: translate(var(--dx, 300px), var(--dy, 150px)) rotate(var(--ang, -30deg)); }
  100% { opacity: 0; transform: translate(var(--dx, 300px), var(--dy, 150px)) rotate(var(--ang, -30deg)); }
}

/* ─── Zone tooltip ───────────────────────────────────────────────────────── */
.zone-tooltip {
  position: fixed;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-thai);
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.1s;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.zone-tooltip.visible { opacity: 1; }

/* ─── Starfield background ───────────────────────────────────────────────── */
#starfield { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--twinkle-dur, 3s) var(--twinkle-delay, 0s) infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: var(--opacity-lo, 0.2); transform: scale(1); }
  50%       { opacity: var(--opacity-hi, 0.9); transform: scale(1.15); }
}

/* Blurred radial gradient behind seat map (~600px, purple/navy, ~15% opacity) */
body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 40, 160, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* All content above pseudo-elements */
#navbar, #page-layout, #bottom-bar { position: relative; z-index: 1; }

/* ─── Page Layout wrapper ────────────────────────────────────────────────── */
#page-layout {
  display: flex;
  flex-direction: column;
}

/* Desktop: fixed viewport — no page-level scroll, only inner columns scroll */
@media (min-width: 1024px) {
  #page-layout {
    position: fixed;
    top: var(--navbar-h);
    bottom: var(--bottom-h);
    left: 0;
    right: 0;
    overflow: hidden;
  }
}

/* ─── [A] Sticky Top Navbar ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-h);
  background: var(--navbar-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 32px;
  gap: 12px;
}

.navbar-hashtag {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 400;
  color: var(--accent-gold);
  white-space: nowrap;
}

.navbar-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.navbar-event-name {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-spacer { flex: 1; }

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 34px;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--font-thai);
  font-size: 13px;
  font-weight: 700;
  border-radius: 17px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.btn-buy:hover { opacity: 0.85; }

/* ─── [B] Hero Section ───────────────────────────────────────────────────── */
#hero {
  padding: 8px 32px 0;
  margin-top: var(--navbar-h); /* mobile: push below fixed navbar */
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  #hero { margin-top: 0; } /* desktop: #page-layout already starts at navbar-h */
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 12px;
}

.hero-poster {
  width: 144px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.sold-out-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #fff;
  background: rgba(244, 161, 64, 0.12);
  border: 1.5px solid var(--accent-gold);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 6px;
  text-shadow: 0 0 6px rgba(244,161,64,0.8);
  animation: soldout-pulse 2.4s ease-in-out infinite;
}

@keyframes soldout-pulse {
  0%   { box-shadow: 0 0 4px rgba(244,161,64,0.5),  0 0 10px rgba(244,161,64,0.2);  border-color: rgba(244,161,64,0.9); }
  50%  { box-shadow: 0 0 12px rgba(244,161,64,0.85), 0 0 28px rgba(244,161,64,0.35); border-color: rgba(244,161,64,1);   }
  100% { box-shadow: 0 0 4px rgba(244,161,64,0.5),  0 0 10px rgba(244,161,64,0.2);  border-color: rgba(244,161,64,0.9); }
}

.hero-title {
  font-family: var(--font-latin);
  font-size: 50px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1.3;
}

.hero-meta {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 2px;
}
@media (max-width: 767px) {
  .hero-meta-location {
    display: block;
    margin-top: 2px;
  }
}

/* Price tier chips */
.price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 22px;
  border-radius: 4px;
  font-family: var(--font-latin);
  font-size: 9px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  border: 1px solid;
  white-space: nowrap;
}
.price-chip:hover { --chip-bg-opacity: 0.30; }
.price-chip.chip-highlighted {
  outline: 1.5px solid var(--accent-gold);
  outline-offset: 1px;
}

/* Section divider + label */
.hero-divider {
  height: 1px;
  background: var(--border);
  margin-top: 16px;
  width: 100%;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.section-label {
  font-family: var(--font-thai);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.section-label-bar {
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 1px;
}

/* ─── [C] Seat Map + Zone Panel ──────────────────────────────────────────── */
#seat-section {
  display: flex;
  min-height: 420px;
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
  #seat-section { flex: 1; min-height: 0; overflow: hidden; }
}

.seat-col {
  flex: 1;
  overflow: auto;
  min-width: 0;
}

.seat-col-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

/* Seat map wrapper — centres SVG, applies scaling */
#map-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}

#map-col .price-chips {
  margin-top: 0;
  margin-bottom: 20px;
  justify-content: center;
}

#seat-map-wrap {
  width: 100%;
  max-width: 508px;
}

#seat-map {
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  #map-col { overflow: hidden; justify-content: center; }
  #seat-map-wrap { flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
  #seat-map { width: auto; height: 100%; max-width: 100%; }
}

/* Zone interaction states */
.zone path, .zone rect, .zone polygon, .zone circle {
  cursor: pointer;
  transition: opacity 0.15s, filter 0.15s;
  opacity: 0.7;
}

.zone:hover path, .zone:hover rect, .zone:hover polygon, .zone:hover circle {
  opacity: 1;
}

.zone.selected path, .zone.selected rect, .zone.selected polygon, .zone.selected circle {
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.8));
}

.zone.dimmed path, .zone.dimmed rect, .zone.dimmed polygon, .zone.dimmed circle {
  opacity: 0.2;
}

/* Zone panel container */
#panel-col {
  padding: 0;
  display: flex;
  flex-direction: column;
}

#zone-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  margin: 12px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-header-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.panel-header-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

/* Panel states */
.panel-state {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 99, 255, 0.4) transparent;
}
.panel-state::-webkit-scrollbar {
  width: 5px;
}
.panel-state::-webkit-scrollbar-track {
  background: transparent;
}
.panel-state::-webkit-scrollbar-thumb {
  background: rgba(108, 99, 255, 0.4);
  border-radius: 4px;
}

.panel-state.hidden { display: none; }

/* Panel fade transition */
.panel-state {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Idle state — Most Liked Zones */
.panel-idle-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.panel-idle-title {
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.panel-idle-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

.leaderboard {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-idle-footer {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* Podium cards */
.podium-row {
  display: flex;
  gap: 8px;
}

.podium-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.podium-card.rank-1 {
  flex: 1 1 100%;
  background: rgba(255, 255, 255, 0.07);
}

.podium-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zone-color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.podium-zone-code {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.podium-rank-badge {
  font-size: 14px;
  margin-left: auto;
}

.podium-meta {
  font-size: 11px;
  color: var(--text-secondary);
}

.podium-likes {
  font-size: 12px;
  color: var(--like-red);
}

/* Ranks 4–10 compact list */
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.leaderboard-row:last-child { border-bottom: none; }

.lb-rank {
  font-family: var(--font-latin);
  font-size: 12px;
  color: var(--text-secondary);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.lb-zone { font-weight: 700; font-size: 13px; flex: 1; }
.lb-price { font-size: 11px; color: var(--text-secondary); }
.lb-likes { font-size: 12px; color: var(--like-red); margin-left: auto; }

/* Active state — Zone Info Card (structure; detailed styles in Phase 4) */
.zone-card-band {
  height: 6px;
  border-radius: 4px 4px 0 0;
  margin: -16px -16px 12px;
}

.zone-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.zone-card-code {
  font-family: var(--font-latin);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

.zone-card-meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.zone-card-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* Like button */
.like-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  color: var(--zone-color, var(--text-secondary));
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.like-btn:hover { background: rgba(255,255,255,0.08); }

.like-icon { display: flex; align-items: center; justify-content: center; }
.like-icon svg {
  fill: none;
  stroke: var(--zone-color, currentColor);
  transition: fill 0.15s;
}
.like-btn.liked .like-icon svg {
  fill: var(--zone-color, var(--like-red));
}

.like-btn-count {
  font-family: var(--font-thai);
  font-size: 10px;
  color: var(--zone-color, var(--like-red));
  line-height: 1;
  margin-top: -2px;
  font-weight: 600;
}

/* ─── [D] Sticky Bottom Bar ─────────────────────────────────────────────── */
#bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--bottom-h);
  background: var(--bottom-bg);
  border-top: 1px solid var(--border);
  z-index: 100;
}

.bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 24px;
  gap: 0;
}

.bottom-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 16px;
}

/* Event summary */
.bottom-event {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.bottom-artist {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 700;
  color: rgba(19, 205, 203, 0.9);
  letter-spacing: 0.5px;
}

.bottom-concert-name {
  font-family: var(--font-latin);
  font-size: 8px;
  font-weight: 400;
  color: rgba(234, 240, 251, 0.38);
  letter-spacing: 0.3px;
}

.bottom-details {
  font-family: var(--font-latin);
  font-size: 7px;
  font-weight: 400;
  color: rgba(234, 240, 251, 0.25);
  letter-spacing: 0.2px;
}

/* Countdown label */
.bottom-countdown-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


.bottom-countdown-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bottom-countdown-label span:first-child {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
}

.bottom-countdown-sub {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Countdown digits */
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 40px;
  background: var(--bg-elevated);
  border-radius: 4px;
  gap: 0;
}

.cd-num {
  font-family: var(--font-latin);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.cd-unit {
  font-size: 9px;
  color: var(--text-secondary);
  line-height: 1;
  margin-top: 1px;
}

.cd-colon {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* CTA button (bottom bar — teal style, NOT gold) */
.btn-buy-bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 44px;
  background: rgba(19, 205, 203, 0.12);
  border: 1px solid rgba(19, 205, 203, 0.4);
  border-radius: 8px;
  color: #13CDCB;
  font-family: var(--font-thai);
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.15s;
}
.btn-buy-bottom:hover { background: rgba(19, 205, 203, 0.20); }

/* Sale info text */
.bottom-sale-text {
  font-size: 13px;
  color: var(--accent-gold);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sale-main {
  font-weight: 600;
  white-space: nowrap;
}
.sale-sub {
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
}

/* ─── Zone Info Card ─────────────────────────────────────────────────────── */
.zone-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-price-section,
.card-benefits-section,
.card-visibility-section { margin-top: 4px; }

.card-actions { margin-top: 4px; padding-bottom: 4px; }

.card-section-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Price section */
.price-main {
  font-family: var(--font-latin);
  font-size: 29px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 18px;
  font-weight: 400;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 4px;
}

.fee-row-protect {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

/* Level 3 multi-price rows */
.price-rows { display: flex; flex-direction: column; gap: 4px; margin-bottom: 6px; }

.price-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}

.price-row-left { display: flex; flex-direction: column; gap: 2px; }
.price-row-price { font-size: 17px; font-weight: 700; }
.price-row-label { font-size: 11px; color: var(--text-secondary); }
.price-row-fees  { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 12px; color: var(--text-secondary); flex-shrink: 0; }
.price-row-fees-label { font-size: 10px; color: var(--text-secondary); text-align: right; }
.price-row .fee-total-val { font-size: 13px; font-weight: 700; color: var(--text-primary); }

.price-fee-note {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 4px;
  text-align: right;
}

/* Fan Benefits */
.benefit-list { display: flex; flex-direction: column; gap: 4px; }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.benefit-icon {
  font-size: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefit-yes .benefit-icon { color: #02C458; }
.benefit-no  .benefit-icon { color: var(--text-secondary); }
.benefit-no  .benefit-name  { color: var(--text-secondary); }

.benefit-text { display: flex; flex-direction: column; gap: 1px; }
.benefit-name { font-size: 13px; line-height: 1.3; }
.benefit-random {
  font-size: 11px;
  color: var(--text-secondary);
  font-style: italic;
}

.benefit-tier-note {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 400;
}

.benefit-footnote {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.4;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  border-left: 2px solid rgba(255,255,255,0.12);
}

/* Visibility section */
.visibility-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.visibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.visibility-detail {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Fee total value (larger + bolder) */
.fee-total-val {
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.fee-row-protect .fee-total-val { color: var(--accent-gold); }

/* Action buttons */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-actions-row {
  display: flex;
  gap: 8px;
}
.card-actions-row > * {
  flex: 1;
}
.card-actions-social {
  display: flex;
  gap: 8px;
}
.card-actions-social > * {
  flex: 1;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  font-family: var(--font-thai);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  border: none;
  white-space: nowrap;
}
.btn-card:hover { opacity: 0.8; }

.btn-view {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
  border: 1px solid var(--border);
  min-width: 130px;
}

.btn-save {
  background: var(--accent-gold);
  color: #000;
  min-width: 140px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.btn-social:hover { background: rgba(255,255,255,0.15); }
.btn-social-line { color: #06C755; }
.btn-social-fb   { color: #1877F2; }
.btn-social-ig   { color: #E1306C; }
.btn-social-x    { color: #fff; }

/* Podium + leaderboard like count — use zone color via inline style */
.podium-likes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
.lb-likes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  margin-left: auto;
}

/* Zone card stub (Phase 3 placeholder) */
.zone-card-stub {
  padding: 8px 0;
}

/* Leaderboard section label */
.lb-section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 10px 0 6px;
}

/* Countdown concert day */
.cd-concert-day {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-teal);
}

/* Toast */
.toast {
  position: fixed;
  bottom: calc(var(--bottom-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-elevated);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  border: 1px solid var(--border);
  white-space: nowrap;
}

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

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ─── Responsive: Tablet 768–1023px ─────────────────────────────────────── */
@media (max-width: 1023px) {
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 18px; }

  #seat-section {
    flex-direction: column;
  }

  .seat-col-divider { width: 100%; height: 1px; }

  #map-col { padding: 12px; }

  #panel-col { min-height: 400px; }
}

/* ─── Responsive: Mobile <768px ──────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Navbar: reduce padding, hide non-essential items */
  .navbar-inner { padding: 0 12px; }
  .navbar-sep,
  .navbar-event-name,
  .navbar-guide-sep { display: none; }
  .hide-mobile { display: none; }
  .btn-concert-guide { font-size: 12px; padding: 0 12px; height: 32px; border-radius: 16px; }
  .btn-buy { width: 76px; height: 32px; font-size: 12px; border-radius: 16px; }

  /* Hero: poster visible on mobile but smaller */
  .hero-poster { width: 120px; height: auto; }
  .hero-title { font-size: 36px; }

  /* Price chips: wrap to next line on narrow screens */
  .price-chips {
    flex-wrap: wrap;
  }

  /* Bottom bar: floating card on mobile */
  #bottom-bar {
    height: auto;
    bottom: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .bottom-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 16px;
    gap: 8px;
  }
  .bottom-countdown-block { flex-wrap: wrap; gap: 8px; }
  .bottom-sep { display: none; }
  .bottom-sale-text {
    font-size: 11px;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

  .countdown-digits { justify-content: center; }

  /* Zone panel: stacks below map, normal flow */
  #panel-col {
    min-height: 400px;
    padding-bottom: 96px;
  }
}

/* ── Prayer Button ─────────────────────────────────────────────────── */
.btn-prayer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  background: rgba(19, 205, 203, 0.12);
  color: #13CDCB;
  border: 1px solid rgba(19, 205, 203, 0.6);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 10px rgba(19, 205, 203, 0.25);
}
.btn-prayer:hover {
  background: rgba(19, 205, 203, 0.2);
  box-shadow: 0 0 18px rgba(19, 205, 203, 0.45);
}

/* ── Prayer Modal ──────────────────────────────────────────────────── */
#prayer-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#prayer-modal.is-open {
  display: flex;
  animation: prayer-fade-in 0.2s ease;
}
@keyframes prayer-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.prayer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 16, 0.88);
  backdrop-filter: blur(4px);
}

.prayer-card {
  position: relative;
  z-index: 1;
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at 50% 0%, #101034 0%, #07071C 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px #F4A140,
    0 0 40px rgba(244, 161, 64, 0.22),
    0 0 60px rgba(19, 205, 203, 0.12);
  animation: prayer-card-in 0.25s ease;
}
@keyframes prayer-card-in {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.prayer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(13, 13, 48, 0.9);
  border-bottom: 1px solid rgba(244, 161, 64, 0.25);
  flex-shrink: 0;
}
.prayer-header-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(244, 161, 64, 0.5);
}
.prayer-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.prayer-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.prayer-body {
  padding: 20px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 99, 255, 0.4) transparent;
}
.prayer-body::-webkit-scrollbar {
  width: 5px;
}
.prayer-body::-webkit-scrollbar-track {
  background: transparent;
}
.prayer-body::-webkit-scrollbar-thumb {
  background: rgba(108, 99, 255, 0.4);
  border-radius: 4px;
}
.prayer-intro {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin: 0;
}
.prayer-intro strong {
  color: #fff;
}
.prayer-direction {
  font-size: 12px;
  color: #9999BB;
  margin: 0;
  line-height: 1.5;
}
.prayer-meditation {
  font-size: 12px;
  color: #9999BB;
  margin: 0;
}
.prayer-closing {
  font-size: 14px;
  font-weight: 600;
  color: #F4A140;
  text-align: center;
  margin: 4px 0 0;
}

.prayer-chant {
  margin: 0;
  padding: 14px 16px 14px 18px;
  background: rgba(244, 161, 64, 0.07);
  border-left: 3px solid #F4A140;
  border-radius: 0 8px 8px 0;
  box-shadow: inset 0 0 12px rgba(244, 161, 64, 0.08);
}
.prayer-chant-note {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(244, 161, 64, 0.8);
  margin-bottom: 8px;
}
.prayer-chant p {
  margin: 0 0 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.93);
  line-height: 1.5;
}
.prayer-chant p:last-child { margin-bottom: 0; }

.prayer-declaration {
  margin: 0;
  padding: 14px 16px 14px 18px;
  background: rgba(19, 205, 203, 0.07);
  border-left: 3px solid #13CDCB;
  border-radius: 0 8px 8px 0;
  box-shadow: inset 0 0 14px rgba(19, 205, 203, 0.08);
}
.prayer-declaration p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.prayer-zone-highlight {
  color: #13CDCB;
  font-weight: 700;
}

.prayer-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(13, 13, 48, 0.9);
  border-top: 1px solid rgba(244, 161, 64, 0.12);
  flex-shrink: 0;
}
.prayer-footer-divider {
  color: rgba(244, 161, 64, 0.6);
  font-size: 11px;
}
.prayer-footer-note {
  font-size: 11px;
  color: rgba(153, 153, 187, 0.55);
}

@media (max-width: 600px) {
  .prayer-card {
    max-height: 90vh;
    border-radius: 12px 12px 0 0;
    align-self: flex-end;
    width: 100%;
    max-width: 100%;
    animation: prayer-slide-up 0.3s ease;
  }
  #prayer-modal.is-open {
    align-items: flex-end;
  }
  @keyframes prayer-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
}

.prayer-placeholder {
  color: #13CDCB;
}
.prayer-slash {
  color: rgba(255, 255, 255, 0.3);
}
.prayer-bold-white {
  color: #fff;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Concert Guide Modal
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS variables ── */
:root {
  --guide-modal-bg:  #0D0D2B;
  --guide-header-bg: #080818;
  --guide-btn:       #6C63FF;
  --guide-divider:   rgba(255, 255, 255, 0.08);
}

/* ── Navbar button ── */
.btn-concert-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  background: var(--guide-btn);
  color: #fff;
  border: none;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-thai);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s;
}
.btn-concert-guide:hover {
  background: #5A52E0;
}

.navbar-guide-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── Modal backdrop ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 3, 16, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-backdrop[hidden] {
  display: none;
}

/* ── Modal card ── */
.guide-modal-card {
  position: relative;
  width: 820px;
  max-width: 95vw;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  background: var(--guide-modal-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(108, 99, 255, 0.55),
    0 0 48px rgba(108, 99, 255, 0.18),
    0 8px 40px rgba(0, 0, 0, 0.55);
  animation: guide-card-in 0.22s ease;
}
@keyframes guide-card-in {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ── Header ── */
.guide-modal-header {
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 18px;
  background: var(--guide-header-bg);
  border-bottom: 1px solid var(--guide-divider);
}

.guide-modal-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.guide-teal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  box-shadow: 0 0 8px rgba(19, 205, 203, 0.7);
  flex-shrink: 0;
}

.guide-modal-title-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.guide-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* ── Tab bar ── */
.guide-tab-bar {
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  background: var(--guide-header-bg);
  border-bottom: 1px solid var(--guide-divider);
}

.guide-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  padding: 8px 4px;
  transition: border-color 0.15s, background 0.15s;
}
.guide-tab:hover {
  background: rgba(255, 255, 255, 0.04);
}

.guide-tab-icon {
  font-size: 22px;
  display: block;
  text-align: center;
  line-height: 1;
}
.guide-tab-label {
  font-size: 9px;
  font-weight: 500;
  font-family: var(--font-thai);
  text-align: center;
  color: #8B8FA8;
  white-space: nowrap;
  transition: color 0.15s;
}

.guide-tab.active {
  border-bottom-color: var(--accent-teal);
}
.guide-tab.active .guide-tab-label {
  color: var(--accent-teal);
}

/* ── Content area ── */
.guide-content {
  height: 460px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 99, 255, 0.4) transparent;
}
.guide-content::-webkit-scrollbar {
  width: 5px;
}
.guide-content::-webkit-scrollbar-track {
  background: transparent;
}
.guide-content::-webkit-scrollbar-thumb {
  background: rgba(108, 99, 255, 0.4);
  border-radius: 4px;
}

/* ── Footer ── */
.guide-modal-footer {
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--guide-header-bg);
  border-top: 1px solid var(--guide-divider);
}

.guide-footer-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.guide-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.guide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s, transform 0.2s;
}
.guide-dot.active {
  background: var(--accent-teal);
  transform: scale(1.25);
}

/* ── Guide content shared ── */
.guide-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.guide-subsection-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.guide-placeholder {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  padding: 12px 0;
}

/* ── Timeline (Tab 1: schedule) ── */
.guide-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.guide-tl-item {
  display: grid;
  grid-template-columns: 14px 2px 1fr;
  column-gap: 12px;
  position: relative;
  padding-bottom: 18px;
}
.guide-tl-item:last-child { padding-bottom: 0; }

.guide-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.25);
  margin-top: 3px;
  grid-column: 1;
  align-self: start;
  justify-self: center;
}
.guide-tl-highlight .guide-tl-dot {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  box-shadow: 0 0 8px rgba(19,205,203,0.6);
}

.guide-tl-line {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 2px;
  background: rgba(255,255,255,0.08);
  justify-self: center;
  margin-top: 14px;
}

.guide-tl-body {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.guide-tl-date {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.03em;
}
.guide-tl-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.guide-tl-highlight .guide-tl-label {
  color: var(--accent-teal);
}
.guide-tl-sub {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.guide-tl-dday-label {
  color: var(--accent-gold) !important;
  font-size: 14.3px;
}
.guide-tl-dday-item .guide-tl-date {
  color: var(--accent-teal) !important;
}
.guide-tl-dday-item .guide-tl-dot {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 8px rgba(244,161,64,0.7);
}
.guide-tl-past {
  opacity: 0.4;
}

/* ── Rule list (Tab 2 & 3) ── */
.guide-rule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}
.guide-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid var(--guide-divider);
}
.guide-rule-item.guide-rule-important {
  border-color: rgba(244,161,64,0.3);
  background: rgba(244,161,64,0.06);
}
.guide-rule-item.guide-rule-teal {
  border-color: rgba(19,205,203,0.3);
  background: rgba(19,205,203,0.06);
}
.guide-rule-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.guide-rule-label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
}
.guide-rule-sub {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 2px;
}

/* ── Live date highlight grid ── */
.live-date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.live-date-card { padding: 13px 14px; border: 1px solid var(--guide-divider); border-radius: 10px; display: flex; flex-direction: column; gap: 3px; }
.live-date-card.live-date-teal { border-color: rgba(19,205,203,0.35); background: rgba(19,205,203,0.07); }
.live-date-card.live-date-gold { border-color: rgba(244,161,64,0.35); background: rgba(244,161,64,0.07); }
.live-date-icon { font-size: 18px; margin-bottom: 4px; }
.live-date-label { font-size: 10px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.live-date-value { font-size: 13px; font-weight: 700; color: #fff; }
.live-date-sub { font-size: 10.5px; color: var(--text-secondary); margin-top: 2px; line-height: 1.4; }

/* ── Channel cards (Tab 2) ── */
.guide-channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}
.guide-channel-card {
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--guide-divider);
  border-radius: 8px;
}
.guide-channel-card.guide-channel-highlight {
  border-color: rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.07);
}
.guide-channel-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.guide-channel-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.guide-channel-name-note {
  font-size: 12px;
  font-weight: 400;
}
.guide-channel-sub {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── Fee note & price table (Tab 2) ── */
.guide-fee-note {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.5;
}
.guide-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--guide-divider);
}
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.guide-table th {
  padding: 8px 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--guide-divider);
}
.guide-table td {
  padding: 7px 10px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table tr:hover td { background: rgba(255,255,255,0.03); }
.guide-price-cell {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.guide-tier-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Info box (Tab 3) ── */
.guide-info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(19,205,203,0.07);
  border: 1px solid rgba(19,205,203,0.2);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.guide-info-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.guide-rule-link {
  display: inline-block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-teal);
  text-decoration: none;
  transition: opacity 0.15s;
}
.guide-rule-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ── Ticket rules grid (Tab 2) ── */
.ticket-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.ticket-rule-card {
  padding: 12px 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--guide-divider);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticket-rule-card.trcard-warn {
  border-color: rgba(244,161,64,0.3);
  background: rgba(244,161,64,0.06);
}
.ticket-rule-card.trcard-danger {
  border-color: rgba(255,80,80,0.25);
  background: rgba(255,80,80,0.05);
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.ticket-rule-card.trcard-full {
  grid-column: 1 / -1;
}
.trcard-icon {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 2px;
  flex-shrink: 0;
}
.trcard-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.trcard-sub {
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.trcard-bullets {
  margin: 3px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trcard-bullets li {
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}
.trcard-bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text-secondary);
  font-weight: 700;
}

/* ── Payment chips (Tab 2) ── */
.payment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}
.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--guide-divider);
  border-radius: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.payment-chip.payment-chip-highlight {
  border-color: rgba(244,161,64,0.35);
  background: rgba(244,161,64,0.08);
  color: var(--accent-gold);
}

/* ── Payment warning grid ── */
.payment-warn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px; }
.payment-warn-card { padding: 12px 13px; background: rgba(255,255,255,0.04); border: 1px solid var(--guide-divider); border-radius: 9px; display: flex; flex-direction: column; gap: 7px; }
.payment-warn-card.payment-warn-teal { border-color: rgba(19,205,203,0.3); background: rgba(19,205,203,0.06); }
.payment-warn-card.payment-warn-danger { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.07); }
.payment-warn-card.payment-warn-full { grid-column: 1 / -1; }
.payment-warn-top { display: flex; align-items: center; gap: 7px; }
.payment-warn-icon { font-size: 16px; flex-shrink: 0; }
.payment-warn-label { font-size: 11.5px; font-weight: 700; color: #fff; line-height: 1.35; }

/* ── Queue tips (Tab 2) ── */
.queue-tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px; }
.queue-tip-card { padding: 12px 13px; background: rgba(255,255,255,0.04); border: 1px solid var(--guide-divider); border-radius: 9px; display: flex; flex-direction: column; gap: 6px; }
.queue-tip-card.queue-tip-card-warn { border-color: rgba(244,161,64,0.3); background: rgba(244,161,64,0.06); }
.queue-tip-icon { font-size: 18px; }
.queue-tip-label { font-size: 11.5px; font-weight: 700; color: #fff; line-height: 1.35; }

/* ── Login grid (Tab 2) ── */
.login-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}
.login-card {
  padding: 14px 13px;
  border-radius: 9px;
  border: 1px solid var(--guide-divider);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.login-card-tip {
  border-color: rgba(244,161,64,0.35);
  background: rgba(244,161,64,0.07);
}
.login-card-fix {
  background: rgba(255,255,255,0.04);
}
.login-card-icon {
  font-size: 20px;
  line-height: 1;
}
.login-card-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.login-card-sub {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.login-fix-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(19,205,203,0.2);
  color: var(--accent-teal);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  vertical-align: middle;
  margin-right: 2px;
}

/* ── Collect pick options (Tab 3) ── */
.collect-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.collect-pick-card {
  padding: 14px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--guide-divider);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.collect-pick-card.collect-pick-recommended {
  border-color: rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.07);
}
.collect-pick-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a99bff;
  margin-bottom: 2px;
}
.collect-pick-badge.collect-pick-badge-neutral {
  color: var(--text-secondary);
}
.collect-pick-icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 2px;
}
.collect-pick-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.collect-pick-date {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 2px;
}
.collect-pick-sub {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Ticket steps (Tab 2) ── */
.ticket-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.ticket-step {
  padding: 13px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--guide-divider);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.tstep-num {
  position: absolute;
  top: 10px;
  right: 11px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-teal);
  opacity: 0.7;
}
.tstep-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}
.tstep-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.tstep-sub {
  font-size: 10.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Benefit table (Tab 4) ── */
.guide-ben-legend {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.guide-ben-table {
  font-size: 11px;
  min-width: 560px;
}
.guide-ben-tier-header,
.guide-ben-header {
  text-align: center;
  white-space: nowrap;
  padding: 8px 6px;
  font-size: 10px;
}
.guide-ben-tier-header { text-align: left; min-width: 90px; }
.guide-ben-tier-cell {
  white-space: nowrap;
  padding: 7px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.guide-ben-cell {
  text-align: center;
  padding: 7px 4px;
  font-size: 12px;
}
.guide-ben-yes  { color: #13CDCB; }
.guide-ben-no   { color: rgba(255,255,255,0.2); font-size: 13px; }
.guide-ben-rand { font-size: 11px; }
.guide-ben-n {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent-gold);
  vertical-align: super;
  margin-left: 1px;
}
.guide-ben-sup {
  color: var(--accent-gold);
  font-size: 9px;
  margin-left: 1px;
}
.guide-ben-footnotes {
  margin-top: 10px;
}
.guide-ben-footnote-text {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 4px;
}

/* ── Live perk badge (Tab 5) ── */
.guide-live-perk {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-teal);
}

/* ── Responsive < 900px ── */
@media (max-width: 900px) {
  .guide-modal-card {
    width: 95vw;
  }
  .guide-modal-title-text {
    font-size: 10px;
  }
}

/* ── Responsive < 600px ── */
@media (max-width: 600px) {
  .guide-modal-card {
    max-height: 90vh;
    border-radius: 14px 14px 0 0;
    align-self: flex-end;
    width: 100%;
    max-width: 100%;
    animation: guide-slide-up 0.28s ease;
  }
  .modal-backdrop {
    align-items: flex-end;
  }
  @keyframes guide-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
  .guide-tab-label {
    font-size: 8px;
  }
  .guide-tab-icon {
    font-size: 18px;
  }
}

/* ─── Zone Seat Count + Seat View Button ─────────────────────────────────── */
.zone-seat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.zone-seat-count {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 10px;
}
.seat-count-icon { font-size: 16px; flex-shrink: 0; }
.seat-count-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.seat-count-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seat-count-num {
  font-family: var(--font-latin);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.btn-seat-view {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 52px;
  padding: 0 12px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--zone-btn-color, var(--accent-teal)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--zone-btn-color, var(--accent-teal)) 35%, transparent);
  border-radius: 8px;
  color: var(--zone-btn-color, var(--accent-teal));
  font-family: var(--font-thai);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.btn-seat-view:hover {
  background: color-mix(in srgb, var(--zone-btn-color, var(--accent-teal)) 20%, transparent);
  border-color: color-mix(in srgb, var(--zone-btn-color, var(--accent-teal)) 60%, transparent);
}

/* ─── Seat Summary Stats (above Most Liked Zones) ───────────────────────── */
.seat-summary-title {
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.seat-summary-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 14px;
}
.seat-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.seat-summary-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
}
.seat-summary-icon { font-size: 20px; flex-shrink: 0; }
.seat-summary-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.seat-summary-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.seat-summary-num {
  font-family: var(--font-latin);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

/* ─── Seat count in leaderboard rows ────────────────────────────────────── */
.lb-seat-count {
  font-size: 11px;
  color: var(--text-secondary);
  margin-left: auto;
  margin-right: 4px;
  white-space: nowrap;
}
.podium-seat-count {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ─── Seat View Lightbox ─────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.lightbox-overlay.lightbox-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
#lightbox-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* --- Zone Card Divider --- */
.zone-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 14px 0;
}

/* --- Seat Rows Collapsible --- */
.seat-rows-detail {
  margin-top: 10px;
}
.seat-rows-summary {
  font-size: 12px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  user-select: none;
}
.seat-rows-summary::-webkit-details-marker { display: none; }
.seat-rows-summary::before {
  content: '▶';
  font-size: 9px;
  transition: transform 0.2s;
}
.seat-rows-detail[open] > .seat-rows-summary::before {
  transform: rotate(90deg);
}
.seat-rows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 0;
  margin-top: 8px;
  padding: 10px 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}
.seat-rows-grid .seat-row-item {
  padding: 3px 10px;
}
.seat-rows-grid .seat-row-item:nth-child(3n+2),
.seat-rows-grid .seat-row-item:nth-child(3n) {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.seat-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 0;
}
.seat-row-name {
  font-size: 11px;
  color: var(--text-secondary);
}
.seat-row-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}
.seat-row-unit {
  font-size: 9px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* --- Seat Summary total card highlight --- */
.seat-summary-card--total {
  background: linear-gradient(135deg, rgba(244,161,64,0.12) 0%, rgba(244,161,64,0.04) 100%);
  border-color: rgba(244,161,64,0.4);
  position: relative;
  overflow: hidden;
}
.seat-summary-card--total::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(244,161,64,0.08), transparent 60%);
  pointer-events: none;
}
.seat-summary-card--total .seat-summary-label {
  color: var(--accent-gold);
}
.seat-summary-card--total .seat-summary-num {
  color: var(--accent-gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Seat Map Lightbox Modal  (Phase 3)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Override lightbox-content layout when showing seat map */
.lightbox-content:has(.sm-header) {
  align-items: stretch;
  width: min(828px, 95vw);
  max-height: 92vh;
  background: #07071A;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
  gap: 0;
  display: flex;
  flex-direction: column;
}

/* Close button positioned inside sm-header (not absolutely positioned) */
.sm-close-btn {
  position: static !important;
  top: auto !important;
  right: auto !important;
}

/* ── Header ── */
.sm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 48px;
  flex-shrink: 0;
}
.sm-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ── Dividers ── */
.sm-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}
.sm-divider-subtle {
  background: rgba(255,255,255,0.06);
}

/* ── Stage bar ── */
.sm-stage {
  position: relative;
  height: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  padding-bottom: 7px;
}
.sm-stage svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 36px;
}
.sm-stage-label {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(232,67,90,0.85);
  z-index: 1;
}

/* ── Seat grid outer (gradient overlays) ── */
.seat-grid-outer {
  position: relative;
  overflow: hidden;
}

/* ── Zoom controls (overlaid on stage) ── */
.sm-zoom-controls {
  position: absolute;
  right: 12px;
  bottom: 6px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px;
  background: rgba(7,7,26,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.sm-zoom-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.sm-zoom-btn:hover { background: rgba(255,255,255,0.22); }
.sm-zoom-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  min-width: 34px;
  text-align: center;
}
/* Left column gradient — single continuous strip behind entire label column */
.seat-grid-outer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 58px;
  background: linear-gradient(to right, rgba(7,7,26,0.8) 32px, transparent);
  pointer-events: none;
  z-index: 10;
}
/* Right column gradient — single continuous strip */
.seat-grid-outer::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58px;
  background: linear-gradient(to left, rgba(7,7,26,0.8) 32px, transparent);
  pointer-events: none;
  z-index: 10;
}

/* ── Seat grid wrapper (scrollable) ── */
.seat-grid-wrap {
  position: relative;
  height: 414px;
  overflow: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.seat-grid-wrap::-webkit-scrollbar { width: 4px; height: 4px; }
.seat-grid-wrap::-webkit-scrollbar-track { background: transparent; }
.seat-grid-wrap::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
}

/* Bottom fade — sticky inside scroll, spans full wrap width */
.sm-fade-bottom {
  position: sticky;
  bottom: 0;
  height: 36px;
  margin-top: -36px;
  background: linear-gradient(to top, #07071A, transparent);
  pointer-events: none;
  z-index: 25;
  align-self: stretch;
}

/* Right fade — hidden */
.sm-fade-right { display: none; }

/* ── Seat grid ── */
.seat-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 5px 5px 44px 5px;
  width: fit-content;
  margin: auto;
}

/* ── Seat row ── */
.seat-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.seat-row-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  width: 28px;
  min-width: 28px;
  text-align: center;
  padding: 0 6.5px;
  flex-shrink: 0;
  font-family: 'Noto Sans Thai', sans-serif;
  position: sticky;
  left: 0;
  z-index: 20;
}
.seat-row-cells {
  display: grid;
  gap: 3px;
}
.seat-row-label-right {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  width: 28px;
  min-width: 28px;
  text-align: center;
  padding: 0 6.5px;
  flex-shrink: 0;
  font-family: 'Noto Sans Thai', sans-serif;
  position: sticky;
  right: 0;
  z-index: 20;
}

/* ── Seat cell (circle) ── */
.seat-cell {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--seat-color, #888);
  color: #0a0a1a;
  font-size: 10px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
  opacity: 0.90;
}

/* ── Scroll hints ── */
.sm-scroll-hints {
  display: flex;
  justify-content: space-between;
  padding: 4px 16px;
  font-size: 9.9px;
  color: rgba(255,255,255,0.38);
  flex-shrink: 0;
}

/* ── Legend ── */
.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 8px 16px;
  flex-shrink: 0;
}
.seat-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.seat-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.seat-legend-price {
  font-size: 10px;
  color: rgba(255,255,255,0.75);
  font-family: 'Noto Sans Thai', sans-serif;
}

/* ── Action buttons ── */
.sm-buttons {
  display: flex;
  gap: 20px;
  padding: 7px 20px;
  flex-shrink: 0;
}
.sm-btn {
  flex: 1;
  height: 38px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Noto Sans Thai', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.sm-btn:hover { opacity: 0.82; }
.sm-btn-primary {
  background: #F4A140;
  color: #07071A;
}
.sm-btn-secondary {
  background: rgba(19,205,203,0.08);
  border: 1px solid rgba(19,205,203,0.70);
  color: #13CDCB;
}

/* ── Disclaimer ── */
.sm-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  text-align: center;
  padding: 10px 16px 14px;
  font-family: 'Noto Sans Thai', sans-serif;
  flex-shrink: 0;
}

/* ── Responsive: narrow screens ── */
@media (max-width: 480px) {
  .sm-buttons { gap: 10px; padding: 7px 12px; }
  .sm-btn { font-size: 12px; }
  .seat-grid { padding-left: 8px; }
}
