:root {
  --navy: #0d1b3e;
  --navy-mid: #152650;
  --red: #e63329;
  --gold: #f5a623;
  --white: #ffffff;
  --bg: #f4f5f7;
  --card: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html, body { height: 100%; overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); }

/* ── LAYOUT ── */
#app { display: flex; flex-direction: column; height: 100vh; height: 100dvh; }

#content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(70px + var(--safe-bottom));
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: calc(var(--safe-top) + 12px) 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  flex-shrink: 0;
  z-index: 100;
}
.topbar-logo { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.topbar-logo span { color: var(--red); }
.topbar-subtitle { font-size: 11px; opacity: 0.6; margin-top: 1px; }
.topbar-right { margin-left: auto; }
.topbar-search-btn {
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ── BOTTOM NAV ── */
#bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  display: flex;
  padding-bottom: var(--safe-bottom);
  z-index: 200;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px 10px;
  cursor: pointer;
  border: none;
  background: none;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  gap: 3px;
  transition: color 0.15s;
}
.nav-btn .icon { font-size: 20px; line-height: 1; }
.nav-btn.active { color: var(--white); }
.nav-btn.active .icon { filter: drop-shadow(0 0 4px rgba(230,51,41,0.6)); }

/* ── SCREENS ── */
.screen { display: none; }
.screen.active { display: block; }

/* ── HOME ── */
.home-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1a2f6a 100%);
  padding: 28px 20px 32px;
  color: white;
}
.home-hero h1 { font-size: 28px; font-weight: 900; line-height: 1.1; margin-bottom: 6px; }
.home-hero h1 span { color: var(--red); }
.home-hero p { font-size: 14px; opacity: 0.75; line-height: 1.5; }
.home-meta { display: flex; gap: 16px; margin-top: 16px; }
.home-meta-item { text-align: center; }
.home-meta-item .num { font-size: 22px; font-weight: 800; color: var(--red); }
.home-meta-item .lbl { font-size: 10px; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px; }

.home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
.home-card {
  background: var(--card);
  border-radius: 14px;
  padding: 16px 14px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: transform 0.1s, box-shadow 0.1s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.home-card:active { transform: scale(0.97); box-shadow: 0 0 2px rgba(0,0,0,0.05); }
.home-card .card-icon { font-size: 28px; margin-bottom: 8px; }
.home-card .card-title { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.home-card .card-sub { font-size: 11px; color: var(--muted); }
.home-card.full { grid-column: 1/-1; display: flex; align-items: center; gap: 14px; }
.home-card.full .card-icon { font-size: 32px; margin-bottom: 0; }
.home-card.full .card-body .card-title { font-size: 15px; }

.alert-banner {
  margin: 0 16px 4px;
  background: #fff3cd;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.alert-banner strong { color: #92600a; display: block; margin-bottom: 2px; }

/* ── GUIDE ── */
.chapter-list { padding: 12px; }
.chapter-card {
  background: var(--card);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  cursor: pointer;
}
.chapter-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 14px;
}
.chapter-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 36px;
}
.chapter-info .chapter-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 2px; }
.chapter-info .chapter-title { font-size: 15px; font-weight: 700; }
.chapter-info .chapter-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.chapter-arrow { margin-left: auto; color: var(--muted); font-size: 16px; }

/* Chapter detail */
.chapter-detail { display: none; padding: 16px; }
.chapter-detail.open { display: block; }
.back-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--navy);
  padding: 0 0 16px 0;
}

.chapter-nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(13,27,62,0.10);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: opacity 0.2s;
}
.chapter-nav-prev { left: 6px; }
.chapter-nav-next { right: 6px; }
.chapter-nav-arrow.disabled { opacity: 0.2; pointer-events: none; }

.section-title { font-size: 20px; font-weight: 800; margin: 20px 0 12px; color: var(--navy); }
.section-title.first { margin-top: 4px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.info-box {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px;
}
.info-box .ib-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 4px; }
.info-box .ib-value { font-size: 14px; font-weight: 700; }
.info-box .ib-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

.highlight-box {
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.highlight-box.danger { background: #fef2f2; border-left: 4px solid var(--red); }
.highlight-box.info { background: #eff6ff; border-left: 4px solid #3b82f6; }
.highlight-box.tip { background: #f0fdf4; border-left: 4px solid #22c55e; }
.highlight-box.dark { background: var(--navy); color: white; border-left: none; border-radius: 12px; }
.highlight-box strong { display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.highlight-box.danger strong { color: var(--red); }
.highlight-box.info strong { color: #2563eb; }
.highlight-box.tip strong { color: #16a34a; }
.highlight-box.dark strong { color: var(--gold); }

.bullet-list { list-style: none; margin: 10px 0 16px; }
.bullet-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.transport-card {
  background: var(--card);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.transport-badge {
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  min-width: 44px;
  text-align: center;
  letter-spacing: 0.5px;
}
.transport-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.transport-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.sight-card {
  background: var(--card);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.sight-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.sight-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.price-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  margin: 6px 4px 0 0;
}
.price-tag.free { background: #dcfce7; color: #166534; }
.price-tag.paid { background: #fee2e2; color: #991b1b; }
.price-tag.tip { background: #fef9c3; color: #854d0e; }

.budget-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 13px; }
.budget-table th { background: var(--navy); color: white; padding: 8px 10px; text-align: left; font-size: 11px; text-transform: uppercase; }
.budget-table td { padding: 9px 10px; border-bottom: 1px solid var(--border); }
.budget-table tr:last-child td { border-bottom: none; }
.budget-table tr:nth-child(even) td { background: var(--bg); }

.phrases-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 13px; }
.phrases-table th { background: var(--navy); color: white; padding: 8px 10px; text-align: left; }
.phrases-table td { padding: 9px 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
.phrases-table tr:nth-child(even) td { background: var(--bg); }

/* ── MAP ── */
#map-screen { position: relative; height: 100%; display: none; flex-direction: column; }
#map-screen.active { display: flex; }
#map { flex: 1; }
.map-filter-bar {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-shrink: 0;
}
.map-filter-bar::-webkit-scrollbar { display: none; }
.filter-pill {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.filter-pill.active { background: var(--navy); color: white; border-color: var(--navy); }

.leaflet-popup-content-wrapper { border-radius: 12px !important; padding: 0 !important; overflow: hidden; }
.leaflet-popup-content { margin: 0 !important; }
.map-popup { padding: 12px 14px; min-width: 180px; }
.map-popup h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.map-popup p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.map-popup .popup-tag { font-size: 11px; font-weight: 600; color: var(--red); margin-bottom: 6px; display: block; }
.map-popup a { display: block; margin-top: 10px; background: var(--navy); color: white; text-align: center; padding: 8px; border-radius: 8px; text-decoration: none; font-size: 12px; font-weight: 600; }

/* ── WALKS ── */
.walks-list { padding: 12px; }
.walk-card {
  background: var(--card);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.walk-header {
  background: var(--navy);
  color: white;
  padding: 16px;
}
.walk-header h3 { font-size: 17px; font-weight: 800; }
.walk-meta { display: flex; gap: 12px; margin-top: 8px; }
.walk-meta span { font-size: 11px; opacity: 0.75; }
.walk-body { padding: 14px 16px; }
.walk-stops { list-style: none; margin: 10px 0; }
.walk-stop {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.walk-stop:last-child { border-bottom: none; }
.stop-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stop-content h5 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.stop-content p { font-size: 12px; color: var(--muted); line-height: 1.4; }

.walk-map-btn {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.walk-map-btn:active { opacity: 0.85; }

/* ── PACKLISTE ── */
.pack-screen { padding: 12px; }
.pack-header {
  background: var(--navy);
  color: white;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}
.pack-header h2 { font-size: 20px; font-weight: 800; }
.pack-header p { font-size: 13px; opacity: 0.7; margin-top: 4px; }
.pack-progress { margin-top: 12px; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width 0.3s; }
.progress-label { font-size: 11px; opacity: 0.7; }

.pack-section { margin-bottom: 16px; }
.pack-section-title {
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  padding: 8px 0 8px 12px;
  border-left: 3px solid var(--red);
  margin-bottom: 8px;
}
.pack-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 6px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: opacity 0.15s;
}
.pack-item.checked { opacity: 0.5; }
.pack-item.checked .pack-label { text-decoration: line-through; color: var(--muted); }
.pack-checkbox {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  background: white;
}
.pack-item.checked .pack-checkbox { background: #22c55e; border-color: #22c55e; color: white; }
.pack-label { font-size: 14px; }
.pack-warning {
  background: #fff3cd;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.pack-reset-btn {
  width: 100%; background: var(--bg); border: 2px solid var(--border);
  border-radius: 10px; padding: 12px; font-size: 14px; color: var(--muted);
  cursor: pointer; margin-top: 8px;
}

/* ── TICKETS & PÄSSE ── */
.tickets-wrap { padding: 12px 14px 24px; }

.t-section {
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.t-section-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.t-section-icon {
  font-size: 28px; width: 44px; height: 44px;
  background: var(--bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-section-title { font-size: 15px; font-weight: 800; color: var(--text); }
.t-section-sub   { font-size: 11px; color: var(--muted); margin-top: 2px; }
.t-hint          { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.t-legend        { font-size: 10px; color: var(--muted); margin-top: 8px; }

/* Attraction checkboxes */
.attr-list { display: flex; flex-direction: column; gap: 2px; }
.attr-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 8px; cursor: pointer;
  transition: background 0.1s;
}
.attr-row:active { background: var(--bg); }
.attr-row input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--navy);
  flex-shrink: 0; cursor: pointer;
}
.attr-icon  { font-size: 16px; flex-shrink: 0; }
.attr-name  { flex: 1; font-size: 13px; color: var(--text); }
.attr-badges { display: flex; gap: 3px; flex-shrink: 0; }
.attr-price { font-size: 12px; font-weight: 700; color: var(--red); flex-shrink: 0; min-width: 30px; text-align: right; }

.lp-tag, .ep-tag {
  font-size: 9px; font-weight: 800; padding: 1px 4px;
  border-radius: 4px; display: inline-block;
}
.lp-tag { background: var(--navy); color: white; }
.ep-tag { background: var(--red); color: white; }

/* Day selector */
.days-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.day-btn {
  padding: 6px 12px; border-radius: 20px; border: 2px solid var(--border);
  background: white; font-size: 12px; font-weight: 700; cursor: pointer;
  color: var(--muted); transition: all 0.15s;
}
.day-btn.active {
  background: var(--navy); border-color: var(--navy); color: white;
}

/* Calculator result */
.calc-box {
  background: var(--bg); border-radius: 12px; padding: 10px; margin-top: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.cb-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  background: white; border-radius: 10px; padding: 10px 12px;
  border: 2px solid transparent;
}
.cb-row.cb-single { font-size: 13px; color: var(--muted); }
.cb-row.cb-single strong { font-size: 14px; color: var(--text); }
.cb-row.cb-winner { border-color: #22c55e; background: #f0fdf4; }
.cb-label { font-size: 13px; font-weight: 700; color: var(--text); }
.cb-note  { font-size: 10px; color: var(--muted); margin-top: 2px; }
.cb-right { text-align: right; }
.cb-right strong { font-size: 15px; display: block; }
.cb-save  { font-size: 11px; color: #16a34a; font-weight: 700; }
.cb-more  { font-size: 11px; color: #dc2626; }
.cb-cta {
  display: block; text-align: center; background: var(--navy); color: white;
  border-radius: 10px; padding: 12px; font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 4px;
}

/* ── SUCHE ── */
.search-screen { padding: 16px; }
.search-bar input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: var(--card);
  color: var(--text);
  font-family: inherit;
}
.search-bar input:focus { outline: 2px solid var(--navy); }
.search-section-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--muted); font-weight: 700; margin: 18px 0 8px;
}
.search-result-item {
  display: block; width: 100%; text-align: left;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 8px; cursor: pointer; font-family: inherit;
}
.search-result-item .sr-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; color: var(--navy); }
.search-result-item .sr-snippet { font-size: 12px; color: var(--muted); line-height: 1.4; }
.search-empty { font-size: 13px; color: var(--muted); text-align: center; padding: 30px 10px; }
.search-blog-btn {
  display: block; width: 100%; text-align: center; background: var(--navy); color: white;
  border: none; border-radius: 10px; padding: 12px; font-size: 13px; font-weight: 700;
  cursor: pointer; margin-top: 8px; text-decoration: none; font-family: inherit;
}
.search-offline-note {
  font-size: 12px; color: var(--red); text-align: center;
  padding: 10px; background: #fef2f2; border-radius: 10px; margin-top: 8px;
}

/* ── TICKET-WIZARD (Kapitel 06) ── */
.wizard-step { margin-bottom: 14px; }
.wizard-question { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.wizard-option {
  display: block; width: 100%; text-align: left; font-family: inherit;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 8px; cursor: pointer; font-size: 13px; line-height: 1.4;
}
.wizard-option .wo-title { font-weight: 700; margin-bottom: 2px; }
.wizard-option .wo-sub { font-size: 11px; color: var(--muted); }
.wizard-option.selected { border-color: var(--red); background: #fef2f2; }
.wizard-result {
  font-size: 13px; line-height: 1.6; background: var(--bg);
  border-radius: 10px; padding: 12px 14px; margin: 0 0 14px;
}
.wizard-result a { color: var(--navy); font-weight: 700; }
.wizard-controls { display: flex; gap: 8px; margin: 4px 0 16px; }
.wizard-btn {
  flex: 1; padding: 10px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--card); font-size: 13px; font-weight: 700; color: var(--navy);
  cursor: pointer; font-family: inherit;
}

/* ── MAßEINHEITEN & WÄHRUNG ── */
.einheiten-screen { padding: 16px; }
.einheiten-header { margin-bottom: 16px; }
.einheiten-header h2 { font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.einheiten-header p { font-size: 13px; color: var(--muted); }
.einheiten-section { margin-bottom: 20px; }

.currency-rate-info {
  font-size: 12px; color: var(--muted); margin-bottom: 10px; font-style: italic;
}
.currency-inputs {
  display: flex; align-items: center; gap: 10px;
}
.currency-field { flex: 1; }
.currency-field label {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--muted); margin-bottom: 4px; font-weight: 700;
}
.currency-field input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); font-size: 18px; font-weight: 700;
  background: var(--card); color: var(--text); font-family: inherit; text-align: center;
}
.currency-field input:focus { outline: 2px solid var(--navy); }
.currency-arrow {
  font-size: 20px; color: var(--navy); font-weight: 700; padding-top: 18px;
}

/* Affiliate banners */
.t-banner {
  display: flex; align-items: center; gap: 12px;
  color: white; border-radius: 12px; padding: 14px;
  text-decoration: none; margin-top: 10px;
}
.t-gyg { background: #ff6600; }
.t-lp  { background: var(--navy); }

/* GYG grid */
.gyg-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 10px;
}
.gyg-tile {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--bg); border-radius: 10px; padding: 10px 6px;
  text-decoration: none; color: var(--text); font-size: 20px;
  text-align: center; transition: background 0.1s;
}
.gyg-tile span { font-size: 10px; color: var(--muted); line-height: 1.2; }
.gyg-tile:active { background: var(--border); }

/* Pass price grid */
.pass-price-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin: 10px 0;
}
.pp-cell {
  background: var(--bg); border-radius: 8px; padding: 8px 4px; text-align: center;
}
.pp-days  { font-size: 10px; color: var(--muted); }
.pp-price { font-size: 14px; font-weight: 800; color: var(--navy); }

.t-disclaimer {
  font-size: 10px; color: var(--muted); text-align: center; padding: 4px 0 8px;
}

/* ── 6-item nav: slightly smaller text/icon ── */
#bottomnav .nav-btn { font-size: 9px; padding: 7px 2px 8px; }
#bottomnav .nav-btn .icon { font-size: 18px; }
