/* =====================================================
   BOOKING LUXURY ENHANCEMENT — "Obsidian & Champagne"
   A refined, premium booking experience
   Fonts: Fraunces (headings) + Outfit (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── DESIGN TOKENS — inherit from global theme ──── */
:root {
  /* Mapped to global theme variables; admins set these in Color Settings */
  --bk-ink:        var(--color-booking-dark,     var(--color-dark,       #160f2e));
  --bk-ink-mid:    var(--color-booking-dark,     var(--color-dark,       #2d1f5e));
  --bk-violet:     var(--color-booking-primary,  var(--color-primary,    #5b21b6));
  --bk-violet-mid: var(--color-booking-primary,  var(--color-primary,    #6d28d9));
  --bk-violet-lt:  var(--color-booking-secondary,var(--color-secondary,  #8b5cf6));
  --bk-violet-xlt: var(--color-booking-surface,  var(--color-body-bg,   #ede9fe));
  --bk-gold:       var(--color-booking-gold,     var(--color-accent-gold,var(--color-accent,#c9a96e)));
  --bk-gold-lt:    var(--color-booking-gold-lt,  #f0e4ca);
  --bk-gold-dark:  var(--color-booking-gold,     var(--color-accent,     #a07c42));
  --bk-surface:    var(--color-booking-surface,  var(--color-body-bg,   #faf9ff));
  --bk-border:     rgba(var(--color-primary-rgb,  91, 33, 182), 0.12);
  --bk-glow:       rgba(var(--color-primary-rgb,  91, 33, 182), 0.22);
  --bk-gold-glow:  rgba(var(--color-accent-rgb,  201, 169, 110), 0.30);
  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── FONT OVERRIDE FOR BOOKING PAGES ────────────── */
.bk-page body,
.bk-page { font-family: 'Outfit', sans-serif; }

.bk-heading {
  font-family: 'Fraunces', Georgia, serif !important;
  font-optical-sizing: auto;
}

/* ─── PAGE HEADER — CINEMATIC DARK ───────────────── */
.bk-hero {
  position: relative;
  background: linear-gradient(135deg, #0e0b1e 0%, #1a0f38 40%, #160f2e 70%, #0a0618 100%);
  overflow: hidden;
  padding: 72px 0 100px;
}

.bk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(91, 33, 182, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bk-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #f8f7ff);
  pointer-events: none;
}

.bk-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* Floating orbs */
.bk-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: bk-float 8s ease-in-out infinite;
}
.bk-orb-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.3), transparent 70%);
  top: -50px; left: 10%;
  animation-delay: 0s;
}
.bk-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15), transparent 70%);
  top: 20%; right: 15%;
  animation-delay: -3s;
}
.bk-orb-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  bottom: 30px; left: 40%;
  animation-delay: -5s;
}

.bk-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.bk-hero-subtitle {
  color: rgba(201, 169, 110, 0.85);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.bk-hero-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--bk-gold), transparent);
  margin: 16px auto 0;
  position: relative;
  z-index: 2;
}
.bk-hero-rule::before {
  content: '◆';
  position: absolute;
  left: -14px; top: -7px;
  font-size: 9px;
  color: var(--bk-gold);
  opacity: 0.7;
}

/* ─── WIZARD CONTAINER ────────────────────────────── */
.bk-wizard-wrap {
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(91, 33, 182, 0.07),
    0 20px 60px -10px rgba(22, 15, 46, 0.15),
    0 4px 20px -5px rgba(91, 33, 182, 0.08);
  position: relative;
  overflow: hidden;
}

.bk-wizard-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--bk-violet) 0%,
    var(--bk-violet-lt) 30%,
    var(--bk-gold) 60%,
    var(--bk-violet-lt) 90%,
    var(--bk-violet) 100%
  );
  background-size: 200% 100%;
  animation: bk-shimmer-bar 4s linear infinite;
}

/* ─── STEP INDICATORS — PREMIUM ──────────────────── */
.bk-steps-wrap {
  padding: 36px 40px 32px;
  background: linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
  position: relative;
}

.bk-steps-track {
  display: flex;
  align-items: center;
  position: relative;
}

.bk-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.bk-step-node {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.5s var(--ease-expo);
  position: relative;
  cursor: default;
}

.bk-step-node.is-done {
  background: linear-gradient(135deg, var(--bk-violet), var(--bk-violet-lt));
  color: white;
  box-shadow: 0 4px 16px var(--bk-glow);
  cursor: pointer;
}
.bk-step-node.is-done::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(109, 40, 217, 0.2);
}

.bk-step-node.is-active {
  background: linear-gradient(135deg, var(--bk-gold-dark), var(--bk-gold));
  color: var(--bk-ink);
  font-weight: 800;
  box-shadow:
    0 4px 20px var(--bk-gold-glow),
    0 0 0 6px rgba(201, 169, 110, 0.12);
  transform: scale(1.1);
}

.bk-step-node.is-pending {
  background: #f3f0fa;
  color: #c4b5fd;
  border: 1.5px solid #e8dffc;
}

.bk-step-connector {
  flex: 1;
  height: 2px;
  margin: 0 6px;
  background: #ede8fa;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.bk-step-connector-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--bk-violet), var(--bk-violet-lt));
  border-radius: 2px;
  transition: width 0.6s var(--ease-expo);
  box-shadow: 0 0 8px var(--bk-glow);
}

.bk-step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9d8ec4;
  white-space: nowrap;
  transition: color 0.3s;
}
.bk-step-label.is-active { color: var(--bk-gold-dark); }
.bk-step-label.is-done   { color: var(--bk-violet-mid); }

/* ─── STEP BODY ───────────────────────────────────── */
.bk-step-body {
  padding: 40px;
  animation: bk-step-in 0.5s var(--ease-expo) both;
}

.bk-step-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bk-ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.bk-step-heading .bk-accent-word {
  font-style: italic;
  color: var(--bk-violet-mid);
}

.bk-step-rule {
  width: 48px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--bk-gold), var(--bk-gold-lt));
  margin-bottom: 32px;
}

/* ─── BOOKING TYPE CARDS ─────────────────────────── */
.bk-type-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(91, 33, 182, 0.1);
  border-radius: 20px;
  padding: 28px 20px;
  cursor: pointer;
  transition: all 0.4s var(--ease-expo);
  overflow: hidden;
  text-align: center;
}

.bk-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg,
    rgba(201, 169, 110, 0.05) 0%,
    rgba(91, 33, 182, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.bk-type-card:hover {
  border-color: rgba(109, 40, 217, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(22, 15, 46, 0.12);
}
.bk-type-card:hover::before { opacity: 1; }

.bk-type-card.is-selected {
  border-color: var(--bk-gold);
  border-width: 2px;
  background: linear-gradient(135deg, #fffdf7, #faf8ff);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px -12px rgba(22, 15, 46, 0.1),
    0 0 0 4px rgba(201, 169, 110, 0.1);
}
.bk-type-card.is-selected::before { opacity: 1; }

.bk-type-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--bk-violet-xlt), #f5f0ff);
  border: 1px solid rgba(109, 40, 217, 0.1);
  transition: all 0.4s var(--ease-expo);
}
.bk-type-card:hover .bk-type-icon-wrap,
.bk-type-card.is-selected .bk-type-icon-wrap {
  background: linear-gradient(135deg, var(--bk-gold-lt), #fef9ef);
  border-color: rgba(201, 169, 110, 0.3);
  transform: scale(1.08) rotate(-2deg);
}

.bk-type-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bk-ink);
  margin-bottom: 6px;
}

.bk-type-meta {
  font-size: 0.78rem;
  color: #9d8ec4;
  font-weight: 500;
}

.bk-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--bk-gold), var(--bk-gold-dark));
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: 0 2px 8px var(--bk-gold-glow);
}

/* ─── PACKAGE CARDS ───────────────────────────────── */
.bk-pkg-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid rgba(91, 33, 182, 0.1);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-expo);
}

.bk-pkg-card:hover {
  border-color: rgba(109, 40, 217, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(22, 15, 46, 0.12);
}

.bk-pkg-card.is-selected {
  border-color: var(--bk-gold);
  border-width: 2px;
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px -12px rgba(22, 15, 46, 0.1),
    0 0 0 5px rgba(201, 169, 110, 0.1);
}

.bk-pkg-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(91, 33, 182, 0.07);
}

.bk-pkg-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bk-ink);
  margin-bottom: 6px;
}

.bk-pkg-desc {
  font-size: 0.83rem;
  color: #7c6fa0;
  line-height: 1.5;
}

.bk-pkg-body {
  padding: 16px 24px;
}

.bk-pkg-activities-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0a0d0;
  margin-bottom: 8px;
}

.bk-activity-tag {
  display: inline-block;
  background: var(--bk-violet-xlt);
  color: var(--bk-violet-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 2px 2px 2px 0;
  border: 1px solid rgba(109, 40, 217, 0.1);
}

.bk-pkg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, #faf9ff 0%, #fdfcff 100%);
  border-top: 1px solid rgba(91, 33, 182, 0.07);
}

.bk-pkg-price-label {
  font-size: 0.78rem;
  color: #9d8ec4;
  font-weight: 500;
}

.bk-pkg-price-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bk-violet);
  letter-spacing: -0.02em;
}
.bk-pkg-card.is-selected .bk-pkg-price-value {
  color: var(--bk-gold-dark);
}

/* ─── CALENDAR ────────────────────────────────────── */
.bk-calendar-wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(91, 33, 182, 0.1);
  overflow: hidden;
}

.bk-calendar-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #faf9ff, #ffffff);
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
}

.bk-calendar-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk-ink);
}

.bk-cal-day-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 16px 4px;
  gap: 4px;
}

.bk-cal-day-name {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4b5fd;
  padding: 4px 0;
}

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 4px 16px 16px;
}

.bk-cal-btn {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s var(--ease-expo);
  border: none;
  cursor: pointer;
  position: relative;
}

.bk-cal-btn.is-available {
  background: #f5f3ff;
  color: var(--bk-violet);
}
.bk-cal-btn.is-available:hover {
  background: linear-gradient(135deg, var(--bk-violet), var(--bk-violet-lt));
  color: white;
  transform: scale(1.08);
  box-shadow: 0 6px 16px var(--bk-glow);
}

.bk-cal-btn.is-booked {
  background: #f8f8f8;
  color: #d0c8e8;
  cursor: not-allowed;
}

.bk-cal-btn.is-selected {
  background: linear-gradient(135deg, var(--bk-gold-dark), var(--bk-gold));
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px var(--bk-gold-glow);
  z-index: 2;
}

.bk-cal-btn-day { line-height: 1; }
.bk-cal-btn-month {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 2px;
  letter-spacing: 0.03em;
}

.bk-cal-legend {
  display: flex;
  gap: 16px;
  padding: 12px 16px;
  border-top: 1px solid rgba(91, 33, 182, 0.06);
  background: #faf9ff;
}

.bk-cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #9d8ec4;
}

.bk-cal-legend-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
}

/* ─── TIME SLOTS ──────────────────────────────────── */
.bk-slot-wrap {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(91, 33, 182, 0.1);
  overflow: hidden;
}

.bk-slot-header {
  padding: 18px 20px 14px;
  background: linear-gradient(135deg, #faf9ff, #ffffff);
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
}

.bk-slot-btn {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(91, 33, 182, 0.09);
  border-radius: 14px;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bk-slot-btn:last-child { margin-bottom: 0; }

.bk-slot-btn:hover {
  border-color: rgba(109, 40, 217, 0.25);
  background: #faf9ff;
  transform: translateX(4px);
}

.bk-slot-btn.is-selected {
  border-color: var(--bk-gold);
  background: linear-gradient(135deg, #fffdf7, #faf8ff);
  box-shadow: 0 4px 16px var(--bk-gold-glow);
}
.bk-slot-btn.is-booked {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8f8f8;
}

.bk-slot-time {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk-ink);
}

.bk-slot-cap {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.bk-slot-cap.is-available {
  background: #f0fdf4;
  color: #16a34a;
}

.bk-slot-cap.is-full {
  background: #fef2f2;
  color: #dc2626;
}

/* ─── FORM INPUTS ─────────────────────────────────── */
.bk-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(91, 33, 182, 0.15);
  border-radius: 14px;
  background: #faf9ff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--bk-ink);
  transition: all 0.3s var(--ease-expo);
  outline: none;
}

.bk-input:focus {
  border-color: var(--bk-violet-mid);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.08);
}

.bk-input-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b5b8f;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─── NAVIGATION BUTTONS ──────────────────────────── */
.bk-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bk-gold-dark), var(--bk-gold));
  color: var(--bk-ink);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-expo);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--bk-gold-glow);
}

.bk-btn-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bk-gold), var(--bk-gold-dark));
  opacity: 0;
  transition: opacity 0.3s;
}

.bk-btn-next:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px var(--bk-gold-glow);
}
.bk-btn-next:hover::before { opacity: 1; }
.bk-btn-next span { position: relative; z-index: 1; }
.bk-btn-next svg  { position: relative; z-index: 1; }

.bk-btn-next:disabled {
  background: #e8e0f7;
  color: #c4b5fd;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.bk-btn-prev {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #7c6fa0;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1.5px solid rgba(91, 33, 182, 0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
}
.bk-btn-prev:hover {
  background: #faf9ff;
  border-color: rgba(91, 33, 182, 0.25);
  color: var(--bk-violet);
}

/* ─── REVIEW PANEL ────────────────────────────────── */
.bk-review-card {
  background: linear-gradient(135deg, #faf9ff 0%, #ffffff 100%);
  border: 1.5px solid rgba(91, 33, 182, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.bk-review-header {
  background: linear-gradient(135deg, var(--bk-ink) 0%, var(--bk-ink-mid) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bk-review-title {
  font-family: 'Fraunces', Georgia, serif;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.bk-review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
}
.bk-review-row:last-child { border-bottom: none; }

.bk-review-key {
  font-size: 0.82rem;
  color: #9d8ec4;
  font-weight: 500;
}

.bk-review-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bk-ink);
}

.bk-review-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(22, 15, 46, 0.03), transparent);
  border-top: 2px solid rgba(91, 33, 182, 0.1);
}

.bk-price-total {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--bk-gold-dark);
  letter-spacing: -0.02em;
}

/* ─── CONFIRMATION — TICKET DESIGN ───────────────── */
.bk-ticket-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.bk-ticket {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(91, 33, 182, 0.08),
    0 30px 80px -20px rgba(22, 15, 46, 0.2);
  position: relative;
}

.bk-ticket::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--bk-violet) 0%,
    var(--bk-violet-lt) 35%,
    var(--bk-gold) 65%,
    var(--bk-violet-lt) 100%
  );
}

.bk-ticket-success {
  background: linear-gradient(145deg, var(--bk-ink) 0%, #1e1045 60%, #0e0820 100%);
  padding: 52px 40px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bk-ticket-success::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(91, 33, 182, 0.4), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201, 169, 110, 0.1), transparent 60%);
  pointer-events: none;
}

/* Animated confetti dots */
.bk-confetti-dot {
  position: absolute;
  border-radius: 50%;
  animation: bk-confetti 4s ease-in-out infinite;
  pointer-events: none;
}

.bk-success-ring {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  animation: bk-pop 0.6s var(--ease-back) 0.3s both;
}

.bk-success-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.2);
  animation: bk-ring-pulse 2s ease-in-out infinite 1s;
}

.bk-success-ring::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.1);
  animation: bk-ring-pulse 2s ease-in-out infinite 1.3s;
}

.bk-success-icon {
  color: #4ade80;
  width: 44px; height: 44px;
}

.bk-ticket-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  position: relative; z-index: 2;
  animation: bk-fade-up 0.6s var(--ease-expo) 0.5s both;
}

.bk-ticket-subtitle {
  font-size: 0.88rem;
  color: rgba(201, 169, 110, 0.8);
  position: relative; z-index: 2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: bk-fade-up 0.6s var(--ease-expo) 0.65s both;
}

/* Ticket tear divider */
.bk-ticket-tear {
  position: relative;
  height: 32px;
  background: #ffffff;
  overflow: visible;
}
.bk-ticket-tear::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 32px; height: 32px;
  background: #f8f7ff;
  border-radius: 50%;
  border-right: 2px dashed rgba(91, 33, 182, 0.1);
}
.bk-ticket-tear::after {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 32px; height: 32px;
  background: #f8f7ff;
  border-radius: 50%;
  border-left: 2px dashed rgba(91, 33, 182, 0.1);
}
.bk-ticket-tear-line {
  position: absolute;
  top: 0; left: 16px; right: 16px;
  border-top: 2px dashed rgba(91, 33, 182, 0.1);
}

.bk-ticket-body {
  padding: 8px 40px 36px;
}

.bk-booking-num-wrap {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(91, 33, 182, 0.07);
}

.bk-booking-num-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a0d0;
  margin-bottom: 8px;
}

.bk-booking-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--bk-violet);
  letter-spacing: 0.05em;
}

.bk-qr-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.bk-qr-frame {
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(91, 33, 182, 0.1),
    0 8px 24px rgba(22, 15, 46, 0.08);
  position: relative;
}
.bk-qr-frame::before,
.bk-qr-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--bk-gold);
  border-style: solid;
}
.bk-qr-frame::before {
  top: 8px; left: 8px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.bk-qr-frame::after {
  bottom: 8px; right: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.bk-details-grid {
  display: grid;
  gap: 0;
  border: 1.5px solid rgba(91, 33, 182, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.bk-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(91, 33, 182, 0.06);
  background: #ffffff;
  transition: background 0.2s;
}
.bk-detail-row:last-child { border-bottom: none; }
.bk-detail-row:hover { background: #faf9ff; }

.bk-detail-key {
  font-size: 0.78rem;
  color: #9d8ec4;
  font-weight: 500;
}

.bk-detail-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bk-ink);
}

.bk-price-summary {
  background: linear-gradient(135deg, #faf9ff, #f5f0ff);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1.5px solid rgba(91, 33, 182, 0.08);
}

.bk-price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(91, 33, 182, 0.05);
}
.bk-price-row:last-child { border-bottom: none; }

.bk-price-key {
  font-size: 0.82rem;
  color: #9d8ec4;
}

.bk-price-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bk-ink);
}

.bk-price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--bk-ink), var(--bk-ink-mid));
  border-radius: 0 0 14px 14px;
}

.bk-price-total-key {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.bk-price-total-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--bk-gold);
  letter-spacing: -0.02em;
}

.bk-status-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.bk-status-pill.is-pending {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  color: #92400e;
  border: 1.5px solid #fde68a;
}
.bk-status-pill.is-confirmed {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #14532d;
  border: 1.5px solid #bbf7d0;
}

.bk-action-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bk-action-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bk-gold-dark), var(--bk-gold));
  color: var(--bk-ink);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s var(--ease-expo);
  box-shadow: 0 4px 16px var(--bk-gold-glow);
}
.bk-action-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px var(--bk-gold-glow);
}

.bk-action-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--bk-violet-mid);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid rgba(91, 33, 182, 0.2);
  transition: all 0.3s var(--ease-expo);
}
.bk-action-btn-secondary:hover {
  background: var(--bk-violet-xlt);
  border-color: rgba(91, 33, 182, 0.3);
}

/* ─── ERROR ALERT ─────────────────────────────────── */
.bk-alert-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff1f2;
  border: 1.5px solid #fda4af;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  color: #881337;
  font-size: 0.88rem;
}

/* ─── INFO BANNER ─────────────────────────────────── */
.bk-info-banner {
  background: linear-gradient(135deg, #faf9ff, #f0ecfe);
  border: 1.5px solid rgba(91, 33, 182, 0.15);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 28px;
}

/* ─── KEYFRAME ANIMATIONS ─────────────────────────── */
@keyframes bk-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes bk-shimmer-bar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes bk-step-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bk-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bk-pop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes bk-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes bk-confetti {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

/* ─── EMPTY STATES ────────────────────────────────── */
.bk-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  text-align: center;
}

.bk-empty-icon {
  width: 64px; height: 64px;
  background: var(--bk-violet-xlt);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bk-empty-icon svg {
  color: var(--bk-violet-lt);
  width: 32px; height: 32px;
}

.bk-empty-text {
  font-size: 0.92rem;
  color: #9d8ec4;
  font-weight: 500;
}

/* ─── RTL SUPPORT ─────────────────────────────────── */
[dir="rtl"] .bk-btn-prev svg,
[dir="rtl"] .bk-btn-next svg { transform: scaleX(-1); }

[dir="rtl"] .bk-slot-btn:hover { transform: translateX(-4px); }

[dir="rtl"] .bk-hero-rule {
  background: linear-gradient(270deg, var(--bk-gold), transparent);
}
[dir="rtl"] .bk-hero-rule::before {
  left: auto; right: -14px;
}

[dir="rtl"] .bk-step-rule {
  background: linear-gradient(270deg, var(--bk-gold), var(--bk-gold-lt));
}

/* ─── LOADING STATES ──────────────────────────────── */
.bk-loading-pulse {
  animation: bk-loading 1.5s ease-in-out infinite;
}
@keyframes bk-loading {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
