/* ===== SHOW DETAIL PAGE ===== */

/* SHOW HERO */
.show-hero {
  height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.show-hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,3,0,0.97) 0%, rgba(10,3,0,0.4) 60%, transparent 100%);
}
.show-hero-emoji { font-size: 120px; opacity: 0.2; }
.show-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 36px;
  width: 100%;
  max-width: 900px;
}
.show-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.show-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.show-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #d4a017;
}
.show-hero-meta span { display: flex; align-items: center; gap: 6px; }
.show-hero-meta i { font-size: 16px; }
.show-hero-emblem {
  position: absolute;
  top: 24px;
  right: 40px;
  opacity: 0.25;
  z-index: 2;
  animation: rotateSlow 30s linear infinite;
}

/* MAIN LAYOUT */
.show-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px 120px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

/* LEFT COLUMN */
.show-info-section { margin-bottom: 28px; }
.show-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.info-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.info-card label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}
.info-card span { font-size: 14px; font-weight: 500; color: var(--text); }

.show-desc-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.show-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.artists-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.artist-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--gold);
}
.artist-chip i { font-size: 14px; }

/* RIGHT COLUMN – TICKET SELECTION */
.ticket-panel {
  position: sticky;
  top: 80px;
  height: fit-content;
}
.ticket-panel-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ticket-panel-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.ticket-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.ticket-card:hover { border-color: var(--gold-dim); }
.ticket-card.selected { border-color: var(--gold); background: #1f1200; }

.tc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
.tc-name { font-size: 15px; font-weight: 600; color: var(--text); }
.tc-price { font-size: 18px; font-weight: 700; color: var(--gold); }
.tc-perks { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }

.tc-bottom { display: flex; align-items: center; justify-content: space-between; }
.tc-avail { font-size: 11px; color: #5a7a40; display: flex; align-items: center; gap: 4px; }
.tc-avail i { font-size: 12px; }

.qty-ctrl { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; line-height: 1;
  transition: background 0.1s;
}
.qty-btn:hover { background: var(--gold); color: var(--bg); }
.qty-num { font-size: 16px; font-weight: 600; color: var(--text); min-width: 20px; text-align: center; }

/* BOOK BAR */
.book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.book-bar-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.book-bar-amt { font-size: 26px; font-weight: 700; color: var(--gold); }
.book-bar-btn {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.book-bar-btn:hover:not(:disabled) { background: var(--gold-light); }
.book-bar-btn:disabled { background: var(--bg3); color: var(--text-dim); cursor: not-allowed; }

/* MODALS */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}

.ticket-modal { max-width: 560px; }

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 17px; font-weight: 600; color: var(--text); }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 22px; cursor: pointer; }

.modal-body { padding: 20px; }

.modal-show-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
}
.msm-emoji { font-size: 28px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); border-radius: 8px; }
.msm-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.msm-meta { font-size: 12px; color: var(--text-muted); }

.form-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 20px 0 12px;
  display: flex; align-items: center; gap: 8px;
}
.form-section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.form-field { margin-bottom: 14px; }
.form-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 6px; display: flex; align-items: center; gap: 5px; }
.form-label i { font-size: 14px; color: var(--gold); }
.form-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-dim); }
.form-input.error { border-color: var(--red); }
.form-error { font-size: 11px; color: #e05050; margin-top: 4px; display: none; }
.form-input.error + .form-error, .form-input.error ~ .form-error { display: block; }

.phone-prefix {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.booking-summary {
  background: var(--bg3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.bs-row { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 13px; }
.bs-row:last-child { border-bottom: none; }
.bs-row span:first-child { color: var(--text-muted); }
.bs-row span:last-child { color: var(--text); font-weight: 500; }
.bs-total { display: flex; justify-content: space-between; padding: 13px 14px; background: var(--border); font-size: 15px; font-weight: 700; }
.bs-total span:last-child { color: var(--gold); }

.booking-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #1a1000;
  border: 1px solid #3d2000;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.booking-note i { font-size: 16px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.pay-btn {
  width: 100%;
  background: #3395FF;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  transition: opacity 0.15s;
}
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pay-btn i { font-size: 18px; }

.secure-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.secure-note i { font-size: 13px; }

/* SUCCESS + TICKET */
.success-banner {
  background: #001a0a;
  border: 1px solid #1a5c2a;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.success-banner i { font-size: 28px; color: #40c070; flex-shrink: 0; }
.success-title { font-size: 15px; font-weight: 600; color: #40c070; margin-bottom: 2px; }
.success-sub { font-size: 12px; color: #1a5c2a; }

/* GRAPHIC TICKET */
.graphic-ticket {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  margin-bottom: 16px;
}

.ticket-poster {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket-emoji-big { font-size: 90px; opacity: 0.3; position: relative; z-index: 1; }
.ticket-poster-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  z-index: 2;
}
.ticket-presented {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ticket-presented::before,.ticket-presented::after { content: ''; flex: 1; height: 1px; background: #d4a01755; }
.ticket-event-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.ticket-kutchi-emblem {
  position: absolute;
  top: 12px; right: 12px;
  opacity: 0.3;
  z-index: 3;
}
.ticket-kutchi-stripe {
  height: 8px;
  background: repeating-linear-gradient(90deg,
    #d4a017 0,#d4a017 6px,#8b1a1a 6px,#8b1a1a 12px,
    #1a5c2a 12px,#1a5c2a 18px,#c45c1a 18px,#c45c1a 24px,
    #7b2d8b 24px,#7b2d8b 30px,#d4a017 30px,#d4a017 36px
  );
}
.ticket-white-body { background: #fff; padding: 18px; }
.ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.ticket-field label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #888; display: block; margin-bottom: 3px; }
.ticket-field span { font-size: 13px; font-weight: 600; color: #1a0a00; }

.ticket-tear-line {
  border: none;
  border-top: 2px dashed #e0d0c0;
  margin: 14px -18px;
  position: relative;
}
.ticket-tear-line::before {
  content: ''; position: absolute; left: -10px; top: -9px;
  width: 18px; height: 18px; background: var(--bg2); border-radius: 50%;
}
.ticket-tear-line::after {
  content: ''; position: absolute; right: -10px; top: -9px;
  width: 18px; height: 18px; background: var(--bg2); border-radius: 50%;
}

.ticket-bottom-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.ticket-qr-wrap {
  width: 90px; height: 90px;
  background: #fff;
  border: 2px solid #1a0a00;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ticket-holder-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #1a0a00; margin-bottom: 4px; }
.ticket-type-pill { display: inline-block; padding: 3px 10px; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.ticket-id { font-family: monospace; font-size: 11px; color: #888; letter-spacing: 1px; margin-bottom: 4px; }
.ticket-qty { font-size: 11px; color: #aaa; }

.ticket-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid #f0e8e0; }
.tf-logo-guj { font-family: 'Tiro Devanagari Hindi', serif; font-size: 14px; color: var(--gold); }
.tf-logo-en { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; }
.tf-powered { font-size: 9px; color: #bbb; }

.ticket-actions { display: flex; gap: 8px; margin-bottom: 12px; }
.t-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s;
}
.t-btn i { font-size: 22px; color: var(--gold); }
.t-btn:hover { border-color: var(--gold-dim); }
.t-btn.whatsapp { color: #25D366; border-color: #1a3d20; }
.t-btn.whatsapp i { color: #25D366; }

.home-link-btn {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .show-hero { height: 300px; }
  .show-hero-content { padding: 0 16px 28px; }
  .show-hero-emblem { display: none; }
  .show-layout { grid-template-columns: 1fr; padding: 20px 16px 100px; gap: 24px; }
  .ticket-panel { position: static; }
  .show-info-grid { grid-template-columns: 1fr 1fr; }
  .book-bar { padding: 12px 16px; }
}
