@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Dancing+Script:wght@600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');
:root {
  --bg-primary:#080808; --bg-secondary:#111;
  --text-primary:rgba(255,255,255,0.85);
  --font-primary:'Playfair Display',serif;
  --font-secondary:'Montserrat',sans-serif;
  --font-cursive:'Dancing Script',cursive;
  --pink:#ff6eb4;
  --header-h:54px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html,body{height:100%;overflow:hidden;}
body{background:var(--bg-primary);color:var(--text-primary);font-family:var(--font-secondary);}

/* ── Header ── */
.booking-header{
  background:rgba(6,6,6,0.92);backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,0.07);
  padding:0 5%;display:flex;align-items:center;justify-content:space-between;
  position:fixed;top:0;left:0;right:0;z-index:100;
  height:var(--header-h);
}
.booking-header img{height:34px;}
.back-btn{
  color:rgba(255,255,255,0.6);font-size:0.6rem;font-weight:700;
  letter-spacing:0.18em;text-transform:uppercase;
  cursor:pointer;background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  padding:0.35rem 1rem;border-radius:999px;transition:all 0.25s;
}
.back-btn:hover{color:var(--pink);border-color:rgba(255,110,180,0.5);background:rgba(255,110,180,0.07);}

/* ── Main: full viewport minus header ── */
.booking-main{
  position:fixed;top:var(--header-h);left:0;right:0;
  bottom:0;overflow:hidden;
  max-width:1100px;margin:0 auto;
  padding:1rem 5% 0;
  display:flex;flex-direction:column;
  align-items:stretch;
}

/* ── Progress Steps ── */
.progress-steps{
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-bottom:1rem;gap:0;
  padding:0.5rem 1.2rem;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:999px;
  width:fit-content;
  align-self:center;
}
.step{display:flex;flex-direction:column;align-items:center;gap:0.3rem;}
.step-circle{
  width:40px;height:40px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.12);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.22);
  transition:all 0.35s;
  background:rgba(255,255,255,0.03);
}
.step-circle svg{transition:all 0.35s;}
.step.active .step-circle{
  border-color:rgba(180,220,255,0.7);
  color:rgba(180,220,255,0.9);
  box-shadow:0 0 14px rgba(140,200,255,0.25),0 0 28px rgba(140,200,255,0.08);
  background:rgba(140,200,255,0.07);
}
.step.active .step-circle svg{filter:drop-shadow(0 0 4px rgba(160,210,255,0.8));}
.step.done .step-circle{
  background:rgba(255,255,255,0.9);border-color:rgba(255,255,255,0.6);color:#111;
  box-shadow:0 0 8px rgba(255,255,255,0.2);
}
.step.done .step-circle svg{filter:none;}
.step-label{font-size:0.5rem;letter-spacing:0.13em;text-transform:uppercase;color:rgba(255,255,255,0.22);}
.step.active .step-label{color:rgba(180,220,255,0.85);}
.step.done .step-label{color:rgba(255,255,255,0.38);}
.step-line{
  flex:1;height:1px;
  background:rgba(255,255,255,0.07);
  min-width:32px;max-width:56px;margin-bottom:1.35rem;transition:background 0.4s;
}
.step-line.done{background:rgba(255,255,255,0.3);}

/* ── Panels: fill remaining space ── */
.booking-panel{display:none;animation:fadeIn 0.35s ease;flex:1;overflow:hidden;flex-direction:column;}
.booking-panel.active{display:flex;}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

.panel-title{
  font-family:var(--font-cursive);font-size:1.85rem;color:#fff;margin-bottom:0.2rem;flex-shrink:0;
  text-shadow:0 0 8px #fff,0 0 20px rgba(255,140,200,0.8),0 0 40px rgba(255,60,150,0.5);
  text-align:center;
}
.panel-subtitle{
  font-size:0.7rem;color:rgba(255,255,255,0.35);margin-bottom:0.9rem;
  letter-spacing:0.04em;flex-shrink:0;text-align:center;
}

/* ── Panel scroll area ── */
.panel-body{flex:1;overflow-y:auto;overflow-x:hidden;padding-right:4px;padding-bottom:0.5rem;}
.panel-body::-webkit-scrollbar{width:3px;}
.panel-body::-webkit-scrollbar-track{background:transparent;}
.panel-body::-webkit-scrollbar-thumb{background:rgba(255,110,180,0.3);border-radius:2px;}

/* ── Event Type Tabs ── */
.booking-event-tabs{display:flex;gap:0.7rem;flex-wrap:wrap;margin-bottom:0.9rem;justify-content:center;}
.booking-event-tab{
  display:flex;flex-direction:column;align-items:center;gap:0.3rem;
  background:transparent;border:none;cursor:pointer;padding:0;transition:transform 0.25s;
}
.booking-event-tab:hover{transform:translateY(-2px);}
.bet-icon{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.35);transition:all 0.3s;
}
.bet-label{
  font-family:var(--font-secondary);font-size:0.52rem;letter-spacing:0.12em;
  text-transform:uppercase;color:rgba(255,255,255,0.28);transition:color 0.3s;
}
.booking-event-tab.active .bet-icon{
  background:rgba(255,255,255,0.07);
  border-color:rgba(255,255,255,0.5);
  color:#fff;
  box-shadow:0 0 0 3px rgba(0,0,0,0.9),0 0 0 4px rgba(255,255,255,0.15),0 0 16px rgba(255,255,255,0.1);
}
.booking-event-tab.active .bet-icon svg{filter:drop-shadow(0 0 4px rgba(255,255,255,0.6));}
.booking-event-tab.active .bet-label{color:rgba(255,255,255,0.8);}

/* ── Package Cards: 4-column ── */
.booking-pkg-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0.75rem;
  margin-bottom:0.6rem;
}
.booking-pkg-card{
  background:radial-gradient(120% 120% at 50% 0%,rgba(var(--accent),0.08),transparent 60%),#050505;
  border:1px solid rgba(var(--accent),0.35);border-radius:12px;
  padding:1rem 0.9rem;cursor:pointer;
  transition:transform 0.3s ease,box-shadow 0.3s ease,border-color 0.3s ease;
  position:relative;display:flex;flex-direction:column;
  box-shadow:0 8px 24px rgba(0,0,0,0.6),inset 0 0 14px rgba(var(--accent),0.04);
}
.booking-pkg-card::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:55%;height:1px;
  background:linear-gradient(to right,transparent,rgba(var(--accent),0.8),transparent);
}
.booking-pkg-card:hover{transform:translateY(-3px);box-shadow:0 16px 36px rgba(0,0,0,0.8),inset 0 0 20px rgba(var(--accent),0.07);}
.booking-pkg-card.selected{
  border-color:rgba(var(--accent),0.85);
  box-shadow:0 0 0 1px rgba(var(--accent),0.4),0 16px 36px rgba(0,0,0,0.8),0 0 22px rgba(var(--accent),0.15);
}
.booking-pkg-card.silver{--accent:192,192,192;}
.booking-pkg-card.gold{--accent:201,161,74;}
.booking-pkg-card.diamond{--accent:0,229,255;}
.booking-pkg-card.platinum{--accent:229,228,226;}

.bpkg-badge{
  position:absolute;top:7px;right:7px;
  font-size:0.42rem;letter-spacing:1.5px;text-transform:uppercase;
  color:rgb(var(--accent));border:1px solid rgba(var(--accent),0.5);
  padding:2px 6px;border-radius:30px;background:rgba(0,0,0,0.6);
  font-family:var(--font-secondary);
}
.bpkg-icon{
  width:28px;height:28px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(var(--accent),0.4);background:rgba(var(--accent),0.07);
  color:rgb(var(--accent));margin-bottom:0.4rem;
}
.bpkg-name{font-family:var(--font-primary);font-size:0.88rem;font-weight:600;color:rgb(var(--accent));margin-bottom:0.15rem;line-height:1.1;}
.bpkg-price{font-family:var(--font-primary);font-size:0.82rem;color:#fff;margin-bottom:0.5rem;}
.bpkg-divider{width:60%;height:1px;background:linear-gradient(to right,transparent,rgba(var(--accent),0.5),transparent);margin-bottom:0.5rem;}
.bpkg-features{display:flex;flex-wrap:wrap;gap:3px;}
.bpkg-features span{
  font-size:0.5rem;color:rgba(var(--accent),0.9);
  padding:2px 6px;border:1px solid rgba(var(--accent),0.3);
  background:rgba(var(--accent),0.07);border-radius:20px;
  font-family:var(--font-secondary);letter-spacing:0.05em;
}

/* ── Add-on Cards: 5-column ── */
.booking-addons-grid{
  display:grid;grid-template-columns:repeat(5,1fr);gap:0.7rem;
  margin-bottom:0.6rem;
}
.booking-addon{
  background:radial-gradient(ellipse at 50% 0%,var(--addon-glow,rgba(255,255,255,0.06)) 0%,transparent 60%),
    linear-gradient(160deg,rgba(255,255,255,0.03) 0%,#060606 100%);
  border:1px solid rgba(255,255,255,0.07);border-radius:12px;
  padding:1rem 0.6rem 0.85rem;text-align:center;cursor:pointer;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
  position:relative;overflow:hidden;
}
.booking-addon::before{
  content:'';position:absolute;inset:0;border-radius:12px;
  border:1px solid var(--addon-color,rgba(255,255,255,0.15));opacity:0.4;
  pointer-events:none;transition:opacity 0.3s;
}
.booking-addon::after{
  content:'';position:absolute;inset:-4px;border-radius:16px;
  border:1px solid var(--addon-color,rgba(255,255,255,0.06));opacity:0.15;
  pointer-events:none;transition:opacity 0.3s;
}
.booking-addon:hover{transform:translateY(-4px) scale(1.02);}
.booking-addon:hover::before{opacity:0.9;}
.booking-addon:hover::after{opacity:0.45;}
.booking-addon.selected::before{opacity:1;}
.booking-addon.selected::after{opacity:0.65;}
.booking-addon.selected{box-shadow:0 0 22px var(--addon-glow,rgba(255,255,255,0.08));}

.ba-corner-tl,.ba-corner-br{position:absolute;width:10px;height:10px;pointer-events:none;z-index:2;}
.ba-corner-tl{top:5px;left:5px;border-top:1.5px solid var(--addon-color,rgba(255,255,255,0.3));border-left:1.5px solid var(--addon-color,rgba(255,255,255,0.3));border-radius:3px 0 0 0;}
.ba-corner-br{bottom:5px;right:5px;border-bottom:1.5px solid var(--addon-color,rgba(255,255,255,0.3));border-right:1.5px solid var(--addon-color,rgba(255,255,255,0.3));border-radius:0 0 3px 0;}

.ba-check{
  position:absolute;top:0.4rem;right:0.4rem;
  width:16px;height:16px;border-radius:50%;
  background:var(--addon-color,#fff);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transform:scale(0.4);
  transition:all 0.25s cubic-bezier(.34,1.56,.64,1);z-index:3;
}
.ba-check svg{color:#000;}
.booking-addon.selected .ba-check{opacity:1;transform:scale(1);}

.ba-icon-wrap{
  width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 0.55rem;
  background:radial-gradient(circle,var(--addon-glow,rgba(255,255,255,0.06)) 0%,transparent 70%);
  border:1px solid var(--addon-color,rgba(255,255,255,0.18));
  color:var(--addon-color,#fff);
  box-shadow:0 0 10px var(--addon-glow,rgba(255,255,255,0.04));
  transition:box-shadow 0.3s;
}
.booking-addon:hover .ba-icon-wrap{box-shadow:0 0 18px var(--addon-glow,rgba(255,255,255,0.1));}
.ba-name{font-family:var(--font-primary);font-size:0.72rem;color:rgba(255,255,255,0.88);margin-bottom:0.2rem;font-weight:500;}
.ba-price{font-size:0.6rem;font-family:var(--font-secondary);color:var(--addon-color,rgba(255,255,255,0.5));font-weight:600;letter-spacing:0.06em;text-shadow:0 0 8px var(--addon-glow,rgba(255,255,255,0.15));}

/* ── Date & Time ── */
.date-time-grid{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:1.4rem;margin-bottom:0.6rem;
  align-items:start;
}
.dt-section h3{
  font-family:var(--font-primary);font-size:0.82rem;
  color:rgba(255,255,255,0.6);margin-bottom:0.7rem;
  letter-spacing:0.08em;text-transform:uppercase;font-weight:400;
}
.mini-calendar{
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;padding:0.9rem;
  position:relative;overflow:hidden;
}
.mini-calendar::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:50%;height:1px;
  background:linear-gradient(to right,transparent,rgba(255,255,255,0.2),transparent);
}
.mini-cal-header{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:0.75rem;padding-bottom:0.55rem;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.mini-cal-header span{
  font-family:var(--font-primary);font-size:0.85rem;
  color:rgba(255,255,255,0.85);letter-spacing:0.04em;
}
.mini-cal-nav{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.5);
  width:24px;height:24px;border-radius:50%;
  cursor:pointer;font-size:0.85rem;transition:all 0.2s;
  display:flex;align-items:center;justify-content:center;
}
.mini-cal-nav:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.3);
  color:#fff;
}
.mini-cal-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:0.15rem;text-align:center;}
.mini-cal-grid .day-label{
  font-size:0.48rem;color:rgba(255,255,255,0.3);
  padding:0.2rem 0;font-weight:600;letter-spacing:0.05em;
}
.mini-cal-grid .cal-day{
  font-size:0.66rem;padding:0.28rem 0.1rem;border-radius:5px;
  cursor:pointer;transition:all 0.18s;color:rgba(255,255,255,0.55);
  font-family:var(--font-secondary);
}
.mini-cal-grid .cal-day:hover{
  background:rgba(255,255,255,0.08);color:#fff;
}
.mini-cal-grid .cal-day.today{
  background:rgba(255,255,255,0.1);color:#fff;font-weight:700;
  border:1px solid rgba(255,255,255,0.2);
}
.mini-cal-grid .cal-day.selected{
  background:#fff;color:#000;font-weight:700;
  border-radius:5px;
  box-shadow:0 0 10px rgba(255,255,255,0.3);
}
.mini-cal-grid .cal-day.disabled{opacity:0.15;cursor:not-allowed;pointer-events:none;}

/* ── Time Slots ── */
.slots-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0.5rem;}
.time-slot{
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px;padding:0.5rem 0.4rem;
  text-align:center;font-size:0.67rem;
  cursor:pointer;transition:all 0.2s;
  color:rgba(255,255,255,0.5);
  font-family:var(--font-secondary);
}
.time-slot:hover{
  border-color:rgba(255,255,255,0.25);color:rgba(255,255,255,0.9);
  background:rgba(255,255,255,0.05);
}
.time-slot.selected{
  border-color:rgba(255,255,255,0.6);color:#fff;
  background:rgba(255,255,255,0.08);
  box-shadow:0 0 12px rgba(255,255,255,0.08);
  font-weight:600;
}
.time-slot.booked{opacity:0.18;cursor:not-allowed;pointer-events:none;text-decoration:line-through;}

/* Booked slot — visually distinct red/dimmed */
.time-slot.booked-visual{
  background:rgba(255,60,60,0.08);
  border:1px solid rgba(255,60,60,0.25);
  color:rgba(255,100,100,0.4);
  cursor:not-allowed;pointer-events:none;
  position:relative;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
}
.slot-booked-tag{
  font-size:0.42rem;letter-spacing:0.1em;text-transform:uppercase;
  color:rgba(255,80,80,0.55);font-family:var(--font-secondary);font-weight:700;
}

/* Extend note */
.slots-extend-note{
  font-size:0.65rem;color:rgba(255,255,255,0.38);
  font-family:var(--font-secondary);letter-spacing:0.03em;
  padding:0.4rem 0.5rem;
  border-left:2px solid rgba(162,155,254,0.4);
  background:rgba(162,155,254,0.04);
  border-radius:0 6px 6px 0;
  margin-bottom:0.3rem;
  line-height:1.5;
}

/* Extra hours */
.extra-hours-wrap{
  margin-top:0.6rem;
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px;
  padding:0.7rem 0.9rem;
  display:flex;flex-direction:column;gap:0.5rem;
}
.extra-hours-label{
  font-size:0.62rem;color:rgba(255,255,255,0.55);
  font-family:var(--font-secondary);letter-spacing:0.05em;
  display:flex;align-items:center;gap:0.4rem;
}
.extra-hours-label svg{color:rgba(162,155,254,0.7);flex-shrink:0;}
.extra-hours-select{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:8px;
  color:rgba(255,255,255,0.8);
  font-family:var(--font-secondary);font-size:0.72rem;
  padding:0.45rem 0.7rem;
  outline:none;cursor:pointer;
  transition:border-color 0.2s;
  width:100%;
}
.extra-hours-select:focus{border-color:rgba(162,155,254,0.5);}
.extra-hours-select option{background:#111;color:#fff;}

/* ── Details Form ── */
.details-form{display:grid;grid-template-columns:1fr 1fr;gap:1rem 1.4rem;margin-bottom:0.6rem;}
.details-form .full-width{grid-column:1/-1;}
.form-field{display:flex;flex-direction:column;gap:0.4rem;}
.form-field label{
  font-size:0.55rem;letter-spacing:0.2em;text-transform:uppercase;
  font-family:var(--font-secondary);font-weight:600;
  color:rgba(255,255,255,0.5);
}
.form-field input,.form-field select,.form-field textarea{
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding:0.55rem 0.2rem;
  color:rgba(255,255,255,0.9);
  font-family:var(--font-secondary);font-size:0.82rem;
  outline:none;transition:all 0.25s;border-radius:0;
  caret-color:#fff;
}
.form-field input::placeholder,.form-field textarea::placeholder{
  color:rgba(255,255,255,0.28);
}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{
  border-bottom-color:rgba(255,255,255,0.6);
  color:#fff;
}
.form-field select option{background:#111;color:#fff;}
.form-field textarea{resize:none;min-height:52px;line-height:1.6;}

/* ── Summary ── */
.booking-summary{
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.1);border-radius:14px;
  padding:0.9rem 1.1rem;margin-bottom:0.7rem;
}
.summary-row{display:flex;justify-content:space-between;padding:0.32rem 0;border-bottom:1px solid rgba(255,255,255,0.05);font-size:0.75rem;}
.summary-row:last-child{border-bottom:none;font-weight:700;font-size:0.88rem;margin-top:0.3rem;padding-top:0.5rem;}
.summary-label{color:rgba(255,255,255,0.42);font-family:var(--font-secondary);}
.summary-value{color:rgba(255,255,255,0.85);}
.summary-row:last-child .summary-value{color:#fff;letter-spacing:0.04em;}

/* Total row */
.summary-total-row{font-weight:700;font-size:0.88rem;margin-top:0.3rem;padding-top:0.5rem;border-bottom:none !important;}
.summary-total-row .summary-value{color:#fff;letter-spacing:0.04em;}

/* Billing split */
.summary-billing-note{
  margin-top:0.7rem;
  background:rgba(162,155,254,0.06);
  border:1px solid rgba(162,155,254,0.25);
  border-radius:10px;
  padding:0.8rem 1rem;
}
.billing-split{display:flex;flex-direction:column;gap:0.4rem;margin-bottom:0.6rem;}
.billing-split-item{
  display:flex;justify-content:space-between;align-items:center;
  font-size:0.75rem;font-family:var(--font-secondary);
  padding:0.35rem 0;
}
.billing-split-item.pay-now{
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.billing-split-item.pay-now .billing-split-label{color:rgba(162,155,254,0.9);}
.billing-split-item.pay-now .billing-split-amount{color:#a29bfe;font-weight:700;font-size:0.88rem;}
.billing-split-item.pay-venue .billing-split-label{color:rgba(255,255,255,0.4);}
.billing-split-item.pay-venue .billing-split-amount{color:rgba(255,255,255,0.5);font-weight:600;}
.billing-policy-text{
  font-size:0.6rem;color:rgba(255,255,255,0.3);
  font-family:var(--font-secondary);line-height:1.6;letter-spacing:0.02em;
}

/* ── Payment Methods ── */
.payment-methods{display:grid;grid-template-columns:repeat(2,1fr);gap:0.7rem;margin-bottom:0.7rem;}
.payment-method{
  background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;padding:0.8rem;text-align:center;cursor:pointer;transition:all 0.25s;
}
.payment-method:hover,.payment-method.selected{
  border-color:rgba(255,255,255,0.35);background:rgba(255,255,255,0.06);
  box-shadow:0 0 16px rgba(255,255,255,0.05);
}
.pm-icon{display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.8);margin-bottom:0.3rem;font-family:var(--font-secondary);font-size:0.82rem;font-weight:700;height:24px;}
.pm-name{font-size:0.65rem;color:rgba(255,255,255,0.45);font-family:var(--font-secondary);}

/* ── Nav Buttons ── */
.booking-nav{
  display:flex;justify-content:center;align-items:center;gap:1rem;
  flex-shrink:0;
  padding:0.75rem 0 1rem;
}
.btn-prev{
  display:flex;align-items:center;gap:0.5rem;
  background:transparent;
  border:none;
  color:rgba(255,255,255,0.4);
  padding:0;
  cursor:pointer;
  font-family:var(--font-secondary);font-size:0.58rem;
  font-weight:600;letter-spacing:0.2em;text-transform:uppercase;
  transition:all 0.25s;
  position:relative;
}
.btn-prev::before{
  content:'';
  display:flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.03);
  transition:all 0.25s;
  flex-shrink:0;
}
.btn-prev .btn-arrow{
  position:absolute;left:0;
  width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.4);
  transition:all 0.25s;
}
.btn-prev:hover{color:rgba(255,255,255,0.75);}
.btn-prev:hover::before{border-color:rgba(255,255,255,0.3);background:rgba(255,255,255,0.07);}
.btn-prev:hover .btn-arrow{color:rgba(255,255,255,0.75);}
.btn-prev .btn-text{padding-left:40px;}

.btn-next{
  display:flex;align-items:center;gap:0.7rem;
  background:rgba(255,255,255,0.06);
  color:rgba(255,255,255,0.9);
  border:1px solid rgba(255,255,255,0.2);
  padding:0.6rem 0.7rem 0.6rem 1.4rem;
  border-radius:999px;
  cursor:pointer;
  font-family:var(--font-secondary);font-size:0.6rem;
  font-weight:800;letter-spacing:0.2em;text-transform:uppercase;
  transition:all 0.3s;
}
.btn-next .btn-icon{
  width:30px;height:30px;border-radius:50%;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25);
  display:flex;align-items:center;justify-content:center;
  color:#fff;flex-shrink:0;
  transition:all 0.3s;
}
.btn-next:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.4);
  color:#fff;
  box-shadow:0 0 20px rgba(255,255,255,0.08);
  transform:translateY(-1px);
}
.btn-next:hover .btn-icon{
  background:rgba(255,255,255,0.18);
  transform:translateX(2px);
}
.btn-next:disabled{
  opacity:0.25;cursor:not-allowed;transform:none;box-shadow:none;
}

/* ── Success ── */
.booking-success{text-align:center;padding:2rem 1rem;}
.success-icon{display:flex;align-items:center;justify-content:center;color:#fff;margin-bottom:0.8rem;filter:drop-shadow(0 0 12px rgba(255,255,255,0.3));}
.success-title{font-family:var(--font-cursive);font-size:2.4rem;color:#fff;margin-bottom:0.6rem;text-shadow:0 0 20px rgba(255,255,255,0.3);}
.success-msg{font-size:0.8rem;color:rgba(255,255,255,0.5);line-height:1.8;max-width:480px;margin:0 auto 1.5rem;}
.booking-ref{
  background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.2);
  border-radius:12px;padding:0.7rem 1.8rem;display:inline-block;
  font-family:var(--font-primary);font-size:0.95rem;color:#fff;
  letter-spacing:0.2em;box-shadow:0 0 18px rgba(255,255,255,0.06);
}


/* ── Responsive ── */
@media(max-width:900px){
  html,body{overflow:auto;}
  .booking-main{
    position:static;
    overflow:visible;
    height:auto;
    margin-top:var(--header-h);
    padding-top:1rem;
  }
  .booking-panel{overflow:visible;flex:none;}
  .panel-body{overflow:visible;height:auto;}

  /* Sticky progress steps */
  .progress-steps {
    position: sticky;
    top: var(--header-h);
    z-index: 60;
    background: var(--bg-primary);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
    border-radius: 0;
    width: 100%;
  }

  /* Sticky panel title + event tabs — sits below sticky steps */
  .panel-sticky-top {
    position: sticky;
    top: calc(var(--header-h) + 72px);
    z-index: 50;
    background: var(--bg-primary);
    padding-top: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.8rem;
  }
  .panel-title { margin-bottom: 0.15rem; }
  .panel-subtitle { margin-bottom: 0.4rem; }

  /* Event tabs — single scrollable row */
  .booking-event-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.3rem;
    gap: 1rem;
  }
  .booking-event-tabs::-webkit-scrollbar { display: none; }
  .booking-event-tab { flex-shrink: 0; }

  .booking-pkg-grid{grid-template-columns:repeat(2,1fr);}
  .booking-addons-grid{grid-template-columns:repeat(3,1fr);}
  .date-time-grid{grid-template-columns:1fr;}

  /* Nav buttons — always above sticky headers, large touch targets */
  .booking-nav{
    padding:1.2rem 0 2rem;
    position:relative;
    z-index:70;
    background:var(--bg-primary);
  }
  .btn-next{
    min-height:48px;
    padding:0.75rem 1.2rem 0.75rem 1.6rem;
    font-size:0.65rem;
  }
  .btn-prev{
    min-height:48px;
  }
  .btn-prev::before{
    width:40px;height:40px;
  }
  .btn-prev .btn-arrow{
    width:40px;height:40px;
  }
  .btn-prev .btn-text{padding-left:48px;}
}

@media(max-width:600px){
  .booking-pkg-grid,.details-form,.payment-methods{grid-template-columns:1fr;}
  .booking-addons-grid{grid-template-columns:repeat(2,1fr);}
  .progress-steps{overflow-x:auto;border-radius:16px;padding:0.5rem 0.6rem;}
  .step-label{display:none;}
  .step-circle{width:34px;height:34px;}
  .step-line{min-width:18px;max-width:32px;}
}


/* ================================================================
   AUTHENTICATION SCREEN STYLES - PURPLE THEME
   ================================================================ */

.auth-required-screen {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: radial-gradient(circle at 50% 50%, rgba(162,155,254,0.08) 0%, transparent 60%);
}

.auth-card {
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(162,155,254,0.12) 0%, transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,0.05) 0%, #060606 100%);
  border: 1.5px solid rgba(162,155,254,0.5);
  border-radius: 18px;
  padding: 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 
    0 0 0 1px rgba(162,155,254,0.2),
    0 16px 40px rgba(0,0,0,0.8),
    0 0 30px rgba(162,155,254,0.12);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(162,155,254,0.8), transparent);
  box-shadow: 0 0 8px rgba(162,155,254,0.5);
}

.auth-card::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px solid rgba(162,155,254,0.15);
  opacity: 0.5;
  pointer-events: none;
}

.auth-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: radial-gradient(circle, rgba(162,155,254,0.2) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: neonPulse 2s ease-in-out infinite;
  border: 2px solid rgba(162,155,254,0.6);
  box-shadow: 
    0 0 0 4px rgba(0,0,0,0.9),
    0 0 0 5px rgba(162,155,254,0.3),
    0 0 18px rgba(162,155,254,0.5),
    inset 0 0 12px rgba(162,155,254,0.12);
}

.auth-icon svg {
  color: #a29bfe;
  filter: drop-shadow(0 0 8px rgba(162,155,254,1));
  width: 32px;
  height: 32px;
}

@keyframes neonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 0 4px rgba(0,0,0,0.9),
      0 0 0 5px rgba(162,155,254,0.3),
      0 0 18px rgba(162,155,254,0.5),
      inset 0 0 12px rgba(162,155,254,0.12);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 0 4px rgba(0,0,0,0.9),
      0 0 0 5px rgba(162,155,254,0.4),
      0 0 26px rgba(162,155,254,0.6),
      inset 0 0 16px rgba(162,155,254,0.16);
  }
}

.auth-card h2 {
  font-size: 1.75rem;
  color: #a29bfe;
  margin-bottom: 0.5rem;
  font-weight: 400;
  text-shadow: 
    0 0 10px rgba(162,155,254,0.7),
    0 0 22px rgba(162,155,254,0.6),
    0 0 40px rgba(162,155,254,0.4);
  font-family: var(--font-cursive);
  letter-spacing: 1px;
  line-height: 1.1;
}

.auth-message {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-family: var(--font-secondary);
  letter-spacing: 0.02em;
}

.auth-benefits {
  background: rgba(0,0,0,0.6);
  border: 1.5px solid rgba(162,155,254,0.25);
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
  box-shadow: 
    inset 0 0 20px rgba(162,155,254,0.04),
    0 6px 16px rgba(0,0,0,0.4);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-icon {
  color: #a29bfe;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 20px;
  text-shadow: 0 0 12px rgba(162,155,254,0.9);
}

.benefit-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  line-height: 1.5;
  font-family: var(--font-secondary);
  letter-spacing: 0.01em;
}

.btn-google-signin {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: rgba(255,255,255,0.97);
  color: #111;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 16px rgba(0,0,0,0.5),
    0 0 20px rgba(255,255,255,0.12);
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.btn-google-signin svg {
  width: 18px;
  height: 18px;
}

.btn-google-signin:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 
    0 6px 20px rgba(0,0,0,0.6),
    0 0 26px rgba(255,255,255,0.18);
}

.btn-google-signin:active {
  transform: translateY(-1px);
}

.auth-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.5;
  font-family: var(--font-secondary);
  letter-spacing: 0.02em;
}

.auth-note svg {
  color: #a29bfe;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(162,155,254,0.6));
  width: 14px;
  height: 14px;
}

/* Tablet responsive */
@media (max-width: 900px) {
  .auth-required-screen {
    padding: 1.25rem 1rem;
  }

  .auth-card {
    padding: 1.75rem 1.75rem;
    max-width: 400px;
  }

  .auth-icon {
    width: 65px;
    height: 65px;
  }

  .auth-icon svg {
    width: 30px;
    height: 30px;
  }

  .auth-card h2 {
    font-size: 1.6rem;
  }

  .auth-message {
    font-size: 0.82rem;
  }

  .benefit-text {
    font-size: 0.78rem;
  }
}

/* Mobile responsive */
@media (max-width: 600px) {
  .auth-required-screen {
    padding: 1rem 0.75rem;
  }

  .auth-card {
    padding: 1.5rem 1.5rem;
    border-radius: 16px;
    max-width: 100%;
  }

  .auth-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .auth-icon svg {
    width: 28px;
    height: 28px;
  }

  .auth-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .auth-message {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
  }

  .auth-benefits {
    padding: 1rem 1rem;
    margin-bottom: 1.25rem;
  }

  .benefit-item {
    padding: 0.6rem 0;
    gap: 0.65rem;
  }

  .benefit-icon {
    font-size: 1rem;
    min-width: 18px;
  }

  .benefit-text {
    font-size: 0.75rem;
  }

  .btn-google-signin {
    padding: 0.85rem 1.25rem;
    font-size: 0.7rem;
    gap: 0.65rem;
  }

  .btn-google-signin svg {
    width: 16px;
    height: 16px;
  }

  .auth-note {
    margin-top: 1rem;
    font-size: 0.7rem;
  }

  .auth-note svg {
    width: 12px;
    height: 12px;
  }
}

/* Extra small mobile */
@media (max-width: 400px) {
  .auth-card {
    padding: 1.25rem 1.25rem;
  }

  .auth-icon {
    width: 55px;
    height: 55px;
  }

  .auth-icon svg {
    width: 26px;
    height: 26px;
  }

  .auth-card h2 {
    font-size: 1.35rem;
  }

  .auth-message {
    font-size: 0.75rem;
  }

  .benefit-text {
    font-size: 0.72rem;
  }

  .btn-google-signin {
    padding: 0.8rem 1.15rem;
    font-size: 0.68rem;
  }
}


/* ── Large Group Notice ── */
.large-group-notice {
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(162,155,254,0.06);
  border: 1px solid rgba(162,155,254,0.25);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.lgn-icon {
  color: #a29bfe;
  flex-shrink: 0;
  margin-top: 1px;
  filter: drop-shadow(0 0 5px rgba(162,155,254,0.5));
}
.lgn-text {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-secondary);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lgn-text strong {
  color: #a29bfe;
  font-weight: 600;
}
.lgn-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.lgn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(162,155,254,0.35);
  border-radius: 999px;
  color: #a29bfe;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-secondary);
  transition: all 0.2s;
  background: rgba(162,155,254,0.05);
}
.lgn-link:hover {
  background: rgba(162,155,254,0.12);
  border-color: rgba(162,155,254,0.6);
  color: #c4bffe;
}

/* Extra hours conflict warning */
.extra-hours-conflict {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255,100,60,0.08);
  border: 1px solid rgba(255,100,60,0.3);
  border-radius: 8px;
  font-size: 0.62rem;
  color: rgba(255,140,100,0.9);
  font-family: var(--font-secondary);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.extra-hours-conflict svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255,120,80,0.9);
}
.extra-hours-select:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* T&C checkbox in payment step */
.tnc-wrap {
  margin-top: 0.8rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.tnc-wrap input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #a29bfe;
  cursor: pointer;
}
.tnc-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-secondary);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.tnc-label a {
  color: #a29bfe;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tnc-label a:hover {
  color: #c4bffe;
}
