/* ============================================
   Jet Ingressos — Static Site Design System
   Dark-only theme
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties (Dark Only) ── */
:root {
  --bg: #0B1220;
  --fg: #EAF0FF;
  --card: #101A2E;
  --card-fg: #EAF0FF;
  --muted: #0F1A2A;
  --muted-fg: #A7B3CC;
  --primary: #F66100;
  --primary-fg: #ffffff;
  --accent: #1A7FD4;
  --accent-fg: #ffffff;
  --border: #1E3050;
  --input: #1E3050;
  --ring: #1A7FD4;
  --destructive: #e53e3e;
  --navy: #EAF0FF;
  --light-gray: #0F1A2A;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.5);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Layout ── */
.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.page-wrap > main { flex: 1; }
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--fg); }
.text-muted { color: var(--muted-fg); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius); font-weight: 600;
  font-size: 0.875rem; border: 1px solid transparent; transition: all .2s;
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: .9; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--fg); }
.btn-outline:hover { background: var(--muted); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: var(--muted); }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-icon { padding: 0.5rem; width: 2.25rem; height: 2.25rem; }

/* ── Cards ── */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; padding: 0.125rem 0.625rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 600; white-space: nowrap;
}
.badge-primary { background: var(--primary); color: #fff; }
.badge-accent { background: var(--accent); color: #fff; }
.badge-outline { border: 1px solid var(--border); color: var(--fg); background: transparent; }
.badge-destructive { background: var(--destructive); color: #fff; }
.badge-amber { background: #f59e0b; color: #fff; }
.badge-emerald { background: #059669; color: #fff; }
.badge-pink { background: #ec4899; color: #fff; }
.badge-shows { background: var(--primary); color: #fff; }
.badge-festas { background: var(--accent); color: #fff; }
.badge-teatro { background: var(--fg); color: var(--bg); }
.badge-esportes { background: #059669; color: #fff; }
.badge-cursos { background: #f59e0b; color: var(--bg); }
.badge-infantil { background: #ec4899; color: #fff; }

/* ── Input ── */
.input {
  width: 100%; padding: 0.625rem 0.75rem; border: 1px solid var(--input);
  border-radius: var(--radius); background: var(--card); color: var(--fg);
  font-size: 0.875rem; transition: border-color .2s, box-shadow .2s;
}
.input:focus { outline: none; border-color: var(--ring); box-shadow: 0 0 0 2px color-mix(in srgb, var(--ring) 20%, transparent); }
.input-lg { padding: 0.875rem 1rem; font-size: 1rem; }
.input::placeholder { color: var(--muted-fg); }

select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A7B3CC' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }

textarea.input { resize: vertical; min-height: 120px; }

/* ── Checkbox ── */
.checkbox-wrap { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.checkbox-wrap input[type="checkbox"] { width: 1rem; height: 1rem; accent-color: var(--primary); }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50; width: 100%;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; gap: 1rem;
}
.header-logo img { height: 2rem; }
@media (min-width: 768px) { .header-logo img { height: 2.5rem; } }
.header-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .header-nav { display: flex; } }
.header-actions { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .header-actions { display: flex; } }
.header-mobile { display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .header-mobile { display: none; } }
.header-search {
  display: none; flex: 1; max-width: 36rem; margin: 0 1rem; position: relative;
}
@media (min-width: 768px) { .header-search { display: flex; } }
.header-search .input { padding-left: 2.5rem; }
.header-search svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--muted-fg); }

/* City Selector Dropdown */
.city-selector { position: relative; }
.city-selector-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.75rem; border-radius: var(--radius);
  background: transparent; border: none; color: var(--fg);
  font-size: 0.875rem; font-weight: 500; cursor: pointer;
  transition: background .2s;
}
.city-selector-btn:hover { background: var(--muted); }
.city-selector-btn svg { flex-shrink: 0; }
.city-selector-btn .city-name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.city-dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 12rem; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); z-index: 100;
  padding: 0.25rem; overflow: hidden;
}
.city-dropdown.open { display: block; }
.city-dropdown-item {
  display: block; width: 100%; padding: 0.5rem 0.75rem; border: none;
  background: transparent; color: var(--fg); font-size: 0.875rem;
  text-align: left; cursor: pointer; border-radius: calc(var(--radius) - 2px);
  transition: background .15s;
}
.city-dropdown-item:hover { background: var(--muted); }
.city-dropdown-item.active { background: var(--muted); }

/* Auth-guarded footer links */
.footer-auth-link { cursor: pointer; }

/* ── Footer ── */
.site-footer { background: var(--card); border-top: 1px solid var(--border); color: var(--fg); }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { font-size: 0.875rem; color: var(--muted-fg); transition: color .2s; }
.footer-grid a:hover { color: var(--fg); }
.footer-brand p { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom a { font-size: 0.875rem; color: var(--muted-fg); transition: color .2s; }
.footer-bottom a:hover { color: var(--fg); }
.footer-bottom .copyright { font-size: 0.875rem; color: var(--muted-fg); opacity: .7; }

/* ── Hero Section ── */
.hero {
  position: relative; padding: 4rem 0; overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 6rem 0; } }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(2,31,63,.7); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 48rem; margin: 0 auto; }
.hero h1 { color: #fff; font-size: 1.875rem; font-weight: 800; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
.hero p { color: rgba(255,255,255,.9); font-size: 1.125rem; margin-bottom: 2rem; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.hero-search { position: relative; max-width: 36rem; margin: 0 auto 2rem; }
.hero-search .input { padding-left: 3rem; padding-right: 6rem; height: 3.5rem; font-size: 1rem; border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.95); color: #021F3F; }
.hero-search .input::placeholder { color: #7e7e7e; }
.hero-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #7e7e7e; }
.hero-search .btn { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); }

/* ── Category Chips ── */
.chip-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.875rem; border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 500; border: 1px solid var(--border);
  background: var(--card); color: var(--fg); cursor: pointer; transition: all .2s;
}
.chip:hover, .chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.chip-hero { background: rgba(255,255,255,.9); color: #021F3F; border-color: rgba(255,255,255,.2); }
.chip-hero:hover, .chip-hero.active { background: #fff; }

/* ── Trust Bar ── */
.trust-bar {
  background: rgba(255,255,255,.95); backdrop-filter: blur(4px); border-radius: 1rem;
  padding: 1rem 1.5rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.2);
}
.trust-bar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .trust-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 0.5rem; color: #021F3F; }
.trust-item svg { color: var(--primary); flex-shrink: 0; }
.trust-item span { font-size: 0.875rem; font-weight: 500; }

/* ── Section ── */
.section { padding: 3rem 0; }
@media (min-width: 768px) { .section { padding: 4rem 0; } }
.section-header { margin-bottom: 2rem; }
.section-header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .section-header h2 { font-size: 1.875rem; } }
.section-muted { background: color-mix(in srgb, var(--muted) 30%, var(--bg)); }
.section-bg-muted { background: var(--muted); }

/* ── Event Card ── */
.event-card {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow-md); transition: all .3s; border: 1px solid var(--border);
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-card-img {
  position: relative; height: 10rem; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.event-card-img svg { color: rgba(255,255,255,.3); width: 4rem; height: 4rem; }
.event-card-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.event-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event-card-meta { display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
.event-card-meta span { display: flex; align-items: center; gap: 0.375rem; }
.event-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.event-card-price { font-size: 0.875rem; }
.event-card-price .label { color: var(--muted-fg); }
.event-card-price .value { font-weight: 700; color: var(--fg); }

/* Featured card */
.event-card.featured { grid-column: span 2; }
.event-card.featured .event-card-img { height: 16rem; }
@media (max-width: 639px) { .event-card.featured { grid-column: span 1; } .event-card.featured .event-card-img { height: 12rem; } }

/* Gradient backgrounds for event cards */
.grad-orange-blue { background: linear-gradient(135deg, rgba(246,97,0,.8), rgba(5,92,162,.8)); }
.grad-blue-navy { background: linear-gradient(135deg, #055CA2, #021F3F); }
.grad-navy-orange { background: linear-gradient(135deg, #021F3F, rgba(246,97,0,.7)); }
.grad-emerald-blue { background: linear-gradient(135deg, #059669, #055CA2); }
.grad-pink-orange { background: linear-gradient(135deg, #ec4899, #F66100); }
.grad-amber-navy { background: linear-gradient(135deg, #f59e0b, #021F3F); }
.grad-orange-accent { background: linear-gradient(135deg, #F66100, #055CA2); }
.grad-accent-orange { background: linear-gradient(135deg, rgba(5,92,162,.8), #F66100); }

/* ── Events Grid ── */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── How It Works ── */
.hiw-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.hiw-card { background: var(--card); border-radius: 1rem; padding: 1.5rem 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.hiw-card h3 { font-size: 1.125rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.hiw-card h3 .emoji { width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; }
.hiw-step { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.hiw-step-icon { flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; }
.hiw-step h4 { font-weight: 600; font-size: 0.9375rem; }
.hiw-step p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Producers Section ── */
.benefits-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-card {
  padding: 1.5rem; border-radius: 1rem; background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all .3s;
}
.benefit-card:hover { box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 20%, var(--border)); }
.benefit-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: all .3s;
}
.benefit-card:hover .benefit-icon { background: var(--primary); color: #fff; }
.benefit-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Trust Section ── */
.trust-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; background: var(--card); border-radius: 1rem; border: 1px solid var(--border); }
.trust-card-icon { width: 4rem; height: 4rem; border-radius: 50%; background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.trust-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.trust-card p { font-size: 0.875rem; color: var(--muted-fg); }

/* ── Newsletter ── */
.newsletter-box {
  background: linear-gradient(135deg, var(--card), color-mix(in srgb, var(--card) 90%, var(--primary)));
  border-radius: 1.5rem; padding: 2rem; color: var(--fg); text-align: center;
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .newsletter-box { padding: 3rem; } }
.newsletter-box h2 { color: var(--fg); }
.newsletter-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: color-mix(in srgb, var(--primary) 20%, transparent); color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 36rem; margin: 0 auto; }
@media (min-width: 640px) { .newsletter-form .form-row { display: flex; gap: 0.75rem; } }
.newsletter-form .input { background: var(--muted); border-color: var(--border); color: var(--fg); }
.newsletter-form .input::placeholder { color: var(--muted-fg); }

/* ── Mobile Menu Drawer ── */
.mobile-drawer { position: fixed; inset: 0; z-index: 100; display: none; }
.mobile-drawer.open { display: block; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 300px; max-width: 85vw;
  background: var(--bg); padding: 2rem 1.5rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 2rem; }
.drawer-nav a {
  display: block; padding: 0.5rem 0.75rem; border-radius: 0.5rem;
  font-weight: 500; transition: background .2s;
}
.drawer-nav a:hover { background: var(--muted); }
.drawer-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

/* ── Tabs ── */
.tabs-list {
  display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem;
}
.tab-btn {
  padding: 0.75rem 1.25rem; font-size: 0.875rem; font-weight: 600;
  background: none; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -2px; color: var(--muted-fg); transition: all .2s; cursor: pointer;
}
.tab-btn:hover { color: var(--fg); }
.tab-btn.active { color: var(--fg); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Accordion ── */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; font-weight: 600; font-size: 0.9375rem; background: none; border: none;
  color: var(--fg); text-align: left; cursor: pointer;
}
.accordion-trigger svg { transition: transform .2s; flex-shrink: 0; }
.accordion-trigger.open svg { transform: rotate(180deg); }
.accordion-body { padding: 0 0 1rem; font-size: 0.875rem; color: var(--muted-fg); display: none; }
.accordion-body.open { display: block; }

/* ── Form Sections ── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; color: var(--fg); }

/* ── Stepper ── */
.stepper { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; overflow-x: auto; }
.step-item {
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500;
  color: var(--muted-fg); white-space: nowrap;
}
.step-item.active { color: var(--primary); font-weight: 600; }
.step-item.completed { color: var(--accent); }
.step-circle {
  width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; border: 2px solid var(--border); color: var(--muted-fg);
}
.step-item.active .step-circle { border-color: var(--primary); color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); }
.step-item.completed .step-circle { border-color: var(--accent); color: #fff; background: var(--accent); }
.step-line { flex: 1; height: 2px; background: var(--border); min-width: 1rem; }

/* ── Dashboard Shell ── */
.dash-shell { min-height: 100vh; background: color-mix(in srgb, var(--muted) 30%, var(--bg)); }
.dash-sidebar {
  display: none; position: fixed; left: 0; top: 0; bottom: 0; width: 15rem;
  background: var(--card); border-right: 1px solid var(--border); z-index: 40; padding: 1.5rem 1rem;
}
@media (min-width: 768px) { .dash-sidebar { display: flex; flex-direction: column; } }
.dash-sidebar-nav { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1.5rem; }
.dash-sidebar-nav a {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0.75rem;
  border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-fg); transition: all .2s;
}
.dash-sidebar-nav a:hover { background: var(--muted); color: var(--fg); }
.dash-sidebar-nav a.active { background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); font-weight: 600; }
.dash-main { padding: 1.5rem 1rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .dash-main { margin-left: 15rem; padding: 1.5rem 2rem; padding-bottom: 2rem; } }
.dash-bottom-nav {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0; background: var(--card);
  border-top: 1px solid var(--border); z-index: 40; justify-content: space-around; padding: 0.5rem 0;
}
@media (min-width: 768px) { .dash-bottom-nav { display: none; } }
.dash-bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 0.125rem;
  font-size: 0.625rem; font-weight: 500; color: var(--muted-fg); padding: 0.375rem 0.75rem; transition: color .2s;
}
.dash-bottom-nav a.active { color: var(--primary); }

/* ── Metric Card ── */
.metric-card { padding: 1.25rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.metric-card .label { font-size: 0.8125rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.metric-card .value { font-size: 1.5rem; font-weight: 800; color: var(--fg); }
.metrics-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Utility ── */
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.mt-auto { margin-top: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hidden { display: none; }
.block { display: block; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 767px) { .md\:hidden { display: none; } .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .md\:flex { display: flex; } .md\:grid-2 { grid-template-columns: repeat(2, 1fr); } .md\:block { display: block; } }
@media (min-width: 1024px) { .lg\:flex { display: flex; } .lg\:grid-3 { grid-template-columns: repeat(3, 1fr); } .lg\:hidden { display: none; } .lg\:block { display: block; } }

/* ── Dark CTA sections ── */
.cta-dark { background: #021F3F; color: #fff; }
.cta-dark h2 { color: #fff; }
.cta-dark p { color: rgba(255,255,255,.8); }
.cta-dark .btn-outline { background: #fff; color: #055CA2; border-color: #fff; }
.cta-dark .btn-outline:hover { background: #055CA2; color: #fff; border-color: #055CA2; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); padding: 0.75rem 0; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .current { color: var(--fg); font-weight: 500; }

/* ── Ticket tier card ── */
.ticket-tier {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); flex-wrap: wrap;
}
.ticket-tier-info h4 { font-weight: 600; }
.ticket-tier-info p { font-size: 0.875rem; color: var(--muted-fg); }
.ticket-tier-price { font-size: 1.25rem; font-weight: 700; color: var(--fg); white-space: nowrap; }
.qty-control { display: flex; align-items: center; gap: 0.75rem; }
.qty-btn {
  width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid var(--border);
  background: var(--card); color: var(--fg); display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.qty-btn:hover { background: var(--muted); }
.qty-value { font-size: 1rem; font-weight: 700; min-width: 1.5rem; text-align: center; }

/* ── Order Summary ── */
.order-summary { padding: 1.5rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); position: sticky; top: 6rem; }
.order-summary h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.order-line { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; }
.order-line .label { color: var(--muted-fg); }
.order-total { display: flex; justify-content: space-between; font-size: 1.125rem; font-weight: 700; padding-top: 0.75rem; border-top: 1px solid var(--border); margin-top: 0.75rem; }

/* ── Table ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th { text-align: left; padding: 0.75rem; font-weight: 600; color: var(--muted-fg); border-bottom: 2px solid var(--border); font-size: 0.8125rem; }
.data-table td { padding: 0.75rem; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: color-mix(in srgb, var(--muted) 50%, var(--bg)); }

/* ── Alert / Notice ── */
.alert {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem;
  border-radius: var(--radius); border: 1px solid; font-size: 0.875rem;
}
.alert-info { background: color-mix(in srgb, var(--accent) 10%, var(--bg)); border-color: color-mix(in srgb, var(--accent) 30%, var(--border)); color: var(--accent); }
.alert-warning { background: color-mix(in srgb, #f59e0b 10%, var(--bg)); border-color: color-mix(in srgb, #f59e0b 30%, var(--border)); color: #fbbf24; }

/* ── Responsive hide/show ── */
@media (max-width: 639px) {
  .sm\:hidden { display: none !important; }
}
@media (max-width: 767px) {
  .md\:hidden-below { display: none !important; }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .no-print { display: none !important; }
  body { background: #fff; color: #000; }
}
