/* ============================================
   BUY TICKET PAGE - GLASS THEME v3
   Matches all_events.css design system
   ============================================ */


/* ---- PAGE WRAPPER ---- */
.buy-page-wrapper {
  position: relative;
  background: transparent;
}


/* ---- HERO SECTION ---- */
.buy-hero {
  position: relative;
  /* CSS variable approach — stays precisely centered on every screen */
  margin-top: -1.5rem;
  margin-left: calc(var(--bs-gutter-x, 1.5rem) * -.5);
  margin-right: calc(var(--bs-gutter-x, 1.5rem) * -.5);
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

@media (max-width: 991.98px) {
  .buy-hero {
    margin-top: calc(-70px - 1rem);
  }
}

@media (min-width: 992px) {
  .buy-hero {
    border-radius: 0 0 32px 32px;
  }
}

.buy-hero-poster {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #1a1a2e;
}

@media (min-width: 768px) {
  .buy-hero-poster {
    height: 400px;
  }
}

@media (min-width: 1200px) {
  .buy-hero-poster {
    height: 460px;
  }
}

.hero-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.buy-hero:hover .hero-poster-img {
  transform: scale(1.04);
}

.hero-poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.hero-poster-placeholder i {
  font-size: 3rem;
}

.hero-poster-overlay {
  position: absolute;
  inset: 0;
  /* Lighter gradient — the blur on the info strip handles the heavy lifting */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    transparent 65%
  );
  z-index: 1;
}


/* ---- HERO SHARE BUTTON ---- */
.hero-share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
}

@media (max-width: 991.98px) {
  .hero-share-btn {
    top: 80px;
  }
}

/* Back + Home button group — desktop only (navbar covers mobile) */
.hero-nav-btns {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .hero-nav-btns {
    display: none;
  }
}

.share-float-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.share-float-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.share-dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 8px;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.share-dropdown-menu .dropdown-item {
  border-radius: 8px;
  font-size: 0.82rem;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.share-dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  transform: translateX(3px);
}


/* ---- HERO INFO STRIP (bottom of poster) ---- */
/*
  PROFESSIONAL FADE TECHNIQUE
  ─────────────────────────────────────────────
  The strip itself is transparent — no hard-edged box.
  All the blur + gradient lives in a ::before pseudo-element
  that is MASKED with a luminosity gradient, so the blur and
  colour simply dissolve into the poster.  You cannot see
  where it ends because it never really ends — it just fades.
*/
.hero-info-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 0.85rem 1.25rem 1.1rem;
  background: transparent; /* strip itself: invisible box */
}

/* The blur + gradient layer — masked so it has no visible boundary */
.hero-info-strip::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0; /* sits BELOW the date badge and text */
  /* Extends upward into the poster for a cinematic vignette */
  height: 200%;
  pointer-events: none;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.10) 45%,
    transparent 100%
  );
  backdrop-filter: blur(10px) brightness(0.86);
  -webkit-backdrop-filter: blur(10px) brightness(0.86);

  /*
    This is the key — mask-image fades the ENTIRE layer, blur included.
    Solid at the bottom (text always readable), then dissolves upward.
    No line. No edge. It just … ends.
  */
  -webkit-mask-image: linear-gradient(
    to top,
    black 0%,
    black 22%,
    rgba(0, 0, 0, 0.6) 48%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    black 0%,
    black 22%,
    rgba(0, 0, 0, 0.6) 48%,
    transparent 100%
  );
}

/* Small phones: compact strip, same seamless fade */
@media (max-width: 575.98px) {
  .hero-info-strip {
    padding: 0.5rem 1rem 0.85rem;
  }
  .hero-info-strip::before {
    height: 160%;
    -webkit-mask-image: linear-gradient(
      to top,
      black 0%,
      black 18%,
      rgba(0, 0, 0, 0.5) 45%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to top,
      black 0%,
      black 18%,
      rgba(0, 0, 0, 0.5) 45%,
      transparent 100%
    );
  }
}

@media (min-width: 768px) {
  .hero-info-strip {
    padding: 1.1rem 2.5rem 1.4rem;
  }
  .hero-info-strip::before {
    height: 260%;
  }
}

.hero-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 64px;
  background: linear-gradient(135deg, #e70000, #c00000);
  color: white;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(231, 0, 0, 0.45);
  flex-shrink: 0;
  position: relative;
  z-index: 1; /* above ::before blur layer */
  overflow: hidden;
}

.hero-date-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  animation: flag-shine 3s ease-in-out infinite;
}

@keyframes flag-shine {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}

.hdb-day {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hdb-month {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.hero-info-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1; /* above ::before blur layer */
}

.hero-event-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.2;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.7),
    0 4px 24px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .hero-event-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 1200px) {
  .hero-event-title {
    font-size: 2.2rem;
  }
}

.hero-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #ffffff;
  font-size: 0.85rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-event-meta i {
  color: #dc3545;
  margin-right: 4px;
}


/* ---- CONTENT GRID ---- */
.buy-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .buy-content-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    margin-top: 2rem;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .buy-content-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
  }
}


/* ---- GLASS INFO CARD ---- */
.glass-info-card {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: none;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

@media (min-width: 768px) {
  .glass-info-card {
    padding: 1.5rem;
    position: sticky;
    top: 90px;
  }
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
  color: #dc3545;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.info-icon.venue-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  color: #10b981;
}

.info-icon.org-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
  color: #6366f1;
}

.info-body {
  flex: 1;
  min-width: 0;
}

.info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #999;
  margin-bottom: 3px;
}

.info-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a2e;
  line-height: 1.4;
}

.info-value small {
  font-size: 0.75rem;
}

.info-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(220, 53, 69, 0.12),
    transparent
  );
  margin: 12px 0;
}

.edit-event-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-top: 4px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6366f1;
  text-decoration: none;
  background: rgba(99, 102, 241, 0.06);
  transition: all 0.3s ease;
}

.edit-event-link:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
  transform: translateY(-1px);
}


/* ---- GLASS TICKETS CARD ---- */
.glass-tickets-card {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: none;
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .glass-tickets-card {
    padding: 1.5rem;
  }
}

.tickets-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tickets-card-title i {
  color: #dc3545;
  font-size: 1.15rem;
}


/* ---- TICKET BOX ---- */
.ticket-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.ticket-box:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: rgba(220, 53, 69, 0.15);
}

.ticket-box-left {
  flex: 1;
  min-width: 0;
}

.ticket-cat-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a2e;
  margin: 0 0 2px 0;
}

.ticket-box .text-muted {
  font-size: 0.78rem;
  color: #777 !important;
}

.tickets-left {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

.ticket-box-right {
  flex-shrink: 0;
}


/* ---- QUANTITY CONTROLS ---- */
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #dc3545;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: rgba(220, 53, 69, 0.08);
}

.qty-btn:active {
  background: rgba(220, 53, 69, 0.15);
  transform: scale(0.92);
}

.ticket-input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a2e;
  outline: none;
  -moz-appearance: textfield;
}

.ticket-input::-webkit-inner-spin-button,
.ticket-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sold-out-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}


/* ---- GRAND TOTAL BAR ---- */
.grand-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  margin-top: 16px;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.06),
    rgba(220, 53, 69, 0.02)
  );
  border: 1px solid rgba(220, 53, 69, 0.12);
  border-radius: 14px;
}

.total-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #dc3545;
}


/* ---- GET TICKET MAIN BUTTON ---- */
.get-ticket-main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 0;
  margin-top: 16px;
  background: linear-gradient(135deg, #dc3545, #e04b59);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.get-ticket-main-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.get-ticket-main-btn:not(:disabled):hover::after {
  left: 100%;
}

.get-ticket-main-btn:not(:disabled):hover {
  background: linear-gradient(135deg, #c82333, #dc3545);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220, 53, 69, 0.4);
}

.get-ticket-main-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.get-ticket-main-btn i {
  font-size: 1.1rem;
}


/* ---- PAYMENT MODAL ---- */
.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(6px);
  }
}

.glass-modal {
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: modalSlideUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.glass-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-modal .modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.glass-modal .modal-title i {
  color: #dc3545;
}

.modal-close-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  color: #888;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.glass-modal .modal-body {
  padding: 1.25rem 1.5rem;
}

.glass-modal .modal-footer {
  display: flex;
  gap: 10px;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}


/* ---- MODAL FORM FIELDS ---- */
.modal-field {
  margin-bottom: 16px;
}

.modal-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.modal-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.modal-input:focus {
  border-color: rgba(220, 53, 69, 0.4);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.modal-input::placeholder {
  color: #bbb;
}

.phone-input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.phone-input-group:focus-within {
  border-color: rgba(220, 53, 69, 0.4);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(0, 0, 0, 0.03);
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.phone-input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
}

.phone-input:focus {
  box-shadow: none !important;
}

.modal-hint {
  display: block;
  font-size: 0.7rem;
  color: #aaa;
  margin-top: 4px;
}

.modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-top: 8px;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.06),
    rgba(220, 53, 69, 0.02)
  );
  border: 1px solid rgba(220, 53, 69, 0.1);
  border-radius: 12px;
  font-size: 0.88rem;
  color: #555;
}

.modal-total strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #dc3545;
  font-size: 1.05rem;
}


/* ---- MODAL BUTTONS ---- */
.modal-cancel-btn {
  flex: 1;
  padding: 11px 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #666;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-cancel-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.15);
}

.modal-confirm-btn {
  flex: 1.5;
  padding: 11px 0;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #dc3545, #e04b59);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(220, 53, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.modal-confirm-btn:not(:disabled):hover {
  background: linear-gradient(135deg, #c82333, #dc3545);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(220, 53, 69, 0.35);
}

.modal-confirm-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}


/* ---- PAYMENT SPINNER ---- */
.payment-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(220, 53, 69, 0.15);
  border-top-color: #dc3545;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 1rem auto 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ---- DESCRIPTION SECTION ---- */
.event-description-section {
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.glass-description-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: 0.35s;
  opacity: 0;
}

@media (min-width: 768px) {
  .glass-description-card {
    padding: 2rem;
  }
}

.desc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a2e;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desc-title i {
  color: #dc3545;
}

.desc-body {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #555;
  word-break: break-word;
}


/* ---- ANIMATION: FADE-IN-UP ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ---- UTILITY: d-none (Bootstrap compat) ---- */
.d-none {
  display: none !important;
}


/* ============================================
   POSTER LIGHTBOX
   Tap anywhere on the poster to view full-size
   ============================================ */

/* Zoom hint that appears on hover */
.poster-zoom-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.buy-hero-poster:hover .poster-zoom-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Make the poster area feel clickable */
.buy-hero-poster {
  cursor: zoom-in;
}

/* Lightbox backdrop */
.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.poster-lightbox.open {
  opacity: 1;
  visibility: visible;
}

/* The actual image */
.poster-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.poster-lightbox.open .poster-lightbox-img {
  transform: scale(1);
}

/* Close button */
.poster-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.poster-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.1);
}
