/* ── Customer Portal — matches booking.css design system ─ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

#mbc-portal-root {
  --mbc-gold-border: #decba4;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  color: #2c2a20;
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px;
  background: #F5EFE0;
  border-radius: 16px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(30, 58, 47, 0.07), 0 0 30px rgba(197, 162, 93, 0.04);
}
body:not(.logged-in) #mbc-portal-root {
    background: transparent;
    box-shadow: none;
}
#mbc-portal-root *,
#mbc-portal-root *::before,
#mbc-portal-root *::after {
  box-sizing: border-box;
}

/* ── Fade animation (matches mbFadeIn) ──────────────────── */
.mbc-screen {
  animation: mbcFadeIn .35s ease;
}

@keyframes mbcFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════
   AUTH SCREEN
   ═══════════════════════════════════════════════════════ */
#mbc-auth-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 16px;
}

#mbc-portal-root .mbc-auth-card {
  background: #fff9f4 !important;
  border: 1.5px solid var(--mbc-gold-border) !important;
  border-radius: 28px !important;
  box-shadow: 0 12px 48px rgba(30, 58, 47, .06), 0 2px 12px rgba(197, 162, 93, 0.04) !important;
  padding: 40px 36px 36px !important;
  width: 100% !important;
  max-width: 460px !important;
}

#mbc-portal-root .mbc-auth-logo {
  text-align: center !important;
  margin-bottom: 28px !important;
}

#mbc-portal-root .mbc-auth-brand-icon {
  width: 72px !important;
  height: 72px !important;
  background: #fdfbf7 !important;
  border: 1.5px solid var(--mbc-gold-border) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1e3a2f !important;
  margin-bottom: 18px !important;
}

#mbc-portal-root .mbc-auth-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 500 !important;
  color: #1e3a2f !important;
  margin: 0 0 8px !important;
  letter-spacing: 0 !important;
}

#mbc-portal-root .mbc-auth-subtitle {
  font-size: 14px !important;
  color: #8a8272 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* ── Error / Success Banners ────────────────────────────── */
.mbc-error-banner {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  text-align: center;
}

.mbc-success-banner {
  background: #f0f7f3;
  border: 1px solid #a2bba9;
  color: #1e3a2f;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
  text-align: center;
}

/* ── OAuth Buttons ──────────────────────────────────────── */
.mbc-oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

#mbc-portal-root .mbc-btn-oauth {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
  border: 1.5px solid var(--mbc-gold-border) !important;
  cursor: pointer !important;
  font-family: inherit !important;
  color: #2c2a20 !important;
  background: #fff !important;
}

#mbc-portal-root .mbc-btn-oauth:hover {
  border-color: #c5b99b !important;
  background: #fdfbf7 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06) !important;
  color: #1e3a2f !important;
}

.mbc-btn-google svg,
.mbc-btn-facebook svg {
  flex-shrink: 0;
}

.mbc-btn-facebook {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.mbc-btn-facebook:hover {
  background: #1465d0;
  border-color: #1465d0;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24, 119, 242, .25);
}

#mbc-portal-root .mbc-divider {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #9a9282 !important;
  font-size: 12px !important;
  margin: 4px 0 !important;
}

#mbc-portal-root .mbc-divider::before,
#mbc-portal-root .mbc-divider::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: var(--mbc-gold-border) !important;
}

/* ── Auth Tabs ──────────────────────────────────────────── */
#mbc-portal-root .mbc-auth-tabs {
  display: flex !important;
  background: #fdfbf7 !important;
  border-radius: 12px !important;
  margin-bottom: 24px !important;
  border: 1.5px solid var(--mbc-gold-border) !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden !important;
}

#mbc-portal-root .mbc-tab-btn {
  flex: 1 !important;
  padding: 14px 16px !important;
  border: none !important;
  border-radius: 0 !important;
  background: #fdfbf7 !important;
  color: #8a8272 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
  font-family: inherit !important;
  outline: none !important;
  line-height: 1 !important;
}

#mbc-portal-root .mbc-tab-btn.active {
  background: #1e3a2f !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

#mbc-portal-root .mbc-tab-btn:hover:not(.active) {
  color: #1e3a2f !important;
  background: #f5efe0 !important;
}

#mbc-portal-root .mbc-tab-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(30, 58, 47, .2) !important;
}

/* ── Email Forms ────────────────────────────────────────── */
.mbc-tab-content {
  display: none;
}

.mbc-tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mbc-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mbc-field label {
  font-size: 13px;
  font-weight: 500;
  color: #2c2a20;
}

.mbc-field label small {
  font-weight: 400;
  color: #8a8272;
  font-size: 12px;
}

#mbc-portal-root .mbc-field input,
#mbc-portal-root .mbc-field select {
  width: 100% !important;
  padding: 10px 14px !important;
  border: 1.5px solid var(--mbc-gold-border) !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  color: #4a4538 !important;
  background: #fdfbf7 !important;
  transition: all .2s cubic-bezier(.4, 0, .2, 1) !important;
  outline: none !important;
  min-height: 44px !important;
  box-shadow: none !important;
}

#mbc-portal-root .mbc-field input[type="email"] {
  padding-left: 42px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239a9282' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25H4.5A2.25 2.25 0 012.25 17.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5H4.5a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 14px center !important;
  background-size: 18px 18px !important;
}

#mbc-portal-root .mbc-field input:focus,
#mbc-portal-root .mbc-field select:focus {
  border-color: #1e3a2f !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(30, 58, 47, .1) !important;
}

#mbc-portal-root .mbc-field input::placeholder {
  color: #9a9282 !important;
}

.mbc-input-wrap {
  position: relative;
}

.mbc-input-wrap input {
  padding-right: 42px;
}

#mbc-portal-root .mbc-toggle-pw {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #9a9282 !important;
  transition: color .2s !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

#mbc-portal-root .mbc-toggle-pw:hover {
  color: #1e3a2f !important;
}

#mbc-portal-root .mbc-btn-primary {
  padding: 13px 28px !important;
  background: #1E3A2F !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
  box-shadow: 0 4px 14px rgba(88, 104, 53, .2) !important;
  font-family: inherit !important;
  width: 100% !important;
}

#mbc-portal-root .mbc-btn-primary:hover:not(:disabled) {
  background: #46532a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(88, 104, 53, .3) !important;
}

#mbc-portal-root .mbc-btn-primary:disabled {
  background: #d0c8b8 !important;
  color: #f6f3eb !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

.mbc-btn-secondary {
  padding: 11px 20px;
  background: #fdfbf7;
  color: #1e3a2f;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}

.mbc-btn-secondary:hover {
  border-color: #1e3a2f;
  background: #f0f7f3;
}

.mbc-btn-danger {
  padding: 11px 20px;
  background: #dc2626 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}

.mbc-btn-danger:hover {
  background: #b91c1c !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, .2);
}

.mbc-form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
}

.mbc-form-success {
  background: #f0f7f3;
  border: 1px solid #a2bba9;
  color: #1e3a2f;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
}
@media (max-width: 580px) {
#mbc-auth-screen {
  padding: 5px;
}
}
/* ═══════════════════════════════════════════════════════
   DASHBOARD LAYOUT
   ═══════════════════════════════════════════════════════ */
.mbc-dashboard {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 680px) {
  .mbc-dashboard {
    grid-template-columns: 1fr;
  }

  .mbc-sidebar {
    position: static;
    border: 1.5px solid var(--mbc-gold-border);
    background: #fff9ec;
    border-radius: 14px;
    margin-bottom: 20px;
  }

  .mbc-sidebar-profile {
    display: none;
    /* Hide profile summary on mobile to save space */
  }

  .mbc-mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fdfbf7;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #1e3a2f;
    border-radius: 14px;
  }

  .mbc-mobile-nav-toggle svg {
    transition: transform 0.2s;
  }

  .mbc-mobile-nav-toggle.open svg {
    transform: rotate(180deg);
  }

  .mbc-nav {
    display: none;
    border-top: 1px solid var(--mbc-gold-border);
    background: #fff;
    padding: 8px 0;
  }

  .mbc-nav.open {
    display: block;
  }

  .mbc-nav-item {
    font-size: 15px;
    padding: 12px 18px;
  }

  .mbc-sidebar-logout {
    display: none;
    /* We can add it inside nav or keep it hidden if dropdown is closed */
  }

  .mbc-nav.open~.mbc-sidebar-logout {
    display: block;
  }
}

/* ── Sidebar ─────────────────────────────────────────────  */
.mbc-sidebar {
  background: #fdfbf7;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.mbc-sidebar-profile {
  padding: 20px 16px;
  border-bottom: 1px solid var(--mbc-gold-border);
  text-align: center;
}

.mbc-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--mbc-gold-border);
  object-fit: cover;
  background: #f0ede6;
  margin: 0 auto 10px;
  display: block;
}

.mbc-sidebar-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a2f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbc-sidebar-email {
  font-size: 12px;
  color: #8a8272;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mbc-nav {
  padding: 8px 0;
}

.mbc-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #6b6455;
  transition: all .2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  border-left: 3px solid transparent;
  text-decoration: none !important;
}

.mbc-nav-item:hover {
  color: #1e3a2f;
  background: #f0f7f3;
}

.mbc-nav-item.active {
  color: #1e3a2f;
  background: #f0f7f3;
  border-left-color: #1e3a2f;
  font-weight: 600;
}

.mbc-nav-item.danger {
  color: #991b1b;
}

.mbc-nav-item.danger:hover {
  background: #fef2f2;
}

.mbc-nav-item.disabled {
  opacity: .5;
  cursor: not-allowed;
}

.mbc-nav-item svg {
  flex-shrink: 0;
}

.mbc-nav-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  background: #f0ede6;
  color: #6b6455;
  border-radius: 20px;
  letter-spacing: .02em;
}

.mbc-nav-divider {
  height: 1px;
  background: var(--mbc-gold-border);
  margin: 6px 0;
}

.mbc-sidebar-logout {
  padding: 12px 16px;
  border-top: 1px solid var(--mbc-gold-border);
}

.mbc-btn-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  background: none;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6b6455;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  text-decoration: none !important;
}

.mbc-btn-logout:hover {
  border-color: #fca5a5;
  color: #991b1b;
  background: #fef2f2;
}

/* ── Content panels ──────────────────────────────────────  */
.mbc-panel {
  display: none;
  animation: mbcFadeIn .3s ease;
}

.mbc-panel.active {
  display: block;
}

.mbc-panel-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a2f;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

.mbc-panel-subtext {
  font-size: 14px;
  color: #8a8272;
  margin: 0 0 24px;
  line-height: 1.5;
}

/* ── Stats row ───────────────────────────────────────────  */
.mbc-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

@media (max-width: 520px) {
  .mbc-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

.mbc-stat-card {
  background: #fdfbf7;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 12px;
  padding: 16px;
  transition: all .25s ease;
}

.mbc-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(30, 58, 47, .08);
}

.mbc-stat-icon {
  width: 36px;
  height: 36px;
  background: #f0f7f3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a2f;
  margin-bottom: 10px;
}

.mbc-stat-value {
  font-size: 26px;
  font-weight: 700;
  color: #1e3a2f;
  line-height: 1;
}

.mbc-stat-value-sm {
  font-size: 15px;
  font-weight: 700;
  color: #1e3a2f;
  line-height: 1.3;
}

.mbc-stat-label {
  font-size: 12px;
  color: #8a8272;
  font-weight: 500;
  margin-top: 4px;
}

/* ── Booking cards ───────────────────────────────────────  */
.mbc-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mbc-booking-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 12px;
  background: #fdfbf7;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.mbc-booking-card:hover {
  border-color: #c5b99b;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
}

.mbc-booking-card.upcoming {
  border-left: 3px solid #1e3a2f;
}

.mbc-booking-main {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.mbc-booking-img {
  width: 80px;
  height: 54px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  background: #f0ede6;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.mbc-booking-img-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f0f7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a2f;
  flex-shrink: 0;
}

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

.mbc-booking-service {
  font-size: 15px;
  font-weight: 600;
  color: #1e3a2f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.mbc-booking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 12px;
  color: #8a8272;
  align-items: center;
}

.mbc-booking-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mbc-booking-meta-item svg {
  flex-shrink: 0;
}

.mbc-booking-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

/* Status badges — match .mb-card-pill */
.mbc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: capitalize;
}

.mbc-badge-approved {
  background: #f0f7f3;
  color: #1e3a2f;
}

.mbc-badge-pending {
  background: #fef9ec;
  color: #7a5c00;
}

.mbc-badge-rejected {
  background: #fef2f2;
  color: #991b1b;
}

.mbc-badge-cancelled {
  background: #f0ede6;
  color: #6b6455;
}

.mbc-badge-completed {
  background: #ede9fe;
  color: #5b21b6;
}

.mbc-booking-price {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a2f;
}

.mbc-booking-detail {
  border-top: 1px solid var(--mbc-gold-border);
  padding: 14px 18px;
  display: none;
  background: #faf8f5;
}

.mbc-booking-card.expanded .mbc-booking-detail {
  display: block;
}

.mbc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-size: 13px;
}

.mbc-detail-item label {
  color: #8a8272;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 2px;
}

.mbc-detail-item span {
  color: #2c2a20;
  font-weight: 500;
}

/* ── Profile panel ───────────────────────────────────────  */
.mbc-profile-card {
  background: #fdfbf7;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 14px;
  padding: 24px;
  max-width: 520px;
}

.mbc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .mbc-form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Loyalty placeholder ─────────────────────────────────  */
.mbc-loyalty-card {
  background: linear-gradient(135deg, #1e3a2f 0%, #2a5040 60%, #3a6b56 100%);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  max-width: 440px;
  position: relative;
  overflow: hidden;
}

.mbc-loyalty-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.mbc-loyalty-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.mbc-loyalty-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mbc-loyalty-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.mbc-loyalty-subtitle {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 24px;
}

.mbc-loyalty-coming {
  background: rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.6;
  opacity: .85;
}

/* ── Delete account ──────────────────────────────────────  */
.mbc-danger-card {
  background: #fff5f5;
  border: 1.5px solid #fca5a5;
  border-radius: 14px;
  padding: 24px;
  max-width: 520px;
}

.mbc-danger-title {
  font-size: 16px;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 8px;
}

.mbc-danger-text {
  font-size: 14px;
  color: #6b6455;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Loading / Empty ─────────────────────────────────────  */
.mbc-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8a8272;
  font-size: 14px;
  padding: 40px 0;
  justify-content: center;
}

.mbc-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--mbc-gold-border);
  border-top-color: #1e3a2f;
  border-radius: 50%;
  animation: mbcSpin .7s linear infinite;
}

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

.mbc-empty {
  text-align: center;
  padding: 60px 20px;
  color: #8a8272;
}

.mbc-empty-icon {
  width: 56px;
  height: 56px;
  background: #f0ede6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9282;
  margin: 0 auto 14px;
}

.mbc-empty h3 {
  font-size: 17px;
  font-weight: 600;
  color: #2c2a20;
  margin: 0 0 6px;
}

.mbc-empty p {
  font-size: 14px;
  margin: 0;
}

/* ── Section labels (like .mb-sidebar-label) ─────────────  */
.mbc-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b6455;
  margin-bottom: 12px;
}

.mbc-section-divider {
  border-top: 1px solid var(--mbc-gold-border);
  margin: 20px 0;
}

/* ── Responsive ──────────────────────────────────────────  */
@media (max-width: 540px) {
  .mbc-auth-card {
    padding: 24px 18px 22px;
  }

  #mbc-portal-root {
    padding: 16px 12px;
  }

  .mbc-booking-main {
    gap: 12px;
    padding: 14px;
    flex-wrap: wrap;
  }

  .mbc-booking-img {
    width: 64px;
    height: 48px !important;
  }

  .mbc-booking-img-icon {
    width: 44px;
    height: 44px;
  }

  .mbc-booking-body {
    flex: 1 1 calc(100% - 80px);
  }

  .mbc-booking-right {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px dashed var(--mbc-gold-border);
  }

  .mbc-detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mbc-support-booking-row {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .mbc-support-booking-info {
    flex: 1 1 100%;
  }

  .mbc-support-booking-actions {
    flex: 1 1 100%;
    justify-content: flex-end;
    margin-top: 4px;
  }
}

/* ═══════════════════════════════════════════════════════
   SUPPORT PANEL
   ═══════════════════════════════════════════════════════ */

/* Contact channel buttons */
.mbc-support-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

@media (min-width: 480px) {
  .mbc-support-channels {
    flex-direction: row;
  }
}

.mbc-support-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
  border: 1.5px solid transparent;
}

.mbc-support-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mbc-support-channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mbc-support-channel-body strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.mbc-support-channel-body small {
  font-size: 12px;
  opacity: .75;
}

/* WhatsApp */
.mbc-support-wa {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #14532d !important;
}

.mbc-support-wa .mbc-support-channel-icon {
  background: #22c55e;
  color: #fff;
}

.mbc-support-wa:hover {
  background: #dcfce7;
  border-color: #86efac;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, .15);
}

/* Email */
.mbc-support-mail {
  background: #f0f9ff;
  border-color: #bae6fd;
  color: #0c4a6e !important;
}

.mbc-support-mail .mbc-support-channel-icon {
  background: #0ea5e9;
  color: #fff;
}

.mbc-support-mail:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, .15);
}

/* Notice (no contact configured) */
.mbc-support-notice {
  background: #fefce8;
  border: 1.5px solid #fef08a;
  color: #713f12;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.5;
}

/* Booking-specific chat rows */
.mbc-support-bookings {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--mbc-gold-border);
  border-radius: 12px;
  overflow: hidden;
}

.mbc-support-booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #fdfbf7;
  border-bottom: 1px solid var(--mbc-gold-border);
  transition: background .15s;
}

.mbc-support-booking-row:last-child {
  border-bottom: none;
}

.mbc-support-booking-row:hover {
  background: #f5f2ec;
}

.mbc-support-booking-info {
  flex: 1;
  min-width: 0;
}

.mbc-support-booking-name {
  font-size: 14px;
  font-weight: 600;
  color: #1e3a2f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.mbc-support-booking-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #8a8272;
}

.mbc-support-booking-meta svg {
  flex-shrink: 0;
}

.mbc-support-booking-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mbc-btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: #1e3a2f;
  color: #fff !important;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all .2s ease;
  white-space: nowrap;
}

.mbc-btn-chat:hover {
  background: #2a5040;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 58, 47, .2);
}

/* Global Payment Loader Overlay */
.mbc-global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mbc-global-loader.active {
  opacity: 1;
  visibility: visible;
}

.mbc-loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-top: 3px solid #d4af37;
  border-radius: 50%;
  animation: mbc-spin-portal 1s linear infinite;
  margin-bottom: 20px;
}

.mbc-loader-text {
  font-family: serif;
  font-size: 22px;
  color: #1e3a2f;
  letter-spacing: 0.02em;
}

.mbc-loader-subtext {
  font-size: 14px;
  color: #8a8272;
  margin-top: 8px;
}

@keyframes mbc-spin-portal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Premium Membership Plans in Dashboard ── */
.mbc-public-plans {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 30px !important;
  padding: 24px 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}
/* ── Outer card shell ── */
.mbc-public-plan {
  width: 100% !important;
  max-width: 380px !important;
  height: 560px !important;
  background-color: #fdfbf7 !important;
  background-image: var(--frame-url) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
}
.mbc-public-plan:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}
.mbc-plan-card-link-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 3 !important;
  cursor: pointer !important;
  display: block !important;
  outline: none !important;
  text-decoration: none !important;
}
/* ── Inner content ── */
.mbc-plan-body {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 25px 45px 15px !important;
  height: 100% !important;
  box-sizing: border-box !important;
}
.mbc-plan-seal-img {
  width: 60px !important;
  height: auto !important;
  margin-bottom: 6px !important;
  object-fit: contain !important;
}
.mbc-plan-brand {
  font-family: serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--text-main) !important;
  margin-bottom: 0px !important;
}
.mbc-plan-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 35px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--text-accent) !important;
  text-align: center !important;
  line-height: 1 !important;
  margin-bottom: 2px !important;
  text-shadow: var(--text-3d) !important;
  background: var(--text-gradient, none) !important;
  -webkit-background-clip: var(--clip-val, border-box) !important;
  -webkit-text-fill-color: var(--fill-val, currentColor) !important;
  display: block !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.mbc-plan-wallet-label {
  font-family: serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--text-main) !important;
  margin-bottom: 5px !important;
}
.mbc-plan-price {
  font-family: serif !important;
  font-size: 42px !important;
  font-weight: 600 !important;
  color: var(--text-accent) !important;
  text-align: center !important;
  line-height: 1 !important;
  margin-bottom: 5px !important;
  text-shadow: var(--text-3d) !important;
  background: var(--text-gradient, none) !important;
  -webkit-background-clip: var(--clip-val, border-box) !important;
  -webkit-text-fill-color: var(--fill-val, currentColor) !important;
  display: block !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* ── Plaque Box ── */
.mbc-plan-bonus-plaque {
  background-image: var(--plaque-bg) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  border: none !important;
  padding: 8px 30px !important;
  margin-bottom: 5px !important;
  font-family: serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--plaque-text) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 44px !important;
  min-width: 220px !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3) !important;
}
.mbc-plan-desc {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: var(--text-main) !important;
  text-align: center !important;
  margin-bottom: 10px !important;
  max-width: 220px !important;
  line-height: 1.3 !important;
}
/* ── Benefits list ── */
.mbc-plan-benefits {
  width: 100% !important;
  max-width: 220px !important;
  margin-bottom: 5px !important;
  display: flex !important;
  flex-direction: column !important;
}
.mbc-bene-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 4px 0 !important;
  width: 100% !important;
  color: var(--text-main) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}
.mbc-bene-row:last-child {
  border-bottom: none !important;
}
.mbc-bene-ico-wrap {
  width: 30px !important;
  height: 30px !important;
  border: 1px solid #d4af37 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  background: transparent !important;
}
.mbc-bene-ico-img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  filter: sepia(1) saturate(5) hue-rotate(10deg) !important;
}
.mbc-plan-prana .mbc-bene-ico-wrap {
  border-color: #71571F !important;
}
.mbc-plan-prana .mbc-bene-ico-wrap img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(12%) saturate(5475%) hue-rotate(20deg) brightness(99%) contrast(88%) !important;
}
.mbc-plan-ojas .mbc-bene-ico-wrap {
  border-color: #A16D2C !important;
}
.mbc-plan-ojas .mbc-bene-ico-wrap img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(90%) saturate(371%) hue-rotate(353deg) brightness(97%) contrast(86%) !important;
}
.mbc-bene-txt {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: var(--text-main) !important;
  line-height: 1.3 !important;
}
/* ── Premium Button ── */
.mbc-plan-actions {
  position: relative !important;
  margin-top: auto !important;
  width: 100% !important;
  z-index: 4 !important;
  padding-bottom: 8px !important;
}
.mbc-btn-buy-online {
  width: 100% !important;
  background-image: linear-gradient(to bottom, #e6931fff 0%, #c5a059 20%, #e7bb68ff 50%, #ca811aff 100%), var(--button-bg) !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  -webkit-background-clip: text, border-box !important;
  -webkit-text-fill-color: transparent !important;
  color: #d4af37 !important;
  padding: 13px !important;
  border: none !important;
  font-family: serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 55px !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}
.mbc-btn-buy-online:hover {
  transform: scale(1.02) !important;
  opacity: 0.9 !important;
}
/* ── Themes ── */
.mbc-plan-ojas {
  --card-bg: #fdfbf7;
  --text-main: #000000;
  --text-accent: #d4af37;
  --text-muted: #000000;
  --gold-dark: #8c6a28;
  --gold-soft: #d4af37;
  --text-3d: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
  --plaque-text: #000000;
  --text-gradient: linear-gradient(to bottom,
      #6e4300 0%,
      #a96d1c 10%,
      #d4aa45 22%,
      #c88d2a 65%,
      #9b6115 82%,
      #5c3600 100%);
  --clip-val: text;
  --fill-val: transparent;
  --plaque-bg: url('../../../../uploads/2026/05/essence-plate.png');
  --button-bg: url('../../../../uploads/2026/05/essence-button-bg-copy.png');
}
.mbc-plan-prana {
  --card-bg: #e8f0e1;
  --text-main: #1e3a2f;
  --text-accent: #1e3a2f;
  --text-muted: #1e3a2f;
  --gold-dark: #586835;
  --gold-soft: #8a6a44;
  --text-3d: 0.5px 0.5px 1px rgba(0, 0, 0, 0.15);
  --plaque-text: #d4af37;
  --text-gradient: none;
  --clip-val: border-box;
  --fill-val: currentColor;
  --plaque-bg: url('../../../../uploads/2026/05/prana-plate.png');
  --button-bg: url('../../../../uploads/2026/05/prana-button-bg.png');
}
.mbc-plan-nordic {
  --card-bg: #111111;
  --text-main: #d4af37;
  --text-accent: #d4af37;
  --text-muted: #cccccc;
  --gold-dark: #d4af37;
  --gold-soft: #b8860b;
  --text-3d: 1px 1px 2px rgba(0, 0, 0, 0.1), -0.5px -0.5px 1px rgba(255, 255, 255, 0.1);
  --plaque-text: #d4af37;
  --text-gradient: linear-gradient(to bottom,
      #6e4300 0%,
      #a96d1c 10%,
      #d4aa45 22%,
      #c88d2a 65%,
      #9b6115 82%,
      #5c3600 100%);
  --clip-val: text;
  --fill-val: transparent;
  --plaque-bg: url('../../../../uploads/2026/05/elite-plate.png');
  --button-bg: url('../../../../uploads/2026/05/elite-button-bg.png');
}
@media (max-width: 400px) {
  .mbc-public-plan {
    height: 500px !important;
  }
  .mbc-public-plans {
    padding: 0px !important;
  }
  .mbc-plan-body {
    padding: 35px 25px 25px !important;
  }
  .mbc-plan-name {
    font-size: 34px !important;
  }
  .mbc-plan-price {
    font-size: 48px !important;
  }
}