/* ================================================================
   Business Boost — Strategy Session Styles (Phase 2A, Rev 2)
   Clean monochrome. Elementor Canvas compatible. All-screen fit.
   ================================================================ */

/* ── RESET / ROOT for Elementor Canvas ── */
.bb-strat-body,
#bb-strat-app {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* When embedded in Elementor — ensure full width */
.elementor-widget-container #bb-strat-app,
.e-con-inner #bb-strat-app,
.elementor-section #bb-strat-app {
  width: 100%;
  min-height: 100vh;
}

*, *::before, *::after { box-sizing: inherit; }

#bb-strat-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
.bbs-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bbs-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.bbs-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.bbs-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.bbs-nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.bbs-nav-link:hover,
.bbs-nav-link.active { color: #fff; }

.bbs-nav-cta { flex-shrink: 0; font-size: 0.83rem; }

/* ── PAGE ROUTING ── */
.bbs-page { display: none; flex: 1; }
.bbs-page.active { display: block; }
.bbs-hidden { display: none !important; }

/* ── BOOKING HERO ── */
.bbs-booking-hero {
  text-align: center;
  padding: 64px 24px 40px;
  max-width: 680px;
  margin: 0 auto;
}

.bbs-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.84rem;
  color: #666;
}

.bbs-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BOOKING FORM LAYOUT ── */
.bbs-booking-layout {
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 0 24px;
  width: 100%;
}

/* ── STEP INDICATOR ── */
.bbs-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bbs-steps::-webkit-scrollbar { display: none; }

.bbs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.3;
  transition: opacity 0.25s;
}

.bbs-step.active { opacity: 1; }
.bbs-step.done   { opacity: 0.55; }

.bbs-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  background: transparent;
  transition: all 0.25s;
}

.bbs-step.active .bbs-step-num {
  border-color: #fcd41d;
  color: #000;
  background: #fcd41d;
}

.bbs-step.done .bbs-step-num {
  border-color: #444;
  color: #999;
  background: #1a1a1a;
  content: '✓';
}

.bbs-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
}

.bbs-step.active .bbs-step-label { color: #fff; }

.bbs-step-divider {
  width: 44px;
  height: 1px;
  background: #222;
  flex-shrink: 0;
  margin-bottom: 22px;
}

/* ── FORM STEPS ── */
.bbs-form-step {
  animation: bbs-in 0.22s ease;
}

@keyframes bbs-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bbs-step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.bbs-step-sub {
  font-size: 0.88rem;
  color: #666;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ── FIELDS GRID ── */
.bbs-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.bbs-full { grid-column: 1 / -1; }
.bbs-req  { color: #fcd41d; }

.bbs-step-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bbs-next-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
}

/* ── ERROR ── */
.bbs-err {
  display: none;
  color: #ff6b6b;
  font-size: 0.83rem;
  padding: 10px 14px;
  background: rgba(255,107,107,0.07);
  border: 1px solid rgba(255,107,107,0.18);
  border-radius: 8px;
  margin-top: 12px;
}
.bbs-err.visible { display: block; }

/* ── DATE + TIME LAYOUT (Step 2) ── */
.bbs-dt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  align-items: start;
}

.bbs-cal-panel-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #555;
  margin-bottom: 12px;
}

/* ── CALENDAR ── */
.bbs-calendar-wrap {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px;
}

.bbs-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bbs-cal-month-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.bbs-cal-nav {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  color: #aaa;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.18s, color 0.18s;
}

.bbs-cal-nav:hover { background: rgba(255,255,255,0.09); color: #fff; }

.bbs-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.bbs-cal-dow span {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  color: #444;
  padding: 3px 0;
}

.bbs-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.bbs-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
  color: #bbb;
  background: transparent;
  user-select: none;
}

.bbs-cal-day:hover:not(.bbs-cal-empty):not(.bbs-cal-past):not(.bbs-cal-weekend):not(.bbs-cal-blocked) {
  background: rgba(252,212,29,0.09);
  border-color: rgba(252,212,29,0.25);
  color: #fff;
}

.bbs-cal-day.bbs-cal-today {
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.bbs-cal-day.bbs-cal-selected {
  background: #fcd41d;
  color: #000;
  font-weight: 700;
  border-color: transparent;
}

.bbs-cal-day.bbs-cal-past,
.bbs-cal-day.bbs-cal-weekend,
.bbs-cal-day.bbs-cal-blocked {
  color: #2a2a2a;
  cursor: default;
  pointer-events: none;
}

.bbs-cal-day.bbs-cal-empty {
  cursor: default;
  pointer-events: none;
}

/* ── SLOTS PANEL ── */
.bbs-slots-panel {
  min-height: 160px;
}

.bbs-slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 80px;
}

.bbs-slot {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 9px;
  padding: 13px 10px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #bbb;
  cursor: pointer;
  background: rgba(255,255,255,0.025);
  transition: all 0.16s;
  user-select: none;
}

.bbs-slot:hover {
  background: rgba(252,212,29,0.07);
  border-color: rgba(252,212,29,0.3);
  color: #fff;
}

.bbs-slot.selected {
  background: #fcd41d;
  border-color: #fcd41d;
  color: #000;
}

.bbs-slot-loading,
.bbs-slot-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.84rem;
  color: #444;
  padding: 28px 0;
  line-height: 1.6;
}

/* ── REVIEW CONFIRM CARD ── */
.bbs-confirm-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.bbs-confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  gap: 16px;
}

.bbs-confirm-row:last-child { border-bottom: none; }

.bbs-confirm-row span:first-child { color: #555; white-space: nowrap; }
.bbs-confirm-row strong { color: #fff; font-weight: 600; text-align: right; }
.bbs-price-val { color: #fcd41d !important; font-size: 1rem; font-weight: 700 !important; }

/* ── PAYMENT BOX ── */
.bbs-payment-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px;
}

.bbs-pay-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bbs-pay-sub {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.55;
}

.bbs-pay-phone-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bbs-pay-phone-row .bb-input {
  flex: 1;
  min-width: 0;
}

/* ── USSD NOTICE ── */
.bbs-ussd-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(252,212,29,0.04);
  border: 1px solid rgba(252,212,29,0.12);
  border-radius: 10px;
  padding: 16px;
  margin-top: 16px;
}

.bbs-ussd-icon {
  width: 36px;
  height: 36px;
  background: rgba(252,212,29,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd41d;
  flex-shrink: 0;
}

/* ── POLLING ROW ── */
.bbs-poll-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 9px;
  font-size: 0.84rem;
  color: #888;
  flex-wrap: wrap;
}

/* ── WHATSAPP FALLBACK ── */
.bbs-wa-fallback {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(37,211,102,0.03);
  border: 1px solid rgba(37,211,102,0.12);
  border-radius: 12px;
}

/* ── WHATSAPP CARDS ── */
.bbs-conf-wa-card,
.bbs-dash-wa-section {
  background: rgba(37,211,102,0.03);
  border: 1px solid rgba(37,211,102,0.12);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bbs-wa-icon {
  width: 40px;
  height: 40px;
  background: rgba(37,211,102,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  flex-shrink: 0;
}

.bbs-wa-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.bbs-wa-desc {
  font-size: 0.81rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ── BADGES ── */
.bbs-badge-pending {
  background: rgba(252,212,29,0.1);
  border: 1px solid rgba(252,212,29,0.2);
  color: #fcd41d;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}

.bbs-badge-confirmed {
  background: rgba(0,200,100,0.08);
  border: 1px solid rgba(0,200,100,0.2);
  color: #00c864;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  white-space: nowrap;
}

.bbs-badge-completed {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #777;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
}

.bbs-badge-cancelled {
  background: rgba(255,80,80,0.07);
  border: 1px solid rgba(255,80,80,0.18);
  color: #ff5050;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
}

/* ── CONFIRMATION ICON ── */
.bbs-conf-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(252,212,29,0.08);
  border: 2px solid rgba(252,212,29,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd41d;
}

/* ── WHAT TO EXPECT ── */
.bbs-expect-section {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 24px;
}

.bbs-expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 36px auto 0;
}

.bbs-expect-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.bbs-expect-card:hover {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.11);
}

.bbs-expect-icon {
  width: 38px;
  height: 38px;
  background: rgba(252,212,29,0.07);
  border: 1px solid rgba(252,212,29,0.13);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fcd41d;
  margin-bottom: 14px;
}

.bbs-expect-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 7px;
}

.bbs-expect-card p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── DASHBOARD ── */
.bbs-dash-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  padding: 40px 24px;
}

.bbs-dash-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 24px 80px;
  width: 100%;
}

.bbs-dash-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bbs-dash-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bbs-dash-welcome h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
}

.bbs-dash-welcome p {
  font-size: 0.86rem;
  color: #555;
  margin: 0;
}

/* Stats */
.bbs-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bbs-stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px;
  padding: 18px 16px;
}

.bbs-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.bbs-stat-label {
  font-size: 0.74rem;
  color: #444;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Session card */
.bbs-session-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
}

.bbs-session-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bbs-session-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #444;
  margin-bottom: 7px;
}

.bbs-session-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.bbs-session-time {
  font-size: 0.86rem;
  color: #777;
}

.bbs-session-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bbs-sess-meta-item span {
  display: block;
  font-size: 0.68rem;
  color: #444;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.bbs-sess-meta-item strong {
  font-size: 0.85rem;
  color: #bbb;
  font-weight: 600;
}

.bbs-session-countdown {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(252,212,29,0.04);
  border: 1px solid rgba(252,212,29,0.09);
  border-radius: 9px;
  font-size: 0.84rem;
  color: #777;
  line-height: 1.5;
}

.bbs-session-countdown.imminent {
  background: rgba(0,200,100,0.04);
  border-color: rgba(0,200,100,0.12);
  color: #00c864;
}

/* Prep section */
.bbs-section-h {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.bbs-prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.bbs-prep-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  padding: 20px 16px;
}

.bbs-prep-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: #fcd41d;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
}

.bbs-prep-card h4 {
  font-size: 0.87rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 7px;
}

.bbs-prep-card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* History */
.bbs-history-table {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  overflow: hidden;
}

.bbs-history-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.8fr 1fr;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.83rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}

.bbs-history-row.header {
  background: rgba(255,255,255,0.02);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #444;
}

.bbs-history-row:last-child { border-bottom: none; }

.bbs-history-empty,
.bbs-spinner-wrap {
  padding: 28px;
  text-align: center;
  color: #444;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Upgrade card */
.bbs-upgrade-card {
  background: rgba(252,212,29,0.03);
  border: 1px solid rgba(252,212,29,0.1);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
}

.bbs-upgrade-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.bbs-upgrade-card p {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 22px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bbs-dt-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bbs-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .bbs-nav-links { display: none; }

  .bbs-nav-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .bbs-booking-hero {
    padding: 44px 16px 28px;
  }

  .bbs-booking-layout {
    padding: 0 16px;
  }

  .bbs-fields-grid {
    grid-template-columns: 1fr;
  }
  .bbs-full { grid-column: 1; }

  .bbs-step-divider { width: 20px; }
  .bbs-step-label   { display: none; }

  .bbs-dash-stats {
    grid-template-columns: 1fr 1fr;
  }

  .bbs-session-meta {
    grid-template-columns: 1fr 1fr;
  }

  .bbs-pay-phone-row {
    flex-direction: column;
  }
  .bbs-pay-phone-row .bb-input,
  .bbs-pay-phone-row .bb-btn {
    width: 100%;
  }

  .bbs-conf-wa-card,
  .bbs-dash-wa-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .bbs-upgrade-card {
    padding: 24px 18px;
  }

  .bbs-history-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.78rem;
  }

  .bbs-history-row .bbs-history-pkg { display: none; }

  .bbs-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .bbs-booking-hero { padding: 36px 14px 22px; }
  .bbs-booking-layout { padding: 0 14px; }
  .bbs-dash-content   { padding: 28px 14px 60px; }

  .bbs-steps {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
  }

  .bbs-step-divider { width: 14px; }

  .bbs-next-btn {
    min-width: 0;
    width: 100%;
  }

  .bbs-hero-meta {
    gap: 14px;
    font-size: 0.78rem;
  }

  .bbs-dash-stats {
    grid-template-columns: 1fr;
  }

  .bbs-session-meta {
    grid-template-columns: 1fr;
  }

  .bbs-slots-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bbs-prep-grid {
    grid-template-columns: 1fr;
  }

  .bbs-history-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bbs-history-row.header { display: none; }

  .bbs-step-actions { flex-direction: column; }
  .bbs-step-actions .bb-btn { width: 100%; justify-content: center; }

  .bbs-dt-layout { gap: 16px; }

  .bbs-calendar-wrap { padding: 14px 10px; }

  .bbs-cal-day { font-size: 0.72rem; border-radius: 5px; }
}

/* ══════════════════════════════════════════════════
   ELEMENTOR CANVAS — ensure no theme styles bleed in
   ══════════════════════════════════════════════════ */
.elementor-page #bb-strat-app,
body.elementor-page #bb-strat-app {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Remove any Elementor default padding on the section wrapper */
.elementor-widget-container:has(#bb-strat-app) {
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure the page fills viewport width on canvas template */
body.elementor-editor-active #bb-strat-app,
body.elementor-page #bb-strat-app {
  width: 100%;
  max-width: 100%;
}
