/* ── EVENT DETAIL PAGE ──────────────────────────── */
.ev-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 300;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, backdrop-filter .3s;
}
.ev-header.scrolled {
  background: rgba(249,244,238,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.ev-back-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(26,26,46,0.45); backdrop-filter: blur(8px);
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background .2s; text-decoration: none;
}
.ev-header.scrolled .ev-back-btn { background: var(--surface2); color: var(--text); }
.ev-hdr-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(26,26,46,0.45); backdrop-filter: blur(8px);
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s;
}
.ev-header.scrolled .ev-hdr-icon { background: var(--surface2); color: var(--text); }
.ev-hero { position: relative; height: 320px;     
    max-width: 1200px;
    margin: 78px auto 0;}
.ev-hero img { width: 100%; height: 100%; object-fit: cover; }
.ev-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 55%);
}
.ev-hero-badge { position: absolute; bottom: 20px; left: 16px; display: flex; gap: 8px; align-items: center; }
.ev-type-pill {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
  color: #fff; background: var(--teal);
}
.ev-body { padding: 20px 16px calc(90px + var(--safe-b)); 
            max-width: 1200px;
            margin: 0 auto;}
.ev-title-row { margin-bottom: 16px; }
.ev-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--indigo); line-height: 1.15; margin-bottom: 6px;
}
.ev-tagline { font-family: 'Caveat', cursive; font-size: 1rem; color: var(--saffron); }
.ev-meta-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.ev-meta-chip {
  display: flex; align-items: center; gap: 5px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 10px;
  font-size: 0.73rem; color: var(--muted); font-weight: 500;
}
.ev-section-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.ev-about { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.ev-artists-row {
  display: flex; gap: 12px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px; margin-bottom: 24px;
}
.ev-artist-chip { flex-shrink: 0; text-align: center; width: 72px; }
.ev-artist-chip img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border);
  margin-bottom: 5px; display: block; margin-left: auto; margin-right: auto;
}
.ev-artist-name { font-size: 0.65rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.ev-artist-genre { font-size: 0.6rem; color: var(--muted); }
.ev-map-card {
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 24px; border: 1px solid var(--border);
}
.ev-map-visual {
  height: 130px; position: relative;
  background: linear-gradient(135deg, #e8f4f3 0%, #d4ede8 100%);
  display: flex; align-items: center; justify-content: center;
}
.ev-map-pin { font-size: 2.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.ev-map-grid {
  position: absolute; inset: 0; opacity: 0.18;
  background-image: linear-gradient(var(--teal) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ev-map-info {
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.ev-map-name { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.ev-map-addr { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.ev-map-link { font-size: 0.72rem; font-weight: 700; color: var(--teal); text-decoration: none; }
.ev-rules-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.ev-rule { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.ev-rule-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; margin-top: 5px; }
.ev-sticky-footer {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + var(--safe-b));
  
  z-index: 200; box-shadow: 0 -4px 24px rgba(0,0,0,0.09);
}
.ev-footer-inner {
  display: flex; align-items: center; gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.ev-footer-left { flex: 1; min-width: 0; }
.ev-footer-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--indigo); line-height: 1.1;
}
.ev-footer-per { font-size: 0.66rem; color: var(--muted); font-weight: 500; margin-top: 2px; }
.ev-interested-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0 14px; height: 40px;
  font-size: 0.8rem; font-weight: 700; color: var(--muted);
  cursor: pointer; transition: all .2s; flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.ev-interested-btn.active {
  border-color: var(--rose); color: var(--rose);
  background: rgba(232,83,106,0.06);
}
.ev-book-cta {
  background: var(--saffron); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 0 24px; height: 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 800;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s, filter .15s; flex-shrink: 0;
}
.ev-book-cta:active { transform: scale(0.97); }
.ev-book-cta:hover { filter: brightness(1.06); }
.ev-book-cta:disabled { opacity: 0.6; cursor: default; }

/* ── ZONE SECTION ───────────────────────────────────── */
.zone-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 14px; margin-bottom: 10px;
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.zone-card.selected {
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(244,130,42,0.1);
}
.zone-card-top {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.zone-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.zone-card.selected .zone-radio {
  border-color: var(--saffron); background: var(--saffron);
}
.zone-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; opacity: 0; transition: opacity .2s;
}
.zone-card.selected .zone-radio::after { opacity: 1; }
.zone-info { flex: 1; }
.zone-name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.zone-seats { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.zone-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900; color: var(--indigo);
}
.zone-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.45; }
.zone-perks { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 6px; }
.zone-perk {
  font-size: 0.62rem; font-weight: 600;
  background: rgba(42,157,143,0.1); color: var(--teal);
  padding: 2px 8px; border-radius: 4px;
}
