

/* ---------- Deduped keyframes & small fixes ---------- */
@keyframes shimmer-btn {
    0% { left: -75%; }
    100% { left: 125%; }
}
@keyframes shimmer-ex {
  0% { left: -60%; }
  100% { left: 120%; }
}

.graph-chart img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
    display: block;
    margin: 0 auto;
}
.disclaimer-marquee {
    font-size: 12px;
    color: white;
    margin-top: 10px;
    padding: 5px 0;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
}

.custom-leaderboard-btn {
    position: relative;
    background-color: #ddad67;
    color: black;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    flex: 1 1 180px;
    min-width: 180px;
    max-width: 220px;
}
.custom-leaderboard-btn:hover {
    background-color: #c99a58;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.custom-leaderboard-btn span {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.custom-leaderboard-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer-btn 2.5s infinite;
    z-index: 1;
}
.custom-leaderboard-btn::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 0;
}

@media (max-width: 991px) {
    .button-container { flex-direction: row; flex-wrap: wrap; gap: 10px; padding: 15px 0; }
    .custom-leaderboard-btn { font-size: 13px; padding: 9px 18px; min-width: 160px; max-width: 200px; flex: 1 1 45%; }
    .banner-section .title { font-size: 1.8rem; }
    .banner-section .subtext { font-size: 0.9rem; }
}
@media (max-width: 768px) {
    .button-container { flex-direction: column; gap: 8px; padding: 12px 0; }
    .custom-leaderboard-btn { font-size: 13px; padding: 8px 16px; min-width: 250px; max-width: 100%; flex: 1 1 100%; }
    .banner-section .title { font-size: 1.6rem; }
    .banner-section .subtext { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .custom-leaderboard-btn { font-size: 14px; padding: 10px 18px; min-width: 240px; }
    .button-container { padding: 10px 0; }
    .banner-section .title { font-size: 1.4rem; }
    .banner-section .subtext { font-size: 0.8rem; }
    .graph-chart img { max-width: 100%; height: auto; }
}

.exclusive-card { position: relative; overflow: hidden; }
.exclusive-card::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shimmer-ex 1.8s infinite;
  z-index: 1;
}
.exclusive-card > * { position: relative; z-index: 2; }

.video-thumb { transition: transform 0.4s ease, filter 0.4s ease; height: 340px; object-fit: cover; border-radius: 12px; }
.video-wrapper:hover .video-thumb { transform: scale(1.05); filter: brightness(1.2); }
.glow { position: relative; display: inline-block; border-radius: 50%; z-index: 2; }
.glow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(245,179,66,0.4) 20%, transparent 80%);
  border-radius: 50%;
  z-index: -1;
  animation: pulseGlow 2s infinite ease-in-out;
}
.glow-icon { display: block; border-radius: 50%; box-shadow: 0 0 10px rgba(0,0,0,0.6); }
@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.gallery-wrapper { position: relative; display: block; overflow: hidden; border-radius: 12px; transition: transform 0.3s ease; }
.gallery-wrapper:hover img { transform: scale(1.05); filter: brightness(1.1); }
.gallery-img { transition: transform 0.4s ease, filter 0.4s ease; border-radius: 12px; object-fit: cover; height: 100%; }

/* ---------- Membership & Scoreboard (BBL) styles ---------- */
:root {
    --bbl-gold: #ddad67;
    --bbl-gold-glow: rgba(221, 173, 103, 0.5);
    --bbl-black: #0f1115;
}

.membership-sec { background: radial-gradient(circle at 50% 0%, #ffffffff 0%, #f4f4f4 40%); padding: 80px 0; font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; }
.membership-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 20px; position: relative; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); height: 100%; display: flex; flex-direction: column; }
.membership-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(221,173,103,0.2); border-color: var(--bbl-gold); }
.membership-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-25deg); transition: 0.5s; pointer-events: none; }
.membership-card:hover::after { left: 150%; transition: 0.7s; }
.card-body-custom { padding: 2.5rem 2rem; flex: 1; display: flex; flex-direction: column; z-index: 2; }
.plan-role-badge { background: rgba(17,17,17,0.05); color: var(--bbl-black); font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 50px; margin-bottom: 1.5rem; display: inline-block; transition: all 0.3s ease; }
.membership-card:hover .plan-role-badge { background-color: var(--bbl-gold); color: #fff; box-shadow: 0 5px 15px rgba(221,173,103,0.4); }
.member-plan-title { font-size: 1.75rem; font-weight: 800; color: var(--bbl-black); margin-bottom: 0.25rem; }
.price-area { margin: 1.5rem 0; padding-bottom: 1.5rem; border-bottom: 2px dashed #f0f0f0; display: flex; align-items: baseline; gap: 5px; }
.membership-rate { font-size: 3rem; font-weight: 800; color: var(--bbl-black); letter-spacing: -1px; line-height: 1; }
.accessible-points .li-item { display: flex; align-items: flex-start; margin-bottom: 1.2rem; font-size: 0.95rem; color: #444; line-height: 1.5; }
.right-icon { width: 22px; margin-right: 15px; margin-top: 2px; flex-shrink: 0; }
.select-plan-btn { background: var(--bbl-black); color: #fff; width: 100%; padding: 18px; border-radius: 14px; font-weight: 700; border: none; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-top: auto; }
.select-plan-btn:hover { background: var(--bbl-gold); box-shadow: 0 10px 25px rgba(221,173,103,0.4); transform: scale(1.02); }
.select-plan-btn1 { background: var(--bbl-black); color: #fff; width: 100%; padding: 18px; border-radius: 14px; font-weight: 700; border: none; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-top: auto; }
.select-plan-btn1:hover { background: var(--bbl-gold); box-shadow: 0 10px 25px rgba(221,173,103,0.4); transform: scale(1.02); }

.stadium-wrapper { position: relative; margin: 20px auto; max-width: 500px; perspective: 1000px; }
.scoreboard { background: linear-gradient(145deg, #1a1d26, #000000); border: 1px solid #333; border-radius: 30px; padding: 30px 25px; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 60px rgba(0,0,0,0.5); overflow: hidden; }
.scoreboard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%); pointer-events: none; border-radius: 30px 30px 0 0; }
.scoreboard::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(#333 1px, transparent 1px); background-size: 10px 10px; opacity: 0.1; pointer-events: none; z-index: 0; }
.top-strip { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; position: relative; z-index: 2; }
.league-tag { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: #ddad67; border: 1px solid #ddad67; padding: 4px 10px; border-radius: 4px; background: rgba(221,173,103,0.1); }
.main-title { color: #fff; text-align: center; font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; text-shadow: 0 0 10px rgba(255,255,255,0.3); margin-bottom: 5px; position: relative; z-index: 2; }
.sub-title { text-align: center; color: #888; font-size: 0.85rem; margin-bottom: 20px; position: relative; z-index: 2; }
.digits-row, .big-number-wrap { display: flex; justify-content: center; gap: 8px; margin-bottom: 25px; position: relative; z-index: 2; }
.digit { width: clamp(40px, 12vw, 64px); height: clamp(55px, 15vw, 80px); background: #0f1116; border-radius: 8px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 10px rgba(0,0,0,0.9), 0 0 0 1px #333; position: relative; }
.digit-value { font-family: 'Courier New', monospace; font-size: clamp(32px, 10vw, 52px); font-weight: 700; color: #fff; text-shadow: 0 0 5px rgba(255,255,255,0.8), 0 0 10px var(--bbl-gold), 0 0 20px var(--bbl-gold); z-index: 2; }
.digit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.25) 50%), linear-gradient(90deg, rgba(255,0,0,0.06), rgba(0,255,0,0.02), rgba(0,0,255,0.06)); background-size: 100% 2px, 3px 100%; pointer-events: none; z-index: 3; }
.info-row { background: rgba(255,255,255,0.05); padding: 10px 15px; border-radius: 8px; display: flex; justify-content: space-between; font-size: 0.8rem; color: #aaa; margin-bottom: 15px; position: relative; z-index: 2; }
.info-row strong { color: #fff; }
.progress-bar { height: 8px; background: #222; border-radius: 10px; overflow: hidden; margin-bottom: 10px; position: relative; z-index: 2; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--bbl-gold), #fff); box-shadow: 0 0 15px var(--bbl-gold); transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.floodlight { position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(221,173,103,0.3) 0%, transparent 70%); filter: blur(30px); opacity: 0.6; z-index: 1; pointer-events: none; mix-blend-mode: screen; }
.floodlight.left { top: -100px; left: -100px; }
.floodlight.right { top: -100px; right: -100px; background: radial-gradient(circle, rgba(56,189,248,0.3) 0%, transparent 70%); }

/* modal & form */
.modal-content { border: none; border-radius: 24px; overflow: hidden; }
.modal-header-custom { background: var(--bbl-black); padding: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); background-image: url('assets/images/pattern-dark.png'); position: relative; }
.modal-header-custom::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--bbl-gold), transparent); }
.modal-title { color: #fff; font-weight: 800; letter-spacing: 0.5px; }
.modal-body { background: #fff; padding: 2rem !important; }
.form-floating > .form-control, .form-floating > .form-select { height: 56px; font-size: 16px !important; border-radius: 12px; border: 1px solid #e2e5e9; background-color: #f8f9fa; box-shadow: none; }
.form-control:focus, .form-select:focus { background-color: #fff; border-color: var(--bbl-gold); box-shadow: 0 0 0 4px rgba(221,173,103,0.15); }
.btn-gold-outline { height: 56px; font-size: 1rem; letter-spacing: 1.5px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-top: 1rem; box-shadow: 0 8px 20px rgba(0,0,0,0.1); background: var(--bbl-black); color: #fff; border: none; padding: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; width: 100%; margin-top: 10px; }
.btn-gold-outline:hover { background: var(--bbl-gold); color: #fff; box-shadow: 0 10px 20px rgba(221,173,103,0.3); }

@media (max-width: 576px) {
  .modal-dialog { margin: 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; width: 100%; transform: translate(0,0) !important; }
  .modal.fade .modal-dialog { transform: translate(0,100%) !important; transition: transform 0.3s ease-out; }
  .modal.show .modal-dialog { transform: translate(0,0) !important; }
  .modal-content { border-radius: 24px 24px 0 0 !important; border: none; height: auto; max-height: 90vh; overflow-y: auto; }
  .modal-header-custom::before { content: ''; display: block; width: 40px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 10px; margin: -10px auto 15px auto; }
  .modal-body { padding: 1.5rem !important; padding-bottom: 2.5rem !important; }
}
@media (max-width: 768px) {
  .membership-sec { padding: 50px 0; }
  .card-body-custom { padding: 2rem 1.5rem; }
  .membership-rate { font-size: 2.5rem; }
  .modal-header-custom { padding: 1.5rem; }
  .modal-body { padding: 1.5rem !important; }
  .form-floating { margin-bottom: 12px !important; }
  .stadium-wrapper { margin-bottom: 30px; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .digits-row { gap: 4px; }
  .scoreboard { padding: 20px 15px; }
}

/* ================= BB COMING SOON POPUP ================= */
:root {
  --bb-gold-primary: #ddad67;
  --bb-gold-light: #fbf5b7;
  --bb-gold-dark: #8a6218;
  --bb-bg-deep: #050505;
  --bb-card-bg: #0f0f0f;
}
.bb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 20px; animation: bbFadeIn 0.6s ease-out forwards; }
.bb-popup { position: relative; width: 100%; max-width: 480px; background: var(--bb-card-bg); border: 1px solid rgba(212,175,55,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px rgba(212,175,55,0.1); text-align: center; border-radius: 12px; overflow: hidden; transform: translateY(20px); opacity: 0; animation: bbSlideUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s forwards; }
.bb-popup::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--bb-gold-primary), transparent); z-index: 3; }
#confetti-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.bb-content { position: relative; z-index: 2; padding: 50px 30px; }
.bb-brand { font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 3px; color: #666; text-transform: uppercase; margin-bottom: 20px; }
.bb-title { font-family: 'Playfair Display', serif; font-size: 48px; line-height: 1.1; font-weight: 700; margin-bottom: 15px; background: linear-gradient(135deg, var(--bb-gold-light) 10%, var(--bb-gold-primary) 50%, var(--bb-gold-dark) 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 2px 10px rgba(212,175,55,0.25)); }
.bb-tagline { font-size: 14px; color: #ccc; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 35px; }
.bb-dates { display: inline-block; padding: 12px 25px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.25); border-radius: 50px; margin-bottom: 30px; }
.bb-dates span { font-family: 'Cinzel', serif; font-size: 16px; color: #fff; font-weight: 700; }
.bb-dates small { display: block; font-size: 11px; color: var(--bb-gold-primary); letter-spacing: 2px; margin-top: 4px; }
.bb-link { font-size: 12px; color: #777; letter-spacing: 1px; text-decoration: none; }
.bb-link:hover { color: var(--bb-gold-primary); }
.bb-close { position: absolute; top: 15px; right: 15px; width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(0,0,0,0.3); color: #fff; font-size: 20px; cursor: pointer; z-index: 5; }
.bb-close:hover { background: var(--bb-gold-primary); color: #000; }
@keyframes bbFadeIn { to { opacity: 1; } }
@keyframes bbSlideUp { to { transform: translateY(0); opacity: 1; } }
@media (max-width: 480px) { .bb-title { font-size: 36px; } .bb-content { padding: 40px 20px; } }

/* ================= FAQ ================= */
.bbl-faq-section { background: radial-gradient(circle at top, #121212, #050505); padding: 90px 0; color: #fff; font-family: 'Inter', serif; }
.bbl-faq-header { text-align: center; margin-bottom: 60px; }
.bbl-faq-tag { display: inline-block; font-size: 11px; letter-spacing: 3px; color: #ddad67; border: 1px solid rgba(212,175,55,0.4); padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.bbl-faq-title { font-family: 'Inter', serif; font-size: 42px; margin-bottom: 15px; }
.bbl-faq-title span { color: #ddad67; }
.bbl-faq-subtitle { font-size: 15px; color: #aaa; max-width: 600px; margin: auto; }
.bbl-faq-list { max-width: 900px; margin: auto; }
.bbl-faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.25); border-radius: 14px; margin-bottom: 16px; overflow: hidden; backdrop-filter: blur(8px); box-shadow: 0 15px 40px rgba(0,0,0,0.6); }
.bbl-faq-question { width: 100%; background: transparent; color: #fff; padding: 22px 26px; font-size: 16px; font-weight: 500; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.bbl-faq-question .icon { font-size: 22px; color: #ddad67; transition: transform 0.3s ease; }
.bbl-faq-item.active .icon { transform: rotate(45deg); }
.bbl-faq-answer { max-height: 0; overflow: hidden; padding: 0 26px; color: #ccc; font-size: 15px; line-height: 1.7; transition: max-height 0.4s ease, padding 0.4s ease; }
.bbl-faq-item.active .bbl-faq-answer { max-height: 300px; padding: 0 26px 22px; }
@media (max-width: 576px) { .bbl-faq-title { font-size: 32px; } }

/* ================= SLOT CALENDAR ================= */
.bbl-dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; vertical-align: middle; margin-right: 4px; }
.bbl-dot-green  { background: #22c55e; }
.bbl-dot-yellow { background: #eab308; }
.bbl-dot-red    { background: #ef4444; }

.bbl-calendar-wrap {
  background: #f8f9fa;
  border: 1px solid #e2e5e9;
  border-radius: 16px;
  padding: 18px 16px 12px;
}
.bbl-cal-nav-btn {
  background: #0f1115;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 34px; height: 34px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.bbl-cal-nav-btn:hover { background: #ddad67; }
.bbl-cal-nav-btn:disabled { background: #ccc; cursor: not-allowed; }

.bbl-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.bbl-cal-header > div {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  padding: 4px 0;
}

.bbl-cal-day {
  aspect-ratio: 1/1;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  position: relative;
  min-height: 48px;
  user-select: none;
}
.bbl-cal-day .day-num { font-size: 14px; line-height: 1; }
.bbl-cal-day .day-rem { font-size: 9px; font-weight: 500; margin-top: 2px; opacity: 0.85; }

.bbl-day-available { background: #dcfce7; color: #15803d; border-color: #86efac; }
.bbl-day-available:hover { background: #22c55e; color: #fff; border-color: #16a34a; transform: scale(1.06); }
.bbl-day-filling { background: #fef9c3; color: #92400e; border-color: #fde047; }
.bbl-day-filling:hover { background: #eab308; color: #fff; border-color: #ca8a04; transform: scale(1.06); }
.bbl-day-full { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; cursor: not-allowed; opacity: 0.7; }
.bbl-day-past, .bbl-day-empty { background: transparent; color: #ccc; cursor: default; border-color: transparent; }
.bbl-day-past { text-decoration: line-through; }

.bbl-cal-day.bbl-selected {
  background: #0f1115 !important;
  color: #ddad67 !important;
  border-color: #ddad67 !important;
  box-shadow: 0 4px 12px rgba(221,173,103,0.35);
  transform: scale(1.08) !important;
}

.bbl-cal-loading { grid-column: 1 / -1; text-align: center; color: #aaa; padding: 20px 0; font-size: 13px; }

.bbl-selected-info {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #15803d;
  font-weight: 600;
}

@media (max-width: 480px) {
  .bbl-cal-day { min-height: 40px; font-size: 11px; border-radius: 7px; }
  .bbl-cal-day .day-num { font-size: 12px; }
  .bbl-cal-day .day-rem { font-size: 8px; }
  .bbl-cal-grid { gap: 3px; }
}






  .bbl-terms-box {
  border: 1px solid rgba(221, 173, 103, 0.35);
  background: rgba(221, 173, 103, 0.08);
  border-radius: 14px;
  padding: 13px 14px;
}

.bbl-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bbl-terms-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #ddad67;
  cursor: pointer;
  flex-shrink: 0;
}

.bbl-terms-row label {
  font-size: 13.5px;
  line-height: 1.45;
  color: #1a1a1a;
  margin: 0;
  cursor: pointer;
}

.bbl-terms-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #b98235;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.bbl-terms-link:hover {
  color: #8c5b1f;
}

.bbl-terms-error {
  display: none;
  font-size: 12px;
  margin-top: 8px;
  color: #dc3545;
}

.bbl-terms-box.is-invalid {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.06);
}

.bbl-terms-box.is-invalid .bbl-terms-error {
  display: block;
}

/* Terms modal */
.bbl-terms-modal {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
}

.bbl-terms-body {
  max-height: 65vh;
  overflow-y: auto;
  padding: 22px;
  color: #1a1a1a;
}

.bbl-terms-body h6 {
  font-size: 15px;
  font-weight: 800;
  margin: 18px 0 8px;
  color: #111;
}

.bbl-terms-body h6:first-child {
  margin-top: 0;
}

.bbl-terms-body p,
.bbl-terms-body li {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.bbl-terms-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.bbl-terms-footer-note {
  margin-top: 20px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f8f3ea;
  border: 1px solid rgba(221, 173, 103, 0.35);
  font-size: 13.5px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bbl-terms-footer-note i {
  color: #b98235;
}

.bbl-terms-modal-footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 14px 18px;
}

.bbl-terms-accept-btn {
  width: auto;
  min-width: 160px;
  padding: 11px 18px;
}

@media (max-width: 575px) {
  .bbl-terms-body {
    max-height: 62vh;
    padding: 18px;
  }

  .bbl-terms-body p,
  .bbl-terms-body li {
    font-size: 13.5px;
  }

  .bbl-terms-accept-btn {
    width: 100%;
  }
}







/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Modal shell ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 92vh;          /* never taller than viewport */
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Sticky header ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.modal-header-custom {
  background: var(--bbl-black);
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background-image: url('assets/images/pattern-dark.png');
  position: relative;
  flex-shrink: 0;            /* never compress */
}
.modal-header-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--bbl-gold), transparent);
}
.modal-title  { color: #fff; font-weight: 800; letter-spacing: 0.5px; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Scrollable body ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.modal-body {
  background: #fff;
  padding: 1.75rem !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
}

/* Custom thin scroll bar (desktop) */
.modal-body::-webkit-scrollbar { width: 5px; }
.modal-body::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.modal-body::-webkit-scrollbar-thumb { background: var(--bbl-gold); border-radius: 10px; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Form inputs ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.form-floating > .form-control,
.form-floating > .form-select {
  height: 54px;
  font-size: 16px !important;
  border-radius: 12px;
  border: 1.5px solid #e2e5e9;
  background-color: #f8f9fa;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: var(--bbl-gold);
  box-shadow: 0 0 0 3px rgba(221,173,103,0.18);
}
.form-floating > label { font-size: 14px; color: #888; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Pay button ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.btn-gold-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  margin-top: 12px;
  border: none;
  border-radius: 14px;
  background: var(--bbl-black);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .15s;
}
.btn-gold-outline:hover {
  background: var(--bbl-gold);
  box-shadow: 0 8px 20px rgba(221,173,103,0.35);
  transform: translateY(-1px);
}
.btn-gold-outline:active { transform: translateY(0); }
.btn-gold-outline:disabled {
  opacity: .65;
  pointer-events: none;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Invalid state ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}
.invalid-feedback { font-size: 12px; color: #ef4444; margin-top: 4px; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Section divider ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.bbl-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bbl-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Calendar styles ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.bbl-dot { display:inline-block; width:10px; height:10px; border-radius:50%; vertical-align:middle; margin-right:4px; }
.bbl-dot-green  { background:#22c55e; }
.bbl-dot-yellow { background:#eab308; }
.bbl-dot-red    { background:#ef4444; }

.bbl-calendar-wrap {
  background: #f8f9fa;
  border: 1.5px solid #e2e5e9;
  border-radius: 14px;
  padding: 14px 12px 10px;
  margin-bottom: 10px;
}

.bbl-cal-nav-btn {
  background: var(--bbl-black);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 32px; height: 32px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.bbl-cal-nav-btn:hover  { background: var(--bbl-gold); }
.bbl-cal-nav-btn:disabled { background: #ddd; cursor: not-allowed; }

.bbl-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bbl-cal-header > div {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  padding: 4px 0 6px;
}

.bbl-cal-day {
  aspect-ratio: 1/1;
  min-height: 44px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .15s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.bbl-cal-day .day-num { font-size: 13px; line-height: 1; }
.bbl-cal-day .day-rem { font-size: 8px; font-weight: 500; margin-top: 2px; opacity: .85; }

.bbl-day-available { background:#dcfce7; color:#15803d; border-color:#86efac; }
.bbl-day-available:hover,
.bbl-day-available:active { background:#22c55e; color:#fff; border-color:#16a34a; transform:scale(1.06); }

.bbl-day-filling { background:#fef9c3; color:#92400e; border-color:#fde047; }
.bbl-day-filling:hover,
.bbl-day-filling:active { background:#eab308; color:#fff; border-color:#ca8a04; transform:scale(1.06); }

.bbl-day-full { background:#fee2e2; color:#b91c1c; border-color:#fca5a5; cursor:not-allowed; opacity:.65; }
.bbl-day-past, .bbl-day-empty { background:transparent; color:#ccc; cursor:default; border-color:transparent; }
.bbl-day-past { text-decoration:line-through; }
.bbl-day-nodata { background:#f1f5f9; color:#94a3b8; border-color:#e2e8f0; cursor:not-allowed; }

.bbl-cal-day.bbl-selected {
  background: var(--bbl-black) !important;
  color: var(--bbl-gold) !important;
  border-color: var(--bbl-gold) !important;
  box-shadow: 0 3px 10px rgba(221,173,103,.3);
  transform: scale(1.08) !important;
}

.bbl-cal-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #aaa;
  padding: 18px 0;
  font-size: 13px;
}

.bbl-selected-info {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #15803d;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.bbl-selected-info .slot-count {
  font-size: 12px;
  color: #166534;
  font-weight: 500;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Legend row ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.bbl-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 11px;
  color: #666;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬
   MOBILE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â bottom sheet (ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤576px)
   ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 576px) {
  /* Modal sits at the bottom */
  .modal-dialog {
    margin: 0 !important;
    position: fixed !important;
    bottom: 0; left: 0; right: 0;
    max-width: 100% !important;
    width: 100% !important;
  }
  .modal.fade .modal-dialog {
    transform: translateY(100%) !important;
    transition: transform .3s cubic-bezier(.4,0,.2,1) !important;
  }
  .modal.show .modal-dialog {
    transform: translateY(0) !important;
  }

  /* Rounded top corners only */
  .modal-content {
    border-radius: 22px 22px 0 0 !important;
    max-height: 93vh;
  }

  /* Drag handle */
  .modal-header-custom::before {
    content: '';
    display: block;
    width: 38px; height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    margin: 0 auto 14px;
  }

  .modal-header-custom { padding: 1rem 1.25rem; }
  .modal-body { padding: 1.25rem !important; padding-bottom: 2rem !important; }

  /* Bigger touch targets for calendar cells */
  .bbl-cal-day { min-height: 40px; border-radius: 7px; }
  .bbl-cal-day .day-num { font-size: 12px; }
  .bbl-cal-day .day-rem { font-size: 7px; }
  .bbl-cal-grid { gap: 3px; }

  /* Stack form rows vertically */
  .row.g-3 > [class*="col-md-6"] { width: 100% !important; }

  /* Pay button full width + taller tap target */
  .btn-gold-outline { padding: 18px; font-size: 1.05rem; border-radius: 16px; }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Small phones ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 380px) {
  .bbl-cal-day { min-height: 36px; }
  .bbl-cal-day .day-num { font-size: 11px; }
  .bbl-cal-day .day-rem { display: none; }   /* hide "X left" on very small screens */
  .modal-header-custom h4 { font-size: 1.1rem; }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Tablet/desktop ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (min-width: 577px) {
  .modal-dialog { max-width: 580px; }
  .modal-content { max-height: 90vh; }
}


.bbl-location-address {
  width: 100%;
  max-width: 420px;
  margin: 18px auto 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f4f4f4;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: #1a1a1a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  text-align: left;
}

.bbl-location-address i {
  color: #c9972f;
  font-size: 15px;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
}

.bbl-location-address span {
  display: block;
  flex: 1;
}

.bbl-location-btn {
  width: fit-content;
  min-width: 242px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e3bd63, #b88625);
  color: #000000;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 28px rgba(184, 134, 37, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bbl-location-btn:hover {
  transform: translateY(-2px);
  color: #000000;
  text-decoration: none;
  background: linear-gradient(135deg, #efc96a, #c9962e);
  box-shadow: 0 16px 34px rgba(184, 134, 37, 0.3);
}

.bbl-location-btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.bbl-location-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 575px) {
  .bbl-location-address {
    max-width: 100%;
    margin: 16px auto 12px;
    padding: 13px 14px;
    font-size: 13px;
  }

  .bbl-location-btn {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
    font-size: 13px;
  }
}






 .query-help-btn {
  gap: 8px;
}

.query-help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.query-help-section {
  width: 100%;
  padding: 28px 16px;
  background: #f8f8f8;
}

.query-help-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.query-help-text {
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.query-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 24px;
  border-radius: 999px;

  background: black;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 10px 24px rgba(221, 173, 103, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.query-help-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(221, 173, 103, 0.45);
}

.query-help-btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .query-help-section {
    padding: 22px 14px;
  }

  .query-help-inner {
    padding: 22px 18px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .query-help-text {
    font-size: 16px;
  }

  .query-help-btn {
    width: 100%;
    max-width: 260px;
  }
}






/* Old duplicate BCL poster CSS removed to prevent mobile/tablet conflicts. */





.floating-call-btn {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;
  border-radius: 999px;

  background: black;
  color: white;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-call-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.floating-call-btn:active {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .floating-call-btn {
    right: 14px;
    bottom: 16px;
    padding: 13px 18px;
    font-size: 14px;
  }
}




    /* ================= SINGLE PLAN + PREMIUM BENEFITS ================= */

.premium-plan-card {
  border: 1px solid rgba(221, 173, 103, 0.45);
  box-shadow: 0 20px 55px rgba(221, 173, 103, 0.16);
}

.limited-slot-box {
  margin: 10px 0 18px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(221,173,103,0.16), rgba(221,173,103,0.05));
  border: 1px solid rgba(221,173,103,0.32);
  color: #8a6218;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bcl-benefits-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(221,173,103,0.22), transparent 32%),
    linear-gradient(145deg, #101217, #050505);
  color: #fff;
  border: 1px solid rgba(221,173,103,0.32);
  box-shadow: 0 24px 65px rgba(0,0,0,0.35);
}

.bcl-benefits-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.16;
  pointer-events: none;
}

.bcl-benefits-card > * {
  position: relative;
  z-index: 2;
}

.bcl-benefits-header {
  margin-bottom: 24px;
}

.bcl-small-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(221,173,103,0.14);
  border: 1px solid rgba(221,173,103,0.42);
  color: #ddad67;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bcl-benefits-header h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
}

.bcl-benefits-header p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.7;
}

.bcl-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bcl-benefit-item {
  display: flex;
  gap: 13px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.bcl-benefit-item:hover {
  transform: translateY(-4px);
  background: rgba(221,173,103,0.11);
  border-color: rgba(221,173,103,0.36);
}

.bcl-benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(221,173,103,0.26), rgba(221,173,103,0.06));
  font-size: 22px;
}

.bcl-benefit-item h4 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.bcl-benefit-item p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.5;
}

.bcl-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.bcl-highlight-box {
  padding: 16px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(221,173,103,0.18), rgba(255,255,255,0.04));
  border: 1px solid rgba(221,173,103,0.25);
  text-align: center;
}

.bcl-highlight-box strong {
  display: block;
  margin-bottom: 6px;
  color: #ddad67;
  font-size: 16px;
  font-weight: 900;
}

.bcl-highlight-box span {
  display: block;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.4;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 991px) {
  .bcl-benefits-card {
    padding: 26px;
  }

  .bcl-benefits-header h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .bcl-benefits-grid {
    grid-template-columns: 1fr;
  }

  .bcl-highlight-row {
    grid-template-columns: 1fr;
  }

  .bcl-benefits-card {
    padding: 24px 18px;
  }

  .bcl-benefits-header h3 {
    font-size: 24px;
  }

  .bcl-benefits-header p {
    font-size: 14px;
  }

  .bcl-benefit-item {
    padding: 14px;
    border-radius: 16px;
  }

  .bcl-benefit-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 20px;
  }

  .bcl-benefit-item h4 {
    font-size: 14px;
  }

  .bcl-benefit-item p {
    font-size: 12.5px;
  }

  .bcl-small-tag {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .bcl-benefits-card {
    border-radius: 20px;
    padding: 22px 16px;
  }

  .bcl-benefits-header h3 {
    font-size: 22px;
  }

  .bcl-highlight-box {
    padding: 14px 12px;
  }

  .limited-slot-box {
    font-size: 12px;
    padding: 10px 12px;
  }
}


.registration-countdown-box {
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(221, 173, 103, 0.45);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.countdown-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--bbl-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.registration-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.countdown-item {
  background: linear-gradient(180deg, rgba(221, 173, 103, 0.18), rgba(221, 173, 103, 0.05));
  border: 1px solid rgba(221, 173, 103, 0.28);
  border-radius: 18px;
  padding: 18px 8px;
}

.countdown-item strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.countdown-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.countdown-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.registration-disabled-card {
  opacity: 0.72;
}

.registration-closed-btn {
  cursor: not-allowed !important;
  opacity: 0.7;
  background: #555 !important;
  color: #fff !important;
  pointer-events: none;
}

@media screen and (max-width: 575px) {
  .registration-countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-item strong {
    font-size: 28px;
  }
}

/* ============================================================
   FINAL BCL POSTER SECTION CSS
   Desktop: Image 1 | Registration Card | Image 2
   Tablet: Responsive 3-column/stack-safe layout
   Mobile: 2 poster image swiper first + registration card after
   Notes:
   - Keep only this poster block. Do not add older .bcl-poster-image-* rules below this.
============================================================ */

.bcl-poster-image-section {
  position: relative;
  padding: 88px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(221, 173, 103, 0.22), transparent 30%),
    radial-gradient(circle at 82% 92%, rgba(221, 173, 103, 0.14), transparent 32%),
    linear-gradient(145deg, #030303, #111318 55%, #050505);
}

.bcl-poster-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  pointer-events: none;
}

.bcl-poster-image-section::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(221, 173, 103, 0.16), transparent 70%);
  filter: blur(32px);
  pointer-events: none;
}

.bcl-poster-container {
  position: relative;
  z-index: 2;
  margin-top: 5%;
}

.bcl-poster-section-head {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.bcl-poster-mini-title {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(221, 173, 103, 0.12);
  border: 1px solid rgba(221, 173, 103, 0.42);
  color: #ddad67;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(221, 173, 103, 0.08);
}

.bcl-poster-image-row {
  position: relative;
  z-index: 2;
}

.bcl-mobile-poster-slider {
  display: none;
}

.bcl-poster-image-wrap {
  position: relative;
  width: 100%;
  height: clamp(610px, 58vw, 760px);
  padding: 9px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(#070707, #070707) padding-box,
    linear-gradient(
      135deg,
      rgba(255, 238, 175, 1),
      rgba(221, 173, 103, 1),
      rgba(255, 255, 255, 0.18),
      rgba(221, 173, 103, 0.85),
      rgba(255, 238, 175, 1)
    ) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.72),
    0 0 38px rgba(221, 173, 103, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: bclPosterFloat 5.5s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.bcl-poster-right {
  animation-delay: 0.8s;
}

.bcl-poster-image-wrap::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 45%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.18) 55%,
    transparent 65%
  );
  transform: translateX(-85%) rotate(12deg);
  animation: bclPosterShine 4.5s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

.bcl-poster-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent 22%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 2;
}

.bcl-corner-glow {
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(221, 173, 103, 0.32), transparent 65%);
  filter: blur(22px);
  opacity: 0.9;
  z-index: 0;
  animation: bclPulseGlow 3.2s ease-in-out infinite;
}

.bcl-poster-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 21px;
  background:
    radial-gradient(circle at center, rgba(221, 173, 103, 0.08), transparent 42%),
    #050505;
  transition: transform 0.45s ease, filter 0.45s ease;
}

/* Desktop hover only */
@media (hover: hover) and (pointer: fine) {
  .bcl-poster-image-wrap:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
      0 36px 95px rgba(0, 0, 0, 0.82),
      0 0 55px rgba(221, 173, 103, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    filter: saturate(1.08);
  }

  .bcl-poster-image-wrap:hover .bcl-poster-image {
    transform: scale(1.018);
    filter: brightness(1.05) contrast(1.04);
  }
}

/* Mobile/touch: disable hover scale to prevent image cut */
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .bcl-poster-image-wrap:hover,
  .bcl-poster-image-wrap:active,
  .bcl-poster-image-wrap:focus {
    transform: none !important;
    filter: none !important;
  }

  .bcl-poster-image-wrap:hover .bcl-poster-image,
  .bcl-poster-image-wrap:active .bcl-poster-image,
  .bcl-poster-image-wrap:focus .bcl-poster-image {
    transform: none !important;
    filter: none !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    overflow: hidden !important;
    transform: none !important;
    filter: none !important;
  }

  .bcl-mobile-slide .bcl-poster-image {
    transform: none !important;
    filter: none !important;
    object-fit: contain !important;
    object-position: center top !important;
  }
}



.bcl-card-crown {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 112px;
  opacity: 0.1;
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 1;
}

.bcl-poster-middle-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(221, 173, 103, 0.42);
  background:
    radial-gradient(circle at top right, rgba(221, 173, 103, 0.16), transparent 34%),
    #ffffff;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.18),
    0 0 36px rgba(221, 173, 103, 0.18);
}

.bcl-poster-middle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 36%),
    radial-gradient(circle at bottom left, rgba(221, 173, 103, 0.14), transparent 36%);
  pointer-events: none;
  z-index: 1;
}

.bcl-poster-middle-card .card-body-custom {
  position: relative;
  z-index: 2;
}

@keyframes bclPosterFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bclPosterShine {
  0% { transform: translateX(-85%) rotate(12deg); opacity: 0; }
  28% { opacity: 0; }
  45% { opacity: 1; }
  70% { transform: translateX(85%) rotate(12deg); opacity: 0; }
  100% { transform: translateX(85%) rotate(12deg); opacity: 0; }
}

@keyframes bclPulseGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes bclMobileBtnShine {
  0% { left: -80%; }
  100% { left: 130%; }
}

/* Large tablets / small laptops */
@media (max-width: 1199px) and (min-width: 992px) {
  .bcl-poster-image-wrap {
    height: 650px;
  }

  .bcl-poster-middle-card .card-body-custom {
    padding: 2rem 1.45rem;
  }

  .bcl-poster-middle-card .membership-rate {
    font-size: 2.55rem;
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 769px) {
  .bcl-poster-image-section {
    padding: 68px 0;
  }

  .bcl-poster-container {
    margin-top: 3%;
  }

  .bcl-poster-image-wrap {
    height: 620px;
  }

  .bcl-poster-middle-card .card-body-custom {
    padding: 2rem 1.35rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .bcl-poster-image-section {
    padding: 76px 0 48px !important;
    overflow: hidden !important;
  }

  .bcl-poster-container {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .bcl-poster-section-head {
    margin-top: 40px !important;
    margin-bottom: 22px !important;
    padding: 0 16px !important;
  }

  .bcl-poster-mini-title {
    margin-top: 0 !important;
    display: inline-block !important;
    max-width: 100%;
    font-size: 12px !important;
    line-height: 1.25 !important;
    letter-spacing: 1.2px !important;
    white-space: normal !important;
  }

  .bcl-desktop-poster-col {
    display: none !important;
  }

  .bcl-mobile-poster-slider {
    display: block !important;
    position: relative;
    width: 100% !important;
    overflow: hidden !important;
    margin-bottom: 26px !important;
  }

  .bcl-mobile-slider-track {
    display: flex !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px 18px 18px !important;
    align-items: stretch !important;
  }

  .bcl-mobile-slider-track::-webkit-scrollbar {
    display: none !important;
  }

  .bcl-mobile-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 560px !important;
    scroll-snap-align: center !important;
    padding: 0 8px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    max-height: 560px !important;
    padding: 7px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap::after {
    border-radius: 26px !important;
  }

  .bcl-mobile-slide .bcl-poster-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    border-radius: 19px !important;
    background: #050505 !important;
    transform: none !important;
    filter: none !important;
  }

  .bcl-mobile-slide .bcl-corner-glow {
    inset: -10px;
    border-radius: 28px;
  }

  .bcl-mobile-slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .bcl-mobile-slider-dots span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(221, 173, 103, 0.45);
    box-shadow: 0 0 10px rgba(221, 173, 103, 0.28);
  }

  .bcl-mobile-slider-dots span:first-child {
    width: 20px;
    background: #ddad67;
  }

  .bcl-mobile-card-after-slider {
    margin-top: 18px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .bcl-poster-middle-card {
    margin-top: 0 !important;
    border-radius: 24px;
    margin: 16px;
    overflow: hidden !important;
    background:
      radial-gradient(circle at top right, rgba(221, 173, 103, 0.2), transparent 34%),
      linear-gradient(180deg, #ffffff, #fffaf2);
    box-shadow:
      0 24px 65px rgba(0, 0, 0, 0.18),
      0 0 35px rgba(221, 173, 103, 0.24);
  }

  .bcl-card-crown {
    top: 8px !important;
    right: 8px !important;
    width: 90px !important;
    opacity: 0.12 !important;
  }

  .bcl-poster-middle-card .card-body-custom {
    padding: 2.25rem 1.35rem 2rem !important;
  }

  .bcl-poster-middle-card .member-plan-title {
    font-size: 1.55rem;
    line-height: 1.2;
  }

  .bcl-poster-middle-card .membership-rate {
    font-size: 2.45rem;
  }

  .bcl-poster-middle-card .select-plan-btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(15, 17, 21, 0.22);
  }

  .bcl-poster-middle-card .select-plan-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.38),
      transparent
    );
    animation: bclMobileBtnShine 2.4s infinite;
  }

  .floating-call-btn {
    right: 12px !important;
    bottom: 14px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    z-index: 9999 !important;
  }
}

/* Mobile width tuning */
@media (max-width: 480px) {
  .bcl-poster-image-section {
    padding-top: 82px !important;
  }

  .bcl-mobile-slide {
    height: 540px !important;
    padding: 0 7px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 540px !important;
    max-height: 540px !important;
  }

  .bcl-poster-middle-card .card-body-custom {
    padding: 2rem 1.15rem 1.8rem !important;
  }

  .bcl-card-crown {
    width: 82px !important;
  }
}

@media (max-width: 430px) {
  .bcl-mobile-slide {
    height: 520px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 520px !important;
    max-height: 520px !important;
  }
}

@media (max-width: 390px) {
  .bcl-mobile-slide {
    height: 490px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 490px !important;
    max-height: 490px !important;
  }
}

@media (max-width: 360px) {
  .bcl-mobile-slide {
    height: 475px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 475px !important;
    max-height: 475px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bcl-poster-image-wrap,
  .bcl-poster-image-wrap::before,
  .bcl-corner-glow,
  .bcl-poster-middle-card .select-plan-btn::before {
    animation: none !important;
  }

  .bcl-poster-image-wrap,
  .bcl-poster-image {
    transition: none !important;
  }
}

/* ============================================================
   FINAL SAFETY OVERRIDE: Mobile poster fixed-height swiper
   Prevents top cut after swipe/tap and keeps full poster visible.
============================================================ */

@media (max-width: 768px) {
  .bcl-mobile-poster-slider {
    display: block !important;
    overflow: hidden !important;
  }

  .bcl-mobile-slider-track {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    align-items: stretch !important;
    padding-top: 10px !important;
    padding-bottom: 18px !important;
  }

  .bcl-mobile-slide {
    height: 560px !important;
    min-height: 560px !important;
    max-height: 560px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    height: 100% !important;
    min-height: 560px !important;
    max-height: 560px !important;
    overflow: hidden !important;
    transform: none !important;
    filter: none !important;
  }

  .bcl-mobile-slide .bcl-poster-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    transform: none !important;
    filter: none !important;
  }

  .bcl-poster-image-wrap:hover,
  .bcl-poster-image-wrap:active,
  .bcl-poster-image-wrap:focus,
  .bcl-poster-image-wrap:hover .bcl-poster-image,
  .bcl-poster-image-wrap:active .bcl-poster-image,
  .bcl-poster-image-wrap:focus .bcl-poster-image {
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 480px) {
  .bcl-mobile-slide {
    height: 540px !important;
    min-height: 540px !important;
    max-height: 540px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 540px !important;
    max-height: 540px !important;
  }
}

@media (max-width: 430px) {
  .bcl-mobile-slide {
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 520px !important;
    max-height: 520px !important;
  }
}

@media (max-width: 390px) {
  .bcl-mobile-slide {
    height: 490px !important;
    min-height: 490px !important;
    max-height: 490px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 490px !important;
    max-height: 490px !important;
  }
}

@media (max-width: 360px) {
  .bcl-mobile-slide {
    height: 475px !important;
    min-height: 475px !important;
    max-height: 475px !important;
  }

  .bcl-mobile-slide .bcl-poster-image-wrap {
    min-height: 475px !important;
    max-height: 475px !important;
  }
}

/* Benefits inside poster section */
.bcl-poster-benefits-col {
  margin-top: 28px;
}

.bcl-poster-image-section .bcl-benefits-card {
  border-color: rgba(221, 173, 103, 0.42);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 42px rgba(221, 173, 103, 0.18);
}

@media (max-width: 768px) {
  .bcl-poster-benefits-col {
    margin-top: 24px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}


/* FIX: middle premium card hover text visibility */
.bcl-poster-middle-card,
.bcl-poster-middle-card:hover,
.bcl-poster-middle-card:focus,
.bcl-poster-middle-card:active {
  background: #fffaf2 !important;
  color: #0f1115 !important;
  border-color: #ddad67 !important;
}

.bcl-poster-middle-card:hover {
  transform: translateY(-6px) !important;
}

.bcl-poster-middle-card .member-plan-title,
.bcl-poster-middle-card:hover .member-plan-title,
.bcl-poster-middle-card:focus .member-plan-title,
.bcl-poster-middle-card:active .member-plan-title {
  color: #0f1115 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bcl-poster-middle-card .membership-rate,
.bcl-poster-middle-card:hover .membership-rate {
  color: #ddad67 !important;
}

.bcl-poster-middle-card .price-area span,
.bcl-poster-middle-card:hover .price-area span {
  color: #5f6670 !important;
}

.bcl-poster-middle-card .accessible-points,
.bcl-poster-middle-card .accessible-points li,
.bcl-poster-middle-card .accessible-points div,
.bcl-poster-middle-card:hover .accessible-points,
.bcl-poster-middle-card:hover .accessible-points li,
.bcl-poster-middle-card:hover .accessible-points div {
  color: #3f4650 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bcl-poster-middle-card .limited-slot-box,
.bcl-poster-middle-card:hover .limited-slot-box {
  color: #8a5d20 !important;
  background: #fff8ec !important;
  border: 1px solid rgba(221, 173, 103, 0.45) !important;
}

.bcl-poster-middle-card .plan-role-badge,
.bcl-poster-middle-card:hover .plan-role-badge {
  background: linear-gradient(135deg, #ddad67, #c99045) !important;
  color: #ffffff !important;
}

.bcl-poster-middle-card .select-plan-btn,
.bcl-poster-middle-card:hover .select-plan-btn {
  background: #0f1115 !important;
  color: #ffffff !important;
}

.bcl-poster-middle-card .select-plan-btn:hover {
  background: #ddad67 !important;
  color: #0f1115 !important;
}

/* ================= SHOPIFY STYLE REGISTRATION MODAL - FINAL OVERRIDES =================
   Add at the very end so it overrides old gold/dark modal styling.
   Scope is limited to #registrationModal to avoid affecting other site sections.
====================================================================== */

#registrationModal .modal-dialog {
  max-width: 560px;
}

#registrationModal .modal-content {
  border: 0 !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22) !important;
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  max-height: 88vh;
}

#registrationModal .modal-header-custom {
  background: #ffffff !important;
  background-image: none !important;
  border-bottom: 1px solid #e5e7eb !important;
  padding: 22px 24px !important;
  position: relative;
  flex-shrink: 0;
}

#registrationModal .modal-header-custom::after,
#registrationModal .modal-header-custom::before {
  display: none !important;
  content: none !important;
}

#registrationModal .modal-title {
  color: #111827 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
}

/* Important: PHP has btn-close-white, so force dark close icon on white header */
#registrationModal .btn-close,
#registrationModal .btn-close-white {
  filter: none !important;
  opacity: 0.72 !important;
  background-color: transparent !important;
}

#registrationModal .btn-close:hover,
#registrationModal .btn-close-white:hover {
  opacity: 1 !important;
}

#registrationModal .modal-body {
  background: #f6f6f7 !important;
  padding: 18px !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
}

#registrationModal .modal-body::-webkit-scrollbar {
  width: 6px;
}

#registrationModal .modal-body::-webkit-scrollbar-track {
  background: #f1f2f3;
}

#registrationModal .modal-body::-webkit-scrollbar-thumb {
  background: #c9cccf;
  border-radius: 999px;
}

#bblRegistrationForm {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

#registrationModal .bbl-section-label {
  color: #374151 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin: 18px 0 10px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

#registrationModal .bbl-section-label:first-of-type {
  margin-top: 0 !important;
}

#registrationModal .bbl-section-label::after {
  background: #e5e7eb !important;
}

#registrationModal .form-floating > .form-control,
#registrationModal .form-floating > .form-select {
  height: 54px !important;
  border-radius: 10px !important;
  background-color: #ffffff !important;
  border: 1px solid #c9cccf !important;
  color: #111827 !important;
  font-size: 15px !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease !important;
}

#registrationModal .form-floating > label {
  color: #6b7280 !important;
  font-size: 14px !important;
}

#registrationModal .form-control:focus,
#registrationModal .form-select:focus {
  background-color: #ffffff !important;
  border-color: #008060 !important;
  box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.16) !important;
}

#registrationModal .form-control.is-invalid,
#registrationModal .form-select.is-invalid,
#registrationModal .is-invalid {
  border-color: #d72c0d !important;
  box-shadow: 0 0 0 3px rgba(215, 44, 13, 0.12) !important;
}

#registrationModal .invalid-feedback {
  color: #d72c0d !important;
  font-size: 12px !important;
  margin-top: 5px !important;
}

/* Shopify-style inner cards */
#registrationModal .bbl-calendar-wrap,
#registrationModal .bbl-terms-box,
#registrationModal .bbl-location-address,
#registrationModal .bbl-selected-info {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

#registrationModal .bbl-calendar-wrap {
  padding: 14px 12px 12px !important;
}

#registrationModal #calMonthLabel {
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

#registrationModal .bbl-cal-nav-btn {
  width: 34px !important;
  height: 34px !important;
  border-radius: 9px !important;
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid #d1d5db !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

#registrationModal .bbl-cal-nav-btn:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

#registrationModal .bbl-cal-nav-btn:disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
}

#registrationModal .bbl-cal-header > div {
  color: #6b7280 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}

#registrationModal .bbl-cal-day {
  min-height: 44px !important;
  border-radius: 10px !important;
  border: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  color: #374151 !important;
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease !important;
}

#registrationModal .bbl-day-available {
  background: #f0fdf4 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}

#registrationModal .bbl-day-filling {
  background: #fffbeb !important;
  color: #92400e !important;
  border-color: #fde68a !important;
}

#registrationModal .bbl-day-full {
  background: #fef2f2 !important;
  color: #991b1b !important;
  border-color: #fecaca !important;
  cursor: not-allowed !important;
}

#registrationModal .bbl-day-past,
#registrationModal .bbl-day-empty,
#registrationModal .bbl-day-nodata {
  background: #f9fafb !important;
  color: #c0c4cc !important;
  border-color: #f1f2f3 !important;
  cursor: default !important;
}

#registrationModal .bbl-day-available:hover,
#registrationModal .bbl-day-filling:hover {
  transform: scale(1.04) !important;
  border-color: #008060 !important;
}

#registrationModal .bbl-cal-day.bbl-selected {
  background: #008060 !important;
  border-color: #008060 !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0, 128, 96, 0.14) !important;
  transform: scale(1.04) !important;
}

#registrationModal .bbl-selected-info {
  background: #f3fffb !important;
  border-color: #b7f0de !important;
  color: #065f46 !important;
  padding: 11px 13px !important;
}

#registrationModal .bbl-selected-info .slot-count {
  color: #065f46 !important;
}

#registrationModal .bbl-legend {
  color: #6b7280 !important;
  font-size: 11px !important;
  gap: 10px !important;
}

#registrationModal .bbl-terms-box {
  padding: 14px !important;
  margin-bottom: 14px !important;
}

#registrationModal .bbl-terms-row label {
  color: #374151 !important;
  font-size: 13.5px !important;
  line-height: 1.45 !important;
}

#registrationModal .bbl-terms-row input[type="checkbox"] {
  accent-color: #008060 !important;
}

#registrationModal .bbl-terms-link {
  color: #008060 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

#registrationModal .bbl-terms-link:hover {
  color: #006e52 !important;
}

#registrationModal .bbl-terms-box.is-invalid {
  border-color: #d72c0d !important;
  background: #fff4f4 !important;
}

/* Main CTA */
#registrationModal .btn-gold-outline,
#registrationModal #registerPayBtn {
  width: 100% !important;
  min-height: 54px !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 16px 18px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

#registrationModal .btn-gold-outline:hover,
#registrationModal #registerPayBtn:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: none !important;
}

#registrationModal .btn-gold-outline:active,
#registrationModal #registerPayBtn:active {
  background: #005e46 !important;
}

#registrationModal .btn-gold-outline:disabled,
#registrationModal #registerPayBtn:disabled {
  background: #c9cccf !important;
  color: #ffffff !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
}

/* SSL badge */
#registrationModal .d-flex.justify-content-center.align-items-center.gap-2.mt-3 {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 12px !important;
  color: #6b7280 !important;
}

/* Location card and button */
#registrationModal .bbl-location-address {
  max-width: none !important;
  margin: 14px 0 12px !important;
  padding: 14px !important;
  color: #374151 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

#registrationModal .bbl-location-address i {
  color: #008060 !important;
}

#registrationModal .bbl-location-btn {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: #111827 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding: 14px 18px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

#registrationModal .bbl-location-btn:hover {
  background: #000000 !important;
  color: #ffffff !important;
  transform: none !important;
}

/* Mobile Shopify bottom sheet */
@media (max-width: 576px) {
  #registrationModal .modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: translateY(100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  #registrationModal.show .modal-dialog,
  #registrationModal.modal.show .modal-dialog {
    transform: translateY(0) !important;
  }

  #registrationModal .modal-content {
    border-radius: 22px 22px 0 0 !important;
    max-height: 88vh !important;
  }

  #registrationModal .modal-header-custom {
    padding: 18px 18px 14px !important;
    border-bottom-color: #e5e7eb !important;
  }

  #registrationModal .modal-header-custom::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 8px !important;
    left: 50% !important;
    width: 42px !important;
    height: 4px !important;
    transform: translateX(-50%) !important;
    border-radius: 999px !important;
    background: #d1d5db !important;
  }

  #registrationModal .modal-title {
    font-size: 20px !important;
    padding-top: 6px !important;
  }

  #registrationModal .modal-body {
    padding: 14px !important;
  }

  #bblRegistrationForm {
    padding: 16px !important;
    border-radius: 14px !important;
  }

  #registrationModal .row.g-3 {
    --bs-gutter-y: 12px;
  }

  #registrationModal .form-floating > .form-control,
  #registrationModal .form-floating > .form-select {
    height: 56px !important;
    font-size: 16px !important;
  }

  #registrationModal .bbl-section-label {
    margin: 16px 0 9px !important;
  }

  #registrationModal .bbl-calendar-wrap {
    padding: 12px 10px !important;
  }

  #registrationModal .bbl-cal-grid {
    gap: 4px !important;
  }

  #registrationModal .bbl-cal-day {
    min-height: 40px !important;
    border-radius: 8px !important;
  }

  #registrationModal .bbl-cal-day .day-num {
    font-size: 12px !important;
  }

  #registrationModal .bbl-cal-day .day-rem {
    font-size: 7px !important;
  }

  #registrationModal #registerPayBtn {
    position: sticky !important;
    bottom: 0 !important;
    z-index: 20 !important;
    margin-top: 16px !important;
  }
}

@media (max-width: 380px) {
  #registrationModal .modal-title {
    font-size: 18px !important;
  }

  #registrationModal .modal-body {
    padding: 12px !important;
  }

  #bblRegistrationForm {
    padding: 14px !important;
  }

  #registrationModal .bbl-cal-day {
    min-height: 36px !important;
  }

  #registrationModal .bbl-cal-day .day-rem {
    display: none !important;
  }
}


/* ================= CLASSY COMPACT PREMIUM MODAL ================= */

.bbl-premium-compact-modal {
  border: 1px solid rgba(221, 173, 103, 0.28);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  overflow: hidden;
}

.bbl-premium-compact-modal .modal-header-custom {
  background: linear-gradient(135deg, #111318, #1c1711) !important;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(221,173,103,0.28);
}

.bbl-premium-compact-modal .modal-header-custom::after {
  height: 2px;
  background: linear-gradient(90deg, #ddad67, transparent);
}

.bbl-premium-compact-modal .modal-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.bbl-premium-compact-modal .modal-body {
  background: #f7f3ec !important;
  padding: 16px !important;
}

#bblRegistrationForm {
  background: #ffffff;
  border: 1px solid rgba(221,173,103,0.22);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.bbl-section-label {
  margin: 15px 0 9px;
  color: #7a561f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.bbl-section-label::after {
  background: rgba(221,173,103,0.25);
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #ded6c8;
  background: #fff;
  font-size: 15px !important;
}

.form-floating > label {
  color: #7b746b;
  font-size: 13px;
}

.form-control:focus,
.form-select:focus {
  border-color: #ddad67 !important;
  box-shadow: 0 0 0 3px rgba(221,173,103,0.16) !important;
}

.bbl-terms-box,
.bbl-calendar-wrap,
.bbl-location-address {
  background: #fff !important;
  border: 1px solid rgba(221,173,103,0.24) !important;
  border-radius: 14px;
}

.bbl-terms-box {
  padding: 12px 13px;
}

.bbl-terms-row label {
  color: #2f2f2f;
  font-size: 13px;
}

.bbl-terms-link {
  color: #9a6724 !important;
  font-weight: 800;
}

#registerPayBtn,
.btn-gold-outline {
  height: 52px;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #111318, #2c2114) !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18) !important;
}

#registerPayBtn:hover {
  background: linear-gradient(135deg, #ddad67, #b97a2c) !important;
  color: #111 !important;
}

#registerPayBtn:disabled {
  background: #c9c1b5 !important;
  color: #ffffff !important;
  opacity: 1;
}

.bbl-location-address {
  margin-top: 14px;
  font-size: 12.5px;
  padding: 12px 14px;
}

.bbl-location-btn {
  background: #111318 !important;
  color: #ffffff !important;
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: none;
}

/* Mobile compact premium */
@media (max-width: 576px) {
  #registrationModal .modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .bbl-premium-compact-modal {
    border-radius: 20px 20px 0 0 !important;
    max-height: 90vh;
  }

  .bbl-premium-compact-modal .modal-header-custom {
    padding: 14px 16px;
  }

  .bbl-premium-compact-modal .modal-title {
    font-size: 18px;
  }

  .bbl-premium-compact-modal .modal-body {
    padding: 12px !important;
  }

  #bblRegistrationForm {
    padding: 14px;
    border-radius: 16px;
  }

  .bbl-section-label {
    margin: 13px 0 8px;
    font-size: 10.5px;
  }

  .form-floating {
    margin-bottom: 10px !important;
  }

  .form-floating > .form-control,
  .form-floating > .form-select {
    height: 50px;
    border-radius: 11px;
  }

  .row.g-3 {
    gap: 0 !important;
  }

  #registerPayBtn {
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin-top: 12px;
  }

  .bbl-location-address {
    font-size: 12px;
    margin-top: 12px;
  }

  .bbl-location-btn {
    width: 100%;
    font-size: 13px;
  }
}


/* ================= MOBILE MODAL UX FIX ================= */

@media (max-width: 576px) {

  /* Bottom sheet properly aligned */
  #registrationModal.modal {
    padding: 0 !important;
  }

  #registrationModal .modal-dialog {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;

    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: flex-end;

    min-height: 100%;
    padding: 0;
  }

  /* Premium compact sheet */
  #registrationModal .modal-content {
    width: 100%;
    border-radius: 22px 22px 0 0 !important;
    overflow: hidden;
    max-height: 92vh;
    border: 0;
  }

  /* Sticky clean header */
  #registrationModal .modal-header-custom {
    position: sticky;
    top: 0;
    z-index: 30;

    padding: 14px 18px 12px;
  }

  /* Small drag handle */
  #registrationModal .modal-header-custom::before {
    content: "";
    display: block;

    width: 42px;
    height: 4px;

    border-radius: 999px;

    background: rgba(255,255,255,0.28);

    margin: 0 auto 12px;
  }

  /* Title */
  #registrationModal .modal-title {
    font-size: 17px !important;
    line-height: 1.3;
    padding-right: 50px;
  }

  /* Better close button */
  #registrationModal .btn-close {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background-color: rgba(255,255,255,0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    z-index: 50;
  }

  #registrationModal .btn-close:active {
    transform: scale(.95);
  }

  /* Scrollable body */
  #registrationModal .modal-body {
    overflow-y: auto;
    padding: 12px !important;
    padding-bottom: 110px !important;
  }

  /* Compact form */
  #bblRegistrationForm {
    padding: 14px;
    border-radius: 16px;
  }

  /* Inputs */
  .form-floating > .form-control,
  .form-floating > .form-select {
    height: 50px;
    font-size: 15px !important;
  }

  .form-floating > label {
    font-size: 13px;
  }

  /* Better spacing */
  .row.g-3 {
    gap: 0 !important;
  }

  .form-floating {
    margin-bottom: 10px !important;
  }

  
  #registerPayBtn {
    position: sticky;
    bottom: 0;

    width: 100%;
    height: 52px;

    margin-top: 14px;

    border-radius: 14px !important;

    z-index: 20;
  }

  /* enough space for button */
  #registrationModal .modal-body {
    padding-bottom: 24px !important;
  }



  /* Smaller trust box */
  .bbl-payment-trust,
  .bbl-location-address {
    margin-top: 12px;
  }

  /* Calendar mobile */
  .bbl-cal-day {
    min-height: 38px;
    border-radius: 8px;
  }

  .bbl-cal-day .day-num {
    font-size: 11px;
  }

  .bbl-cal-day .day-rem {
    display: none;
  }
}




/* FINAL FIX: Mobile payment button should not overlap fields */
@media (max-width: 576px) {
  #registrationModal #registerPayBtn {
    position: static !important;
    width: 100% !important;
    height: 52px !important;
    margin: 14px 0 0 !important;
    z-index: 1 !important;
  }

  #registrationModal .modal-body {
    padding-bottom: 18px !important;
  }

  #registrationModal .floating-call-btn {
    display: none !important;
  }
}






