/* Event detail page styles */
.ev-main { max-width: 860px; }

.ev-breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 20px;
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
}
.ev-breadcrumb a { color: var(--accent); text-decoration: none; }
.ev-breadcrumb a:hover { text-decoration: underline; }
.ev-breadcrumb span { color: var(--muted); }

.ev-page { }

/* Hero */
.ev-hero {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-bottom: 24px;
}
@media (min-width: 600px) {
  .ev-hero { grid-template-columns: 1fr 1fr; align-items: start; }
}
.ev-hero-img img {
  width: 100%; border-radius: 14px; object-fit: contain;
  max-height: 340px; background: #fff;
}
.ev-hero-img .ev-hero-fallback {
  width: 100%; border-radius: 14px; display: block;
  aspect-ratio: 2/1; max-height: 340px;
  box-shadow: 0 2px 10px rgba(174,47,52,.08);
}
.ev-title { font-size: 26px; font-weight: 800; margin: 0 0 12px; line-height: 1.25; }
.ev-meta-row { margin: 4px 0; font-size: 15px; }
.ev-address { font-size: 13px; color: var(--muted); }
.ev-price { font-size: 18px; font-weight: 700; color: var(--accent); }
.ev-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.ev-badge {
  background: var(--surface-2); color: var(--text); border-radius: 20px;
  font-size: 12px; font-weight: 600; padding: 3px 10px;
}

/* Sticky CTA bar */
.ev-sticky-cta {
  position: sticky; top: 0; z-index: 9;
  background: var(--bg); border-bottom: 1px solid var(--surface-2);
  display: flex; gap: 10px; align-items: center; padding: 10px 0;
  margin-bottom: 24px;
}
.ev-cta-tickets {
  flex: 1; text-align: center; background: var(--accent); color: #fff;
  border-radius: 10px; padding: 12px 16px; text-decoration: none;
  font-weight: 700; font-size: 15px;
}
.ev-cta-tickets:hover { opacity: .9; }
.btn-icon {
  background: var(--surface); border: 1.5px solid var(--surface-2);
  border-radius: 10px; padding: 10px 14px; font-size: 20px;
  cursor: pointer; transition: background .15s;
}
.btn-icon:hover { background: var(--surface-2); }

/* Description */
.ev-desc {
  background: var(--surface); border-radius: 14px;
  padding: 20px; margin-bottom: 24px;
  font-size: 15px; line-height: 1.75; color: var(--text);
}

/* Social proof */
.ev-social-proof {
  text-align: center; color: var(--muted); font-size: 14px;
  margin-bottom: 20px; font-weight: 600;
}

/* Ad slot */
.ev-ad-slot {
  margin-bottom: 24px; position: relative;
  border: 1.5px solid #f0c040; border-radius: 14px; overflow: hidden;
  background: #fffde7;
}
.ev-ad-badge {
  position: absolute; top: 8px; left: 8px; z-index: 1;
  background: #f0c040; color: #5a4000; font-size: 10px; font-weight: 700;
  border-radius: 4px; padding: 2px 6px;
}
.ev-ad-card {
  display: flex; gap: 14px; align-items: center;
  text-decoration: none; color: inherit; padding: 14px;
}
.ev-ad-img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.ev-ad-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.ev-ad-meta { font-size: 12px; color: var(--muted); }

/* Upsell card */
.ev-upsell {
  background: linear-gradient(135deg, #fff8f7, #ffe9e7);
  border: 1.5px solid var(--surface-3); border-radius: 14px;
  padding: 20px; text-align: center; margin-bottom: 24px;
}
.ev-upsell p { margin: 0 0 14px; font-size: 15px; color: var(--text); }

/* Related events */
.ev-related { margin-bottom: 32px; }
.ev-related h2 { font-size: 20px; font-weight: 800; margin-bottom: 14px; }
.ev-related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.ev-related-card {
  background: var(--surface); border-radius: 12px;
  border: 1.5px solid var(--surface-2); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.ev-related-card:hover { border-color: var(--accent-2); box-shadow: 0 2px 10px rgba(174,47,52,.08); }
.ev-related-img {
  height: 120px; background: var(--surface-2); overflow: hidden; position: relative;
}
.ev-related-img-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.ev-related-img .ev-related-fallback { width: 100%; height: 100%; display: block; }
.ev-related-body { padding: 12px; }
.ev-related-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ev-related-meta { font-size: 12px; color: var(--muted); }

/* Actions section */
.ev-actions-section { margin-bottom: 24px; }
.ev-actions-section h2 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.ev-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.btn-sec {
  background: var(--surface); border: 1.5px solid var(--surface-2);
  border-radius: 10px; padding: 10px 16px; text-decoration: none;
  color: var(--text); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: border-color .15s;
  font-family: inherit;
}
.btn-sec:hover { border-color: var(--accent-2); }
.btn-primary {
  background: var(--accent); color: #fff; border: 0;
  border-radius: 10px; padding: 10px 20px; text-decoration: none;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit; display: inline-block;
}
.btn-primary:hover { opacity: .9; }

/* Footer CTA */
.ev-footer-cta {
  background: linear-gradient(135deg, var(--accent), #c94040);
  border-radius: 14px; padding: 24px; text-align: center;
  color: #fff; margin-bottom: 32px;
}
.ev-footer-cta p { margin: 0 0 14px; font-size: 15px; }
.ev-footer-cta .btn-primary {
  background: #fff; color: var(--accent);
}

/* Browse related landing pages (SEO internal linking) */
.ev-browse {
  margin: 32px 0;
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  border-radius: 14px;
}
.ev-browse h2 { font-size: 20px; margin: 0 0 14px; color: var(--text); }
.ev-browse-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.ev-browse-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--surface-2);
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, transform .15s;
}
.ev-browse-chip:hover { background: var(--surface); transform: translateY(-1px); }
