/* ============================================================
   LAUGHSTACK Comedy Club — Main Stylesheet
   Design: Bold red/black, mobile-first
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #E00D0D;
  --red-dark:   #B80000;
  --red-hover:  #FF2020;
  --black:      #000000;
  --bg:         #080808;
  --bg-2:       #111111;
  --bg-card:    #161616;
  --bg-card-2:  #1E1E1E;
  --border:     #2A2A2A;
  --border-2:   #333333;
  --white:      #F5F5F5;
  --muted:      #888888;
  --muted-2:    #555555;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:     10px;
  --radius-sm:  6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.6);
  --shadow-red: 0 4px 24px rgba(224,13,13,0.3);
  --max-w:      1200px;
  --trans:      0.18s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.text-red   { color: var(--red); }
.text-muted { color: var(--muted); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--red-hover);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--red);
  color: #fff;
}
.btn-ghost {
  background: var(--bg-card-2);
  color: var(--white);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
.nav-cities {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-city {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans), background var(--trans);
}
.nav-city:hover, .nav-city.active {
  color: var(--white);
  background: var(--bg-card);
}
.nav-city.active { color: var(--red); }
.nav-cta { flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-city {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(224,13,13,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(224,13,13,0.06) 0%, transparent 60%),
    var(--black);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,13,13,0.15);
  border: 1px solid rgba(224,13,13,0.3);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title .accent { color: var(--red); }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-city-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--muted);
  transition: all var(--trans);
}
.hero-city-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* City hero (city pages) */
.city-hero {
  background: var(--black);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(224,13,13,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.city-hero-content { position: relative; }
.city-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.city-breadcrumb a:hover { color: var(--red); }
.city-breadcrumb-sep { color: var(--muted-2); }
.city-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 12px;
}
.city-hero-title .city-name { color: var(--red); }
.city-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 32px;
}
.city-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border-2);
  background: var(--bg-card);
  color: var(--muted);
}
.badge-red {
  border-color: rgba(224,13,13,0.4);
  background: rgba(224,13,13,0.1);
  color: #FF6666;
}

/* ── Section ───────────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-sm { padding: 48px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
}
.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
  font-weight: 500;
}

/* ── City Grid (homepage) ──────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
  color: inherit;
}
.city-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.city-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.city-card-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.city-card-province {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  background: rgba(224,13,13,0.12);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.city-card-venue {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.city-card-shows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.city-card-show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-card-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.city-card-show-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.city-card-show-time {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.city-card-arrow {
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 700;
  margin-top: 4px;
  align-self: flex-end;
}

/* ── Show Calendar (city pages) ────────────────────────────── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.show-card:hover { border-color: var(--border-2); }
.show-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.show-date-block {
  background: var(--red);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
  min-width: 64px;
  flex-shrink: 0;
}
.show-date-day {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.show-date-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
}
.show-date-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.show-info { flex: 1; }
.show-type {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.show-time {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}
.show-doors {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.show-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.show-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.show-price-item {
  font-size: 0.8rem;
  color: var(--muted);
}
.show-price-item strong {
  color: var(--white);
  font-weight: 700;
}

/* ── Venue Card ────────────────────────────────────────────── */
.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.venue-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.venue-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.venue-address {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.venue-transit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--bg-card-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.venue-transit-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.venue-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-card-2);
  border: 1px solid var(--border-2);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 20px;
  transition: all var(--trans);
}
.venue-map-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.venue-hours { display: flex; flex-direction: column; gap: 12px; }
.venue-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.venue-hours-item:last-child { border-bottom: none; }
.venue-hours-day { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.venue-hours-time { font-size: 0.875rem; color: var(--muted); }
.venue-hours-highlight .venue-hours-time { color: var(--red); font-weight: 700; }

/* ── Ticket Types (homepage promo) ────────────────────────── */
.tickets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ticket-card-vip {
  border-color: rgba(224,13,13,0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(224,13,13,0.05) 100%);
}
.ticket-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}
.ticket-type-tag-ga {
  background: var(--bg-card-2);
  border: 1px solid var(--border-2);
  color: var(--muted);
}
.ticket-type-tag-vip {
  background: rgba(224,13,13,0.15);
  border: 1px solid rgba(224,13,13,0.4);
  color: var(--red);
}
.ticket-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.ticket-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}
.ticket-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
}
.ticket-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}
.ticket-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}
.ticket-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  background: var(--bg-card-2);
  border: 1px solid var(--border-2);
}
.ticket-card-vip .ticket-feature-icon {
  background: rgba(224,13,13,0.15);
  border-color: rgba(224,13,13,0.3);
  color: var(--red);
}

/* ── Upcoming Shows Bar (homepage) ─────────────────────────── */
.upcoming-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
}
.upcoming-bar-inner {
  display: flex;
  gap: 0;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}
.upcoming-bar-inner:hover { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.upcoming-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.upcoming-bar-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── FAQ / Info Section ────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.info-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.info-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.info-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--trans);
}
.footer-link:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted-2);
}

/* ── Booking Modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  cursor: pointer;
}
.modal-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.modal-body { padding: 28px; }
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
}

/* Step indicator */
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.step-item:last-child { flex: 0; }
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid var(--border-2);
  color: var(--muted);
  transition: all var(--trans);
}
.step-item.active .step-circle {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.step-item.done .step-circle {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.step-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--trans);
  white-space: nowrap;
}
.step-item.active .step-label { color: var(--white); }
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border-2);
  margin: 0 8px;
}
.step-item.done + .step-item .step-line,
.step-line.done { background: var(--red); }

/* Step 1 – Show Summary */
.show-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.show-summary-date {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}
.show-summary-details {
  font-size: 0.875rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.show-summary-details span { display: flex; align-items: center; gap: 6px; }

/* Step 2 – Ticket selector */
.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.ticket-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  background: var(--bg-card);
}
.ticket-option:hover { border-color: var(--border-2); }
.ticket-option.selected {
  border-color: var(--red);
  background: rgba(224,13,13,0.06);
}
.ticket-option input[type="radio"] { display: none; }
.ticket-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}
.ticket-option.selected .ticket-option-radio {
  border-color: var(--red);
  background: var(--red);
}
.ticket-option.selected .ticket-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.ticket-option-info { flex: 1; }
.ticket-option-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.ticket-option-desc {
  font-size: 0.78rem;
  color: var(--muted);
}
.ticket-option-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
}
.qty-btn:hover { color: var(--white); background: var(--bg-card-2); }
.qty-display {
  min-width: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 20px;
}
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.order-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.order-row.total .order-value { color: var(--red); font-size: 1.1rem; }

/* Step 3 – Payment form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  width: 100%;
}
.form-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,13,13,0.12);
}
.form-input::placeholder { color: var(--muted-2); }
.stripe-element-wrap {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.stripe-element-wrap.focused {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,13,13,0.12);
}
.secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-top: 16px;
}
.payment-error {
  background: rgba(224,13,13,0.1);
  border: 1px solid rgba(224,13,13,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #FF6666;
  margin-top: 12px;
  display: none;
}
.payment-error.visible { display: block; }

/* Success screen */
.success-screen {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,200,100,0.12);
  border: 2px solid rgba(0,200,100,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 24px;
}
.success-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.success-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.booking-ref {
  display: inline-block;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 24px;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-cities, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .venue-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tickets-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero-meta { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cities-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .modal { border-radius: 12px 12px 0 0; max-height: 96vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .step-label { display: none; }
}
