/* ==========================================================================
   ON VOUGA — detail.css
   ========================================================================== */

.detail-hero{ background: var(--navy-950); padding: 24px 0; }
.detail-hero .breadcrumb{ margin: 0; color: rgba(255,255,255,.5); }
.detail-hero .breadcrumb a{ color: rgba(255,255,255,.75); }

.detail-section{ padding: 48px 0 90px; background: var(--white); }
.detail-grid{ display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: start; }

.detail-media{
  position: relative;
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  background-color: #0b0e1a;
  background-image: linear-gradient(180deg, rgba(10,14,35,.05), rgba(10,14,35,.55)), url('images/category-concert.jpg');
  background-size: cover;
  background-position: center;
  margin-bottom: 26px;
}
.detail-media .event-tag{
  position: absolute; top: 16px; left: 16px;
  background: var(--blue-500); color: #08110a; font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--radius-pill); text-transform: uppercase;
}
.detail-main h1{ font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 16px; }
.detail-meta{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.detail-meta li{ display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.detail-meta svg{ color: var(--green-600); flex-shrink: 0; }
.detail-main h2{ font-size: 18px; margin: 26px 0 12px; }
.detail-main p{ color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin-bottom: 14px; max-width: 640px; }

.booking-card{
  position: sticky; top: 100px;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.booking-price{ display: block; font-family: var(--font-display); font-weight: 800; font-size: 26px; margin-bottom: 20px; }
.booking-price span{ font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--ink-soft); }
.qty-field{ display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 20px; }
.qty-control{
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px; background: var(--white); border-radius: 10px; border: 1px solid var(--grey-300);
}
.qty-control button{
  width: 42px; height: 42px; border: none; background: none; font-size: 18px; font-weight: 700; color: var(--ink);
}
.qty-control span{ font-weight: 700; font-size: 15px; }
.booking-total{ display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 14.5px; }
.booking-total strong{ font-family: var(--font-display); font-size: 18px; }
.booking-note{ text-align: center; font-size: 12px; color: var(--ink-soft); margin-top: 14px; }

@media (max-width: 940px){ .detail-grid{ grid-template-columns: 1fr; } .booking-card{ position: static; } }
