/* ═══════════════════════════════════════════════════════════════════
   BigDot Manager — v2 Design System CSS
   Naming:  camelCase BEM-like, all classes prefixed with `bdMgr`
   Requires: Bootstrap 5.3 + Google Fonts (Plus Jakarta Sans,
             Cormorant Garamond, Bricolage Grotesque)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────
   Site-level CSS variables are declared in the global stylesheet.
   Below we create component-level aliases so this file is
   self-contained and readable. Dark (Personal) space tokens are
   hardcoded because they have no site-level counterpart.
   ─────────────────────────────────────────────────────────────────── */

:root {
  /* ── Light / Business Space aliases ── */
  --site-cta-color: var(--site-cta-color, #f15a25);
  --site-primary-color-glow: rgba(28, 45, 100, 0.2);
  /* ── Motion ── */
  --bdMgr-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bdMgr-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── BASE RESET / GLOBALS ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: var(--site-primary-font);
  overflow-x: hidden;
}

body {
  background: #f8f9ff;
  color: var(--site-text-color);
  transition:
    background 0.55s var(--bdMgr-ease),
    color 0.55s var(--bdMgr-ease);
}

.card {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.07),
    0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Personal space — same light theme as Business space (no dark mode) */
body.bdMgrPersonal {
  background: var(--site-secondary-color);
  color: var(--site-text-color);
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── AMBIENT GLOW BLOBS ─────────────────────────────────────────────── */
.bdMgrAmbient {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.8s var(--bdMgr-ease),
    background 0.8s var(--bdMgr-ease);
}

.bdMgrAmbient--1 {
  width: 600px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: rgba(34, 85, 232, 0.08);
  opacity: 1;
  z-index: 12;
}

.bdMgrAmbient--2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -100px;
  background: rgba(241, 90, 37, 0.07);
  opacity: 0;
  z-index: 12;
}

body.bdMgrPersonal .bdMgrAmbient--1 {
  opacity: 0;
}

body.bdMgrPersonal .bdMgrAmbient--2 {
  opacity: 1;
  background: rgba(241, 90, 37, 0.12);
}

.form-check-input:checked {
  background-color: var(--site-primary-color);
  border-color: var(--site-primary-color);
}

/* ─── PAGE LAYOUT ───────────────────────────────────────────────────── */
.bdMgrPageWrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--site-secondary-color);
}

/* ─── TOP NAV ───────────────────────────────────────────────────────── */
.bdMgrTopnav {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 64px;
  border-bottom: 1px solid var(--site-quaternary-color);
  background: #ffffff;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    border-color 0.55s var(--bdMgr-ease),
    background 0.55s var(--bdMgr-ease);
}

body.bdMgrPersonal .bdMgrTopnav {
  border-color: #2c2a34;
  background: rgba(20, 19, 24, 0.85);
}

/* ── Logo ── */
.bdMgrNavLogo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bdMgrLogoMark {
  width: 30px;
  height: 30px;
  background: var(--site-text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.55s var(--bdMgr-ease);
}

body.bdMgrPersonal .bdMgrLogoMark {
  background: var(--site-secondary-color);
}

.bdMgrLogoDotInner {
  width: 9px;
  height: 9px;
  background: var(--site-primary-color);
  border-radius: 50%;
}

.bdMgrLogoText {
  font-family: var(--site-secondary-font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--site-text-color);
  transition: color 0.55s var(--bdMgr-ease);
}

body.bdMgrPersonal .bdMgrLogoText {
  color: var(--site-secondary-color);
}

/* ── Space Switcher pill toggle ── */
.bdMgrSpaceSwitcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--site-secondary-color);
  border: 1px solid var(--site-quaternary-color);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto;
  transition:
    background 0.55s var(--bdMgr-ease),
    border-color 0.55s var(--bdMgr-ease);
}

body.bdMgrPersonal .bdMgrSpaceSwitcher {
  background: #1e1c23;
  border-color: #2c2a34;
}

.bdMgrSwBtn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 20px;
  border-radius: 100px;
  border: none;
  background: transparent;
  font-family: var(--site-primary-font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--site-text-muted-color);
  transition: all 0.3s var(--bdMgr-ease);
  white-space: nowrap;
}

.bdMgrSwBtn--active {
  background: var(--site-text-color);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

body.bdMgrPersonal .bdMgrSwBtn {
  color: #6e6b78;
}

body.bdMgrPersonal .bdMgrSwBtn--active {
  background: var(--site-secondary-color);
  color: #141318;
}

.bdMgrSwIcon {
  font-size: 14px;
}

/* ── Nav Right ── */
.bdMgrNavRight {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.bdMgrNavNotif {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--site-quaternary-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  position: relative;
  transition: border-color 0.55s;
}

body.bdMgrPersonal .bdMgrNavNotif {
  border-color: #2c2a34;
}

.bdMgrNotifPip {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 6px;
  height: 6px;
  background: var(--site-primary-color);
  border-radius: 50%;
  border: 1.5px solid var(--site-secondary-color);
  transition: border-color 0.55s;
}

body.bdMgrPersonal .bdMgrNotifPip {
  border-color: #141318;
}

.bdMgrNavAvatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--site-text-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.55s;
}

body.bdMgrPersonal .bdMgrNavAvatar {
  background: #3a3750;
  color: var(--site-secondary-color);
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.bdMgrHero {
  padding: 52px 40px 36px;
  position: relative;
}

.bdMgrModeLabelStrip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--site-quaternary-color);
  color: var(--site-text-muted-color);
  transition: all 0.55s var(--bdMgr-ease);
  background: #ffffff;
}

body.bdMgrPersonal .bdMgrModeLabelStrip {
  border-color: #2c2a34;
  color: #6e6b78;
}

.bdMgrModeDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--site-primary-color);
  animation: bdMgrPulseDot 2.5s ease-in-out infinite;
}

@keyframes bdMgrPulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.bdMgrHeroGreeting {
  font-family: var(--site-secondary-font);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--site-text-color);
  margin-bottom: 10px;
  transition: color 0.55s var(--bdMgr-ease);
}

body.bdMgrPersonal .bdMgrHeroGreeting {
  color: var(--site-secondary-color);
}

.bdMgrHeroGreeting em {
  font-style: italic;
  color: var(--site-cta-color);
}

.bdMgrHeroSub {
  font-size: 15px;
  font-weight: 300;
  color: var(--site-text-muted-color);
  max-width: 420px;
  line-height: 1.6;
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrHeroSub {
  color: #6e6b78;
}

/* ─── SPACE PANELS ──────────────────────────────────────────────────── */
.bdMgrSpacePanels {
  position: relative;
  flex: 1;
  padding: 0 40px 60px;
}

.bdMgrSpacePanel {
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s var(--bdMgr-ease),
    transform 0.45s var(--bdMgr-ease);
}

.bdMgrSpacePanel--visible {
  position: relative;
  left: unset;
  right: unset;
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION HEAD ──────────────────────────────────────────────────── */
.bdMgrSectionHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}

.bdMgrSectionTitle {
  font-family: var(--site-secondary-font);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--site-text-color);
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrSectionTitle {
  color: var(--site-secondary-color);
}

.bdMgrSectionHint {
  font-size: 13px;
  color: var(--site-text-muted-color);
  font-weight: 300;
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrSectionHint {
  color: #6e6b78;
}

/* ─── SECTION DIVIDER ───────────────────────────────────────────────── */
.bdMgrSectionDivider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 22px;
}

.bdMgrSdLine {
  flex: 1;
  height: 1px;
  background: var(--site-quaternary-color);
  transition: background 0.55s;
}

body.bdMgrPersonal .bdMgrSdLine {
  background: #2c2a34;
}

.bdMgrSdLabel {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  white-space: nowrap;
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrSdLabel {
  color: #6e6b78;
}

/* ─── PRODUCT GRID ──────────────────────────────────────────────────── */
.bdMgrProductGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 1400px) {
  .bdMgrProductGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .bdMgrProductGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .bdMgrProductGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bdMgrProductGrid {
    grid-template-columns: 1fr;
  }
}

/* ─── PERSONAL GRID — mirrors bdMgrProductGrid exactly ──────────────── */
.bdMgrPersonalGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

/* At 4-col: personalHero collapses to span 1 so all 4 cards stay in 1 row */
@media (max-width: 1400px) {
  .bdMgrPersonalGrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bdMgrCard--personalHero {
    grid-column: span 1;
  }
}

/* At 3-col: personalHero re-expands to span 2 → wide + 1 in row 1, 2 cards in row 2 */
@media (max-width: 1100px) {
  .bdMgrPersonalGrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bdMgrCard--personalHero {
    grid-column: span 2;
  }
}

/* At 2-col: personalHero span 1 → paired rows */
@media (max-width: 780px) {
  .bdMgrPersonalGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bdMgrCard--personalHero {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .bdMgrPersonalGrid {
    grid-template-columns: 1fr;
  }
}

/* ─── PRODUCT CARD ──────────────────────────────────────────────────── */
.bdMgrProdCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  padding: 22px 20px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.55s var(--bdMgr-ease),
    border-color 0.55s var(--bdMgr-ease),
    transform 0.22s var(--bdMgr-ease-spring),
    box-shadow 0.22s var(--bdMgr-ease);
  animation: bdMgrCardIn 0.5s var(--bdMgr-ease) both;
}

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

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

body.bdMgrPersonal .bdMgrProdCard {
  background: #1e1c23;
  border-color: #2c2a34;
}

.bdMgrProdCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

body.bdMgrPersonal .bdMgrProdCard:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  border-color: #3e3b4a;
}

/* Shine sweep on hover */
.bdMgrProdCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s var(--bdMgr-ease);
  pointer-events: none;
}

.bdMgrProdCard:hover::before {
  transform: translateX(100%);
}

/* ── Card stagger delays ── */
.bdMgrProdCard:nth-child(1) {
  animation-delay: 0.05s;
}

.bdMgrProdCard:nth-child(2) {
  animation-delay: 0.1s;
}

.bdMgrProdCard:nth-child(3) {
  animation-delay: 0.15s;
}

.bdMgrProdCard:nth-child(4) {
  animation-delay: 0.18s;
}

.bdMgrProdCard:nth-child(5) {
  animation-delay: 0.21s;
}

.bdMgrProdCard:nth-child(6) {
  animation-delay: 0.24s;
}

.bdMgrProdCard:nth-child(7) {
  animation-delay: 0.27s;
}

.bdMgrProdCard:nth-child(8) {
  animation-delay: 0.3s;
}

.bdMgrProdCard:nth-child(9) {
  animation-delay: 0.33s;
}

.bdMgrProdCard:nth-child(10) {
  animation-delay: 0.36s;
}

/* Prevent re-animation after space switch */
.bdMgrNoAnim .bdMgrProdCard {
  animation: none !important;
}

/* ─── CARD ICON WRAP ─────────────────────────────────────────────────── */
.bdMgrCardIconWrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.55s;
}

/* ─── CARD TITLE ─────────────────────────────────────────────────────── */
.bdMgrCardTitle {
  font-family: var(--site-secondary-font);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: var(--site-text-color);
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrCardTitle {
  color: var(--site-secondary-color);
}

/* ─── CARD DESCRIPTION ───────────────────────────────────────────────── */
.bdMgrCardDesc {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--site-text-muted-color);
  flex: 1;
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrCardDesc {
  color: #6e6b78;
}

/* ─── CARD FOOTER ────────────────────────────────────────────────────── */
.bdMgrCardFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--site-quaternary-color);
  margin-top: auto;
  transition: border-color 0.55s;
}

body.bdMgrPersonal .bdMgrCardFoot {
  border-color: #2c2a34;
}

/* ─── CARD STATUS BADGE ──────────────────────────────────────────────── */
.bdMgrCardStatus {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
}

.bdMgrStatus--active {
  background: #e5f7ed;
  color: #1a7a4a;
}

.bdMgrStatus--free {
  background: #e5f7ed;
  color: #1a7a4a;
}

.bdMgrStatus--new {
  background: #fff0ea;
  color: #f15a25;
}

.bdMgrStatus--explore {
  background: #eef2ff;
  color: #2255e8;
}

.bdMgrStatus--locked {
  background: #f5f5f5;
  color: #999;
}

body.bdMgrPersonal .bdMgrStatus--active {
  background: rgba(26, 122, 74, 0.2);
  color: #5dd896;
}

body.bdMgrPersonal .bdMgrStatus--free {
  background: rgba(26, 122, 74, 0.2);
  color: #5dd896;
}

body.bdMgrPersonal .bdMgrStatus--new {
  background: rgba(241, 90, 37, 0.2);
  color: #ff8a60;
}

body.bdMgrPersonal .bdMgrStatus--explore {
  background: rgba(34, 85, 232, 0.2);
  color: #7a9fff;
}

body.bdMgrPersonal .bdMgrStatus--locked {
  background: rgba(255, 255, 255, 0.08);
  color: #666;
}

/* ─── CARD ARROW ─────────────────────────────────────────────────────── */
.bdMgrCardArrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--site-quaternary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--site-text-muted-color);
  transition: all 0.2s;
}

body.bdMgrPersonal .bdMgrCardArrow {
  border-color: #2c2a34;
  color: #6e6b78;
}

.bdMgrProdCard:hover .bdMgrCardArrow {
  background: var(--site-primary-color);
  border-color: var(--site-primary-color);
  color: #fff;
}

/* ─── SPECIAL CARD: ESSENTIALS (wide, dark gradient) ─────────────────── */
.bdMgrCard--essentials {
  background: linear-gradient(135deg, #1c1a16 0%, #2c2820 100%);
  border-color: transparent;
  grid-column: span 2;
}

.bdMgrCard--essentials .bdMgrCardTitle {
  color: #fff;
}

.bdMgrCard--essentials .bdMgrCardDesc {
  color: rgba(255, 255, 255, 0.5);
}

.bdMgrCard--essentials .bdMgrCardFoot {
  border-color: rgba(255, 255, 255, 0.1);
}

.bdMgrCard--essentials .bdMgrCardArrow {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

.bdMgrCard--essentials:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bdMgrEssentialsLabel {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
  font-weight: 500;
}

.bdMgrEssentialsMeta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bdMgrEssentialsFeatures {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.bdMgrEfPill {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* ─── SPECIAL CARD: AI WALLET (glowing dark) ────────────────────────── */
.bdMgrCard--wallet {
  background: linear-gradient(145deg, #131a2e, #1a2545);
  border-color: rgba(34, 85, 232, 0.3);
  position: relative;
}

.bdMgrCard--wallet::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(34, 85, 232, 0.6),
    transparent,
    rgba(241, 90, 37, 0.3)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bdMgrCard--wallet .bdMgrCardTitle {
  color: var(--site-secondary-color);
}

.bdMgrCard--wallet .bdMgrCardDesc {
  color: rgba(240, 237, 232, 0.45);
}

.bdMgrCard--wallet .bdMgrCardFoot {
  border-color: rgba(255, 255, 255, 0.08);
}

.bdMgrCard--wallet .bdMgrCardArrow {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.bdMgrWalletHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bdMgrWalletIconWrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(34, 85, 232, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.bdMgrWalletMeta {
  text-align: right;
}

.bdMgrWalletBalance {
  font-family: var(--site-secondary-font);
  font-size: 26px;
  font-weight: 600;
  color: var(--site-secondary-color);
  letter-spacing: -0.5px;
}

.bdMgrWalletSub {
  font-size: 11px;
  color: rgba(241, 90, 37, 0.9);
}

.bdMgrWalletStatusBadge {
  background: rgba(34, 85, 232, 0.25);
  color: #7a9fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
}

.bdMgrWalletArrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.bdMgrCard--wallet:hover .bdMgrWalletArrow {
  background: var(--site-tertiary-color);
  border-color: var(--site-tertiary-color);
  color: #fff;
}

.bdMgrWalletFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

/* ─── SPECIAL CARD: PERSONAL HERO (wide, dark) ───────────────────────── */
.bdMgrCard--personalHero {
  grid-column: span 2;
  background: linear-gradient(145deg, #1c2d64, #0f1a3d);
  border-color: transparent;
}

.bdMgrCard--personalHero .bdMgrCardTitle {
  color: var(--site-secondary-color);
}

.bdMgrCard--personalHero .bdMgrCardDesc {
  color: rgba(240, 237, 232, 0.5);
}

.bdMgrCard--personalHero .bdMgrCardFoot {
  border-color: rgba(255, 255, 255, 0.1);
}

.bdMgrCard--personalHero .bdMgrCardArrow {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

body.bdMgrPersonal .bdMgrCard--personalHero {
  background: linear-gradient(145deg, #1a2545, #131a2e);
  border-color: rgba(34, 85, 232, 0.25);
}

/* ─── MINI CARD PREVIEW (inside personal hero) ───────────────────────── */
.bdMgrMiniCardPreview {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #2255e8, #1c2d64);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  gap: 12px;
  margin-top: 4px;
}

.bdMgrMcpAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--site-secondary-font);
  font-size: 16px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.bdMgrMcpInfo {
  flex: 1;
}

.bdMgrMcpName {
  font-family: var(--site-secondary-font);
  font-size: 15px;
  font-weight: 600;
  color: white;
}

.bdMgrMcpRole {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.bdMgrMcpQr {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 5px;
  opacity: 0.9;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 1px;
  padding: 4px;
}

.bdMgrQrCell {
  background: #1a1916;
  border-radius: 1px;
}

.bdMgrQrCell--w {
  background: transparent;
}

/* ─── WELCOME BANNER ─────────────────────────────────────────────────── */
.bdMgrWelcomeBanner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  margin-bottom: 26px;
  transition:
    background 0.55s,
    border-color 0.55s;
}

body.bdMgrPersonal .bdMgrWelcomeBanner {
  background: #1e1c23;
  border-color: #2c2a34;
}

.bdMgrWbAvatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--site-text-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--site-secondary-font);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.55s;
}

body.bdMgrPersonal .bdMgrWbAvatar {
  background: #3a3750;
}

.bdMgrWbInfo {
  flex: 1;
}

.bdMgrWbName {
  font-family: var(--site-secondary-font);
  font-size: 19px;
  font-weight: 600;
  color: var(--site-text-color);
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrWbName {
  color: var(--site-secondary-color);
}

.bdMgrWbMeta {
  font-size: 13px;
  color: var(--site-text-muted-color);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.55s;
}

body.bdMgrPersonal .bdMgrWbMeta {
  color: #6e6b78;
}

.bdMgrWbSep {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.5;
}

.bdMgrWbQuick {
  display: flex;
  gap: 8px;
}

.bdMgrWbQBtn {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--site-quaternary-color);
  background: transparent;
  font-family: var(--site-primary-font);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  color: var(--site-text-color);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.bdMgrWbQBtn:hover {
  background: var(--site-secondary-color);
}

.bdMgrWbQBtn--primary {
  background: var(--site-text-color);
  color: white;
  border-color: var(--site-text-color);
}

.bdMgrWbQBtn--primary:hover {
  opacity: 0.85;
}

body.bdMgrPersonal .bdMgrWbQBtn {
  border-color: #2c2a34;
  color: var(--site-secondary-color);
}

body.bdMgrPersonal .bdMgrWbQBtn:hover {
  background: #2c2a34;
}

body.bdMgrPersonal .bdMgrWbQBtn--primary {
  background: var(--site-secondary-color);
  color: #141318;
  border-color: var(--site-secondary-color);
}

/* ─── ICON COLOR VARIANTS ────────────────────────────────────────────── */
.bdMgrIc--sand {
  background: #f2efe8;
}

.bdMgrIc--cream {
  background: #fbf5ee;
}

.bdMgrIc--blue {
  background: #eaf0ff;
}

.bdMgrIc--green {
  background: #e5f7ed;
}

.bdMgrIc--amber {
  background: #fff4e0;
}

.bdMgrIc--rose {
  background: #ffecec;
}

.bdMgrIc--purple {
  background: #f0ecff;
}

.bdMgrIc--teal {
  background: #e4f8f7;
}

.bdMgrIc--slate {
  background: #f0f2f7;
}

.bdMgrIc--warm {
  background: #fff0eb;
}

.bdMgrIc--dark {
  background: #1c1a16;
}

body.bdMgrPersonal .bdMgrIc--sand {
  background: rgba(255, 255, 255, 0.07);
}

body.bdMgrPersonal .bdMgrIc--cream {
  background: rgba(255, 255, 255, 0.07);
}

body.bdMgrPersonal .bdMgrIc--blue {
  background: rgba(90, 130, 255, 0.15);
}

body.bdMgrPersonal .bdMgrIc--green {
  background: rgba(26, 122, 74, 0.2);
}

body.bdMgrPersonal .bdMgrIc--amber {
  background: rgba(200, 150, 26, 0.2);
}

body.bdMgrPersonal .bdMgrIc--rose {
  background: rgba(200, 75, 100, 0.2);
}

body.bdMgrPersonal .bdMgrIc--purple {
  background: rgba(120, 80, 220, 0.2);
}

body.bdMgrPersonal .bdMgrIc--teal {
  background: rgba(26, 160, 140, 0.2);
}

body.bdMgrPersonal .bdMgrIc--slate {
  background: rgba(255, 255, 255, 0.07);
}

body.bdMgrPersonal .bdMgrIc--warm {
  background: rgba(200, 75, 26, 0.18);
}

/* ─── PAGE FOOTER ────────────────────────────────────────────────────── */
.bdMgrPageFooter {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--site-quaternary-color);
  font-size: 12px;
  color: var(--site-text-muted-color);
  transition:
    border-color 0.55s,
    color 0.55s;
}

body.bdMgrPersonal .bdMgrPageFooter {
  border-color: #2c2a34;
  color: #6e6b78;
}

.bdMgrPageFooter .bdMgrLogoDotInner {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
}

.bdMgrFooterMuted {
  opacity: 0.4;
}

.bdMgrFooterVersion {
  margin-left: auto;
  opacity: 0.45;
}

.whatsAppIcon {
  position: fixed;
  right: 20px;
  z-index: 123;
  bottom: 10px;
  animation: float 3s ease-in-out infinite;
}

.whatsAppIcon a {
  background-color: #3fba38;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(12px, 1.1vw, 16px);
  box-shadow: 0 0 0 rgba(63, 186, 56, 0.4);
  animation: pulse 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  padding: 12px 15px;
}

.whatsAppIcon a i {
  vertical-align: middle;
  font-size: 30px;
}

.whatsAppIcon .btn-text {
  display: none;
}

.whatsAppIcon a:hover .btn-text {
  display: inline;
  transition: 0.3s;
}

.whatsAppIcon a:hover i {
  animation: wiggle 0.6s ease-in-out;
}

/* ─── LOGO IMAGE STYLES ──────────────────────────────────────────────── */
.bdMgrNavLogoImg {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  transition: filter 0.55s var(--bdMgr-ease);
}

body.bdMgrPersonal .bdMgrNavLogoImg {
  filter: brightness(0) invert(1);
}

.bdMgrFooterLogoImg {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  transition:
    filter 0.55s var(--bdMgr-ease),
    opacity 0.55s;
}

body.bdMgrPersonal .bdMgrFooterLogoImg {
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────────────────────── */
.bdMgrWaFloat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 14px;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--site-primary-font);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.22s var(--bdMgr-ease-spring),
    box-shadow 0.22s var(--bdMgr-ease),
    background 0.2s;
  will-change: transform;
}

.bdMgrWaFloat:hover {
  background: #1db954;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
  text-decoration: none;
}

.bdMgrWaFloat:active {
  transform: translateY(0) scale(0.98);
}

.bdMgrWaIcon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.bdMgrWaLabel {
  white-space: nowrap;
}

/* ─── RESPONSIVE: NAV COLLAPSE ──────────────────────────────────────── */

/* Tablet — 768 – 1024px */
@media (max-width: 1024px) {
  .bdMgrTopnav {
    padding: 0 24px;
  }

  .bdMgrHero {
    padding: 40px 24px 28px;
  }

  .bdMgrSpacePanels {
    padding: 0 24px 48px;
  }

  .bdMgrSpacePanel {
    left: 24px;
    right: 24px;
  }

  .bdMgrSpacePanel--visible {
    left: unset;
    right: unset;
  }

  /* cascade fix */
  .bdMgrPageFooter {
    padding: 18px 24px;
  }
}

/* Phablet — 640 – 768px */
@media (max-width: 768px) {
  .bdMgrTopnav {
    padding: 0 16px;
    height: 56px;
  }

  .bdMgrHero {
    padding: 28px 16px 20px;
  }

  .bdMgrSpacePanels {
    padding: 0 16px 40px;
  }

  .bdMgrSpacePanel {
    left: 16px;
    right: 16px;
  }

  .bdMgrSpacePanel--visible {
    left: unset;
    right: unset;
  }

  /* cascade fix */
  .bdMgrPageFooter {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .bdMgrFooterVersion {
    margin-left: 0;
  }

  .bdMgrWelcomeBanner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .bdMgrWbQuick {
    width: 100%;
    justify-content: flex-start;
  }

  .bdMgrWbQBtn {
    flex: 1;
    justify-content: center;
  }
}

/* Mobile — ≤ 640px */
@media (max-width: 640px) {
  .bdMgrTopnav {
    padding: 0 14px;
    height: 52px;
  }

  .bdMgrNavLogoImg {
    height: 26px;
  }

  .bdMgrSwBtn {
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }

  .bdMgrSwIcon {
    font-size: 13px;
  }

  .bdMgrHero {
    padding: 24px 14px 18px;
  }

  .bdMgrSpacePanels {
    padding: 0 14px 36px;
  }

  .bdMgrSpacePanel {
    left: 14px;
    right: 14px;
  }

  .bdMgrSpacePanel--visible {
    left: unset;
    right: unset;
  }

  /* cascade fix */
  .bdMgrPageFooter {
    padding: 12px 14px;
  }

  .bdMgrWelcomeBanner {
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .bdMgrWbQuick {
    width: 100%;
  }
}

/* Single-column: collapse span-2 cards to full width */
@media (max-width: 600px) {
  .bdMgrCard--essentials {
    grid-column: span 1;
  }

  .bdMgrCard--personalHero {
    grid-column: span 1;
  }

  .bdMgrSpacePanel {
    left: 14px;
    right: 14px;
  }

  .bdMgrSpacePanel--visible {
    left: unset;
    right: unset;
  }
}

/* Small mobile — ≤ 480px: icon-only switcher */
@media (max-width: 480px) {
  .bdMgrSwBtn {
    padding: 6px 10px;
    font-size: 0;
  }

  .bdMgrSwIcon {
    font-size: 16px;
  }

  .bdMgrNavRight {
    gap: 8px;
  }

  .bdMgrWaFloat {
    bottom: 16px;
    right: 16px;
    padding: 11px 16px 11px 12px;
    font-size: 12px;
  }

  .bdMgrWaIcon {
    width: 18px;
    height: 18px;
  }
}

/* Extra small — WhatsApp icon-only */
@media (max-width: 380px) {
  .bdMgrWaLabel {
    display: none;
  }

  .bdMgrWaFloat {
    padding: 13px;
    border-radius: 50%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PERSONAL SPACE — LIGHT MODE OVERRIDES
   Neutralises every dark-theme rule so Personal Space uses the same
   light palette as Business Space.
   ═══════════════════════════════════════════════════════════════════ */

/* Nav */
body.bdMgrPersonal .bdMgrTopnav {
  border-color: var(--site-quaternary-color);
  background: rgba(242, 244, 255, 0.88);
}

body.bdMgrPersonal .bdMgrLogoMark {
  background: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrLogoText {
  color: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrNavLogoImg {
  filter: none;
}

body.bdMgrPersonal .bdMgrSpaceSwitcher {
  background: var(--site-secondary-color);
  border-color: var(--site-quaternary-color);
}

body.bdMgrPersonal .bdMgrSwBtn {
  color: var(--site-text-muted-color);
}

body.bdMgrPersonal .bdMgrSwBtn--active {
  background: var(--site-text-color);
  color: #fff;
}

body.bdMgrPersonal .bdMgrNavNotif {
  border-color: var(--site-quaternary-color);
}

body.bdMgrPersonal .bdMgrNotifPip {
  border-color: var(--site-secondary-color);
}

body.bdMgrPersonal .bdMgrNavAvatar {
  background: var(--site-text-color);
  color: #fff;
}

/* Ambient blobs — same as business */
body.bdMgrPersonal .bdMgrAmbient--1 {
  opacity: 1;
  background: rgba(34, 85, 232, 0.08);
}

body.bdMgrPersonal .bdMgrAmbient--2 {
  opacity: 0;
}

/* Hero */
body.bdMgrPersonal .bdMgrModeLabelStrip {
  border-color: var(--site-quaternary-color);
  color: var(--site-text-muted-color);
}

body.bdMgrPersonal .bdMgrHeroGreeting {
  color: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrHeroSub {
  color: var(--site-text-muted-color);
}

/* Cards */
body.bdMgrPersonal .bdMgrProdCard {
  background: #ffffff;
  border-color: var(--site-quaternary-color);
}

body.bdMgrPersonal .bdMgrProdCard:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

body.bdMgrPersonal .bdMgrCardTitle {
  color: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrCardDesc {
  color: var(--site-text-muted-color);
}

body.bdMgrPersonal .bdMgrCardFoot {
  border-color: var(--site-quaternary-color);
}

body.bdMgrPersonal .bdMgrCardArrow {
  border-color: var(--site-quaternary-color);
  color: var(--site-text-muted-color);
}

/* Status badges */
body.bdMgrPersonal .bdMgrStatus--active {
  background: #e5f7ed;
  color: #1a7a4a;
}

body.bdMgrPersonal .bdMgrStatus--free {
  background: #e5f7ed;
  color: #1a7a4a;
}

body.bdMgrPersonal .bdMgrStatus--new {
  background: #fff0ea;
  color: #f15a25;
}

body.bdMgrPersonal .bdMgrStatus--explore {
  background: #eef2ff;
  color: #2255e8;
}

body.bdMgrPersonal .bdMgrStatus--locked {
  background: #f5f5f5;
  color: #999;
}

/* Welcome banner */
body.bdMgrPersonal .bdMgrWelcomeBanner {
  background: #ffffff;
  border-color: var(--site-quaternary-color);
}

body.bdMgrPersonal .bdMgrWbAvatar {
  background: var(--site-text-color);
  color: #fff;
}

body.bdMgrPersonal .bdMgrWbName {
  color: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrWbMeta {
  color: var(--site-text-muted-color);
}

body.bdMgrPersonal .bdMgrWbQBtn {
  border-color: var(--site-quaternary-color);
  color: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrWbQBtn:hover {
  background: var(--site-secondary-color);
}

body.bdMgrPersonal .bdMgrWbQBtn--primary {
  background: var(--site-text-color);
  color: #fff;
  border-color: var(--site-text-color);
}

body.bdMgrPersonal .bdMgrWbQBtn--primary:hover {
  opacity: 0.85;
  background: var(--site-text-color);
}

/* Icon backgrounds */
body.bdMgrPersonal .bdMgrIc--sand {
  background: #f2efe8;
}

body.bdMgrPersonal .bdMgrIc--cream {
  background: #fbf5ee;
}

body.bdMgrPersonal .bdMgrIc--blue {
  background: #eaf0ff;
}

body.bdMgrPersonal .bdMgrIc--green {
  background: #e5f7ed;
}

body.bdMgrPersonal .bdMgrIc--amber {
  background: #fff4e0;
}

body.bdMgrPersonal .bdMgrIc--rose {
  background: #ffecec;
}

body.bdMgrPersonal .bdMgrIc--purple {
  background: #f0ecff;
}

body.bdMgrPersonal .bdMgrIc--teal {
  background: #e4f8f7;
}

body.bdMgrPersonal .bdMgrIc--slate {
  background: #f0f2f7;
}

body.bdMgrPersonal .bdMgrIc--warm {
  background: #fff0eb;
}

/* Footer */
body.bdMgrPersonal .bdMgrPageFooter {
  border-color: var(--site-quaternary-color);
  color: var(--site-text-muted-color);
}

body.bdMgrPersonal .bdMgrFooterLogoImg {
  filter: none;
  opacity: 0.65;
}

/* ─── AVATAR DROPDOWN ───────────────────────────────────────────────── */
.bdMgrAvatarWrap {
  position: relative;
}

.bdMgrAvatarDropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 186px;
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 14px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s var(--bdMgr-ease),
    transform 0.18s var(--bdMgr-ease),
    visibility 0s 0.18s;
  z-index: 300;
}

.bdMgrAvatarDropdown.bdMgrDdOpen {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s var(--bdMgr-ease),
    transform 0.18s var(--bdMgr-ease);
}

.bdMgrAvatarDdUser {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 8px;
}

.bdMgrAvatarDdAvatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--site-primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.bdMgrAvatarDdMeta {
  flex: 1;
  min-width: 0;
}

.bdMgrAvatarDdName {
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdMgrAvatarDdEmail {
  font-size: 11px;
  color: var(--site-text-muted-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdMgrAvatarDdDivider {
  height: 1px;
  background: var(--site-quaternary-color);
  margin: 4px 6px;
}

.bdMgrAvatarDdItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--site-primary-font);
  color: var(--site-text-color);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.bdMgrAvatarDdItem:hover {
  background: var(--site-secondary-color);
  color: var(--site-text-color);
}

.bdMgrAvatarDdItem--danger {
  color: #d93025;
}

.bdMgrAvatarDdItem--danger:hover {
  background: #fff0ef;
  color: #d93025;
}

.bdMgrAvatarDdIcon {
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ─── BUSINESS SWITCHER ─────────────────────────────────────────────── */
.bdMgrWbNameRow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bdMgrBizSwitchBtn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--site-quaternary-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--site-text-muted-color);
  padding: 0;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}

.bdMgrBizSwitchBtn:hover {
  background: var(--site-secondary-color);
  color: var(--site-primary-color);
  border-color: var(--site-primary-color);
}

.bdMgrBizSwitchBtn svg {
  width: 11px;
  height: 11px;
  transition: transform 0.2s var(--bdMgr-ease);
}

.bdMgrBizSwitchBtn.bdMgrDdOpen {
  background: var(--site-secondary-color);
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

.bdMgrBizSwitchBtn.bdMgrDdOpen svg {
  transform: rotate(180deg);
}

.bdMgrBizDropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 14px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s var(--bdMgr-ease),
    transform 0.18s var(--bdMgr-ease),
    visibility 0s 0.18s;
  z-index: 300;
}

.bdMgrBizDropdown.bdMgrDdOpen {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s var(--bdMgr-ease),
    transform 0.18s var(--bdMgr-ease);
}

.bdMgrBizDdLabel {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  padding: 6px 12px 4px;
}

.bdMgrBizDdItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--site-primary-font);
  color: var(--site-text-color);
  cursor: pointer;
  transition: background 0.15s;
}

.bdMgrBizDdItem:hover {
  background: var(--site-secondary-color);
}

.bdMgrBizDdAvatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--site-primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.bdMgrBizDdName {
  flex: 1;
}

.bdMgrBizDdCheck {
  width: 16px;
  color: var(--site-primary-color);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.bdMgrBizDdDivider {
  height: 1px;
  background: var(--site-quaternary-color);
  margin: 4px 6px;
}

.bdMgrBizDdAdd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--site-primary-font);
  color: var(--site-primary-color);
  cursor: pointer;
  transition: background 0.15s;
}

.bdMgrBizDdAdd:hover {
  background: var(--site-secondary-color);
}

.bdMgrBizDdAddIcon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px dashed var(--site-quaternary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
}

/* ─── MOBILE: HIDE BUSINESS META ────────────────────────────────────── */
@media (max-width: 640px) {
  .bdMgrWbMeta {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   WEBSITE PAGE — bdMgrWeb namespace
   Used by bigdot-website.html (non-upgraded) and
   bigdot-website-pro.html (active subscription)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── PAGE SCAFFOLD ──────────────────────────────────────────────── */
.bdMgrWebPageWrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAV — breadcrumb & language additions ──────────────────────── */
.bdMgrWebNavLeft {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.bdMgrWebNavDivider {
  width: 1px;
  height: 20px;
  background: var(--site-quaternary-color);
  margin: 0 18px;
  flex-shrink: 0;
}

.bdMgrWebNavBreadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.bdMgrWebNavBack {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.bdMgrWebNavBack:hover {
  background: var(--site-quaternary-color);
  color: var(--site-text-color);
}

.bdMgrWebNavSep {
  color: var(--site-quaternary-color);
  font-size: 16px;
  flex-shrink: 0;
}

.bdMgrWebNavCurrent {
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color);
  white-space: nowrap;
}

.bdMgrWebNavCenter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.bdMgrWebNavPill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--site-quaternary-color);
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color);
}

.bdMgrWebPip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.bdMgrWebPip--trial {
  background: #d4a012;
}

.bdMgrWebPip--active {
  background: #1a7a4a;
}

.bdMgrWebNavRight {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language selector */
.bdMgrWebLangSel {
  position: relative;
}

.bdMgrWebLangBtn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--site-quaternary-color);
  background: transparent;
  font-family: var(--site-primary-font);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--site-text-color);
  cursor: pointer;
  transition: all 0.2s;
}

.bdMgrWebLangBtn:hover {
  background: var(--site-quaternary-color);
}

.bdMgrWebLangCaret {
  font-size: 9px;
  opacity: 0.5;
}

.bdMgrWebLangDd {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 14px;
  padding: 6px;
  min-width: 170px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s var(--bdMgr-ease),
    transform 0.18s var(--bdMgr-ease),
    visibility 0s 0.18s;
  z-index: 300;
}

.bdMgrWebLangDd.bdMgrDdOpen {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s var(--bdMgr-ease),
    transform 0.18s var(--bdMgr-ease);
}

.bdMgrWebLangOpt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s;
  color: var(--site-text-color);
}

.bdMgrWebLangOpt:hover {
  background: var(--site-secondary-color);
}

.bdMgrWebLangOpt--selected {
  background: var(--site-secondary-color);
  font-weight: 500;
}

.bdMgrWebLangCheck {
  margin-left: auto;
  color: var(--site-cta-color);
  font-size: 13px;
}

.bdMgrWebNavNotif {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--site-quaternary-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  position: relative;
}

.bdMgrWebNotifPip {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 6px;
  height: 6px;
  background: var(--site-cta-color);
  border-radius: 50%;
  border: 1.5px solid var(--site-secondary-color);
}

/* View-conditional nav parts */
.bdMgrWebViewUpgrade .bdMgrWebLangSel {
  display: none;
}

.bdMgrWebViewUpgrade .bdMgrWebNavPill {
  display: none;
}

.bdMgrWebViewActive .bdMgrWebNavPill {
  display: flex;
}

/* ─── DEMO BAR (view switcher) ───────────────────────────────────── */
.bdMgrWebDemoBar {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--site-text-color);
  border-radius: 100px;
  padding: 5px;
  display: flex;
  gap: 3px;
  z-index: 999;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.bdMgrWebDemoBtn {
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--site-primary-font);
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  transition: all 0.25s;
  white-space: nowrap;
}

.bdMgrWebDemoBtn--on {
  background: white;
  color: var(--site-text-color);
}

/* View visibility */
.bdMgrWebUpgradeView {
  display: block;
}

.bdMgrWebActiveView {
  display: none;
}

.bdMgrWebViewActive .bdMgrWebUpgradeView {
  display: none;
}

.bdMgrWebViewActive .bdMgrWebActiveView {
  display: block;
}

.bdMgrWebViewUpgrade .bdMgrWebUpgradeView {
  display: block;
}

.bdMgrWebViewUpgrade .bdMgrWebActiveView {
  display: none;
}

/* ─── PAGE FOOTER ────────────────────────────────────────────────── */
.bdMgrWebPageFooter {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--site-quaternary-color);
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin-top: auto;
}

/* ─── SHARED BUTTONS (website page) ─────────────────────────────── */
.bdMgrWebBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  background: var(--site-text-color);
  color: white;
  border: none;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.bdMgrWebBtnPrimary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: white;
}

.bdMgrWebBtnPrimary--cta {
  background: var(--site-cta-color);
}

.bdMgrWebBtnPrimary--cta:hover {
  opacity: 0.9;
}

.bdMgrWebBtnPrimary--accent {
  background: var(--site-primary-color);
}

.bdMgrWebBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  background: transparent;
  color: var(--site-text-color);
  border: 1px solid var(--site-quaternary-color);
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.bdMgrWebBtnGhost:hover {
  background: var(--site-quaternary-color);
  color: var(--site-text-color);
}

.bdMgrWebBtnSm {
  padding: 9px 20px;
  font-size: 13px;
}

/* ─── STATUS BADGES ──────────────────────────────────────────────── */
.bdMgrWebStatusActive {
  background: #e5f7ed;
  color: #1a7a4a;
}

.bdMgrWebStatusTrial {
  background: #fff4e0;
  color: #b87d0a;
}

.bdMgrWebStatusNew {
  background: #fff0ea;
  color: var(--site-cta-color);
}

.bdMgrWebStatusDraft {
  background: var(--site-secondary-color);
  color: var(--site-text-muted-color);
}

/* ─── SECTION HEADER HELPERS ─────────────────────────────────────── */
.bdMgrWebSectionEyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 10px;
}

.bdMgrWebSectionTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--site-text-color);
  margin-bottom: 6px;
}

.bdMgrWebSectionTitle em {
  font-style: italic;
  color: var(--site-cta-color);
}

.bdMgrWebSectionSub {
  font-size: 15px;
  font-weight: 300;
  color: var(--site-text-muted-color);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.6;
}

/* ═══ UPGRADE / MARKETING VIEW ═══════════════════════════════════════ */

/* ── Hero ── */
.bdMgrWebHero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 56px 40px 60px;
}

@media (max-width: 900px) {
  .bdMgrWebHero {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.bdMgrWebHeroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--site-quaternary-color);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 22px;
}

.bdMgrWebEyebrowDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--site-cta-color);
  animation: bdMgrWebPulseDot 2.5s ease-in-out infinite;
}

@keyframes bdMgrWebPulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.bdMgrWebHeroH1 {
  font-family: var(--site-secondary-font);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--site-text-color);
  max-width: 560px;
  margin-bottom: 18px;
}

.bdMgrWebHeroH1 em {
  font-style: italic;
  color: var(--site-cta-color);
}

.bdMgrWebHeroP {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--site-text-muted-color);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.bdMgrWebCtaRow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bdMgrWebTrialNote {
  font-size: 12px;
  color: var(--site-text-muted-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bdMgrWebTrialNote::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--site-quaternary-color);
}

/* Browser mockup */
.bdMgrWebBrowserWrap {
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.12));
}

.bdMgrWebBrowserChrome {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  overflow: hidden;
}

.bdMgrWebBrowserBar {
  background: var(--site-secondary-color);
  border-bottom: 1px solid var(--site-quaternary-color);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bdMgrWebBDots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.bdMgrWebBDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bdMgrWebBDot--r {
  background: #ff5f57;
}

.bdMgrWebBDot--y {
  background: #febc2e;
}

.bdMgrWebBDot--g {
  background: #28c840;
}

.bdMgrWebBUrl {
  flex: 1;
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--site-text-muted-color);
  font-family: monospace;
}

/* Mini site preview skeleton */
.bdMgrWebSpNav {
  background: #1c2d64;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bdMgrWebSpLogo {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
}

.bdMgrWebSpLinks {
  display: flex;
  gap: 8px;
}

.bdMgrWebSpLink {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.bdMgrWebSpHero {
  background: linear-gradient(135deg, #f2f4ff 0%, #e8ecf8 100%);
  padding: 28px 20px;
  text-align: center;
}

.bdMgrWebSpHeroTag {
  width: 60px;
  height: 5px;
  background: var(--site-cta-color);
  border-radius: 3px;
  margin: 0 auto 10px;
}

.bdMgrWebSpHeroH {
  width: 55%;
  height: 10px;
  background: var(--site-text-color);
  border-radius: 5px;
  margin: 0 auto 8px;
  opacity: 0.8;
}

.bdMgrWebSpHeroH2 {
  width: 40%;
  height: 10px;
  background: var(--site-text-color);
  border-radius: 5px;
  margin: 0 auto 12px;
  opacity: 0.6;
}

.bdMgrWebSpSub {
  width: 65%;
  height: 5px;
  background: var(--site-text-muted-color);
  border-radius: 3px;
  margin: 0 auto 6px;
  opacity: 0.5;
}

.bdMgrWebSpSub2 {
  width: 50%;
  height: 5px;
  background: var(--site-text-muted-color);
  border-radius: 3px;
  margin: 0 auto 18px;
  opacity: 0.35;
}

.bdMgrWebSpBtn {
  width: 80px;
  height: 22px;
  background: var(--site-cta-color);
  border-radius: 11px;
  margin: 0 auto;
}

.bdMgrWebSpCards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 16px;
  background: white;
}

.bdMgrWebSpCard {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid var(--site-quaternary-color);
}

.bdMgrWebSpCardIc {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.bdMgrWebSpCardLine {
  height: 4px;
  border-radius: 3px;
  background: var(--site-quaternary-color);
  margin-bottom: 4px;
}

.bdMgrWebSpCardLine--wide {
  width: 80%;
}

.bdMgrWebSpCardLine--med {
  width: 60%;
}

.bdMgrWebSpFooter {
  background: var(--site-secondary-color);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bdMgrWebSpFLine {
  height: 4px;
  border-radius: 3px;
  background: var(--site-quaternary-color);
  opacity: 0.6;
}

/* ── Features grid ── */
.bdMgrWebFeatures {
  padding: 0 40px 64px;
}

.bdMgrWebFeatGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 960px) {
  .bdMgrWebFeatGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .bdMgrWebFeatGrid {
    grid-template-columns: 1fr;
  }
}

.bdMgrWebFeatCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  padding: 28px 24px;
  transition:
    transform 0.22s var(--bdMgr-ease-spring),
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
  cursor: default;
  animation: bdMgrWebCardIn 0.5s var(--bdMgr-ease) both;
}

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

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

.bdMgrWebFeatCard:nth-child(1) {
  animation-delay: 0.05s;
}

.bdMgrWebFeatCard:nth-child(2) {
  animation-delay: 0.1s;
}

.bdMgrWebFeatCard:nth-child(3) {
  animation-delay: 0.14s;
}

.bdMgrWebFeatCard:nth-child(4) {
  animation-delay: 0.18s;
}

.bdMgrWebFeatCard:nth-child(5) {
  animation-delay: 0.22s;
}

.bdMgrWebFeatCard:nth-child(6) {
  animation-delay: 0.26s;
}

.bdMgrWebFeatCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s var(--bdMgr-ease);
  pointer-events: none;
}

.bdMgrWebFeatCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.bdMgrWebFeatCard:hover::before {
  transform: translateX(100%);
}

.bdMgrWebFeatIcon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.bdMgrWebFeatTitle {
  font-family: var(--site-secondary-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--site-text-color);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.bdMgrWebFeatDesc {
  font-size: 13px;
  font-weight: 300;
  color: var(--site-text-muted-color);
  line-height: 1.65;
}

/* ── Stats bar ── */
.bdMgrWebStatsBar {
  background: var(--site-primary-color);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 780px) {
  .bdMgrWebStatsBar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.bdMgrWebStatItem {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bdMgrWebStatItem:last-child {
  border-right: none;
}

.bdMgrWebStatNum {
  font-family: var(--site-secondary-font);
  font-size: 42px;
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.bdMgrWebStatNum em {
  font-style: italic;
  color: var(--site-cta-color);
}

.bdMgrWebStatLbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* ── Pricing ── */
.bdMgrWebPricing {
  padding: 64px 40px;
}

.bdMgrWebPricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  /* max-width: 1020px; */
}

@media (max-width: 820px) {
  .bdMgrWebPricingGrid {
    grid-template-columns: 1fr;
  }
}

.bdMgrWebPriceCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s var(--bdMgr-ease-spring),
    box-shadow 0.22s;
}

.bdMgrWebPriceCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
}

.bdMgrWebPriceCard--featured {
  background: var(--site-primary-color);
  border-color: var(--site-primary-color);
}

.bdMgrWebPriceCard--featured:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.bdMgrWebRecTag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--site-cta-color);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.bdMgrWebPriceTier {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 8px;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceTier {
  color: rgba(255, 255, 255, 0.45);
}

.bdMgrWebPriceName {
  font-family: var(--site-secondary-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--site-text-color);
  margin-bottom: 16px;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceName {
  color: white;
}

.bdMgrWebPriceRow {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.bdMgrWebPriceCurr {
  font-size: 18px;
  font-weight: 500;
  color: var(--site-text-color);
  margin-top: 4px;
}

.bdMgrWebPriceAmt {
  font-family: var(--site-secondary-font);
  font-size: 48px;
  font-weight: 500;
  color: var(--site-text-color);
  line-height: 1;
}

.bdMgrWebPricePer {
  font-size: 13px;
  color: var(--site-text-muted-color);
  align-self: flex-end;
  padding-bottom: 6px;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceCurr,
.bdMgrWebPriceCard--featured .bdMgrWebPriceAmt {
  color: white;
}

.bdMgrWebPriceCard--featured .bdMgrWebPricePer {
  color: rgba(255, 255, 255, 0.45);
}

.bdMgrWebPriceYearly {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin-bottom: 20px;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceYearly {
  color: rgba(255, 255, 255, 0.4);
}

.bdMgrWebPriceDivider {
  height: 1px;
  background: var(--site-quaternary-color);
  margin: 20px 0;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceDivider {
  background: rgba(255, 255, 255, 0.12);
}

.bdMgrWebPriceDesc {
  font-size: 13px;
  color: var(--site-text-muted-color);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceDesc {
  color: rgba(255, 255, 255, 0.55);
}

.bdMgrWebPriceFeats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.bdMgrWebPriceFeat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--site-text-color);
  font-weight: 300;
  line-height: 1.4;
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceFeat {
  color: rgba(255, 255, 255, 0.8);
}

.bdMgrWebPCheck {
  color: var(--site-cta-color);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bdMgrWebPriceCard--featured .bdMgrWebPCheck {
  color: #ff8a60;
}

.bdMgrWebPriceCta {
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  border: 1px solid var(--site-quaternary-color);
  background: transparent;
  color: var(--site-text-color);
  font-family: var(--site-primary-font);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.bdMgrWebPriceCta:hover {
  background: var(--site-secondary-color);
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceCta {
  background: var(--site-cta-color);
  color: white;
  border-color: var(--site-cta-color);
}

.bdMgrWebPriceCard--featured .bdMgrWebPriceCta:hover {
  opacity: 0.88;
}

/* ── FAQ ── */
.bdMgrWebFaq {
  padding: 0 40px 64px;
  /* max-width: 760px; */
}

.bdMgrWebFaqItem {
  border-bottom: 1px solid var(--site-quaternary-color);
}

.bdMgrWebFaqQ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  color: var(--site-text-color);
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--site-primary-font);
  text-align: left;
  gap: 12px;
}

.bdMgrWebFaqQ:hover {
  color: var(--site-cta-color);
}

.bdMgrWebFaqIcon {
  font-size: 18px;
  color: var(--site-text-muted-color);
  transition: transform 0.22s;
  flex-shrink: 0;
}

.bdMgrWebFaqItem--open .bdMgrWebFaqIcon {
  transform: rotate(45deg);
  color: var(--site-cta-color);
}

.bdMgrWebFaqA {
  font-size: 13.5px;
  color: var(--site-text-muted-color);
  font-weight: 300;
  line-height: 1.75;
  padding-bottom: 18px;
  display: none;
}

.bdMgrWebFaqItem--open .bdMgrWebFaqA {
  display: block;
}

/* ── Final CTA ── */
.bdMgrWebFinalCta {
  margin: 0 40px 60px;
  background: linear-gradient(
    135deg,
    var(--site-primary-color) 0%,
    #0f1a3d 100%
  );
  border-radius: 24px;
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.bdMgrWebFinalCta h2 {
  font-family: var(--site-secondary-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.bdMgrWebFinalCta h2 em {
  font-style: italic;
  color: var(--site-cta-color);
}

.bdMgrWebFinalCta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.bdMgrWebFinalCtaBtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ═══ ACTIVE DASHBOARD VIEW ═══════════════════════════════════════════ */

/* ── Context bar ── */
.bdMgrWebCtxBar {
  padding: 14px 40px;
  border-bottom: 1px solid var(--site-quaternary-color);
  background: rgba(242, 244, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bdMgrWebCtxLeft {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bdMgrWebProductIcon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eaf0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.bdMgrWebCtxInfo h2 {
  font-family: var(--site-secondary-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--site-text-color);
  letter-spacing: -0.2px;
}

.bdMgrWebCtxInfo p {
  font-size: 12.5px;
  color: var(--site-text-muted-color);
  margin-top: 2px;
}

.bdMgrWebCtxRight {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bdMgrWebCtxBadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

.bdMgrWebBadgeTrial {
  background: #fff4e0;
  color: #b87d0a;
  border: 1px solid #f0d898;
}

/* ── Trial nudge ── */
.bdMgrWebTrialNudge {
  margin: 20px 40px 0;
  background: linear-gradient(
    135deg,
    var(--site-primary-color) 0%,
    #0f1a3d 100%
  );
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bdMgrWebNudgeLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdMgrWebNudgeIcon {
  font-size: 18px;
  flex-shrink: 0;
}

.bdMgrWebNudgeText h4 {
  font-size: 13.5px;
  font-weight: 500;
  color: white;
}

.bdMgrWebNudgeText p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.bdMgrWebNudgeDays {
  font-size: 24px;
  font-family: var(--site-secondary-font);
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.bdMgrWebNudgeDays span {
  font-family: var(--site-primary-font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  display: block;
}

.bdMgrWebNudgeBtn {
  padding: 9px 22px;
  border-radius: 100px;
  background: var(--site-cta-color);
  color: white;
  border: none;
  font-family: var(--site-primary-font);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.bdMgrWebNudgeBtn:hover {
  opacity: 0.88;
}

/* ── Wizard ── */
.bdMgrWebWizard {
  padding: 24px 40px 0;
}

.bdMgrWebWizLabelRow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.bdMgrWebWizEyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
}

.bdMgrWebWizPct {
  background: var(--site-cta-color);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 100px;
}

.bdMgrWebWizCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 20px;
  overflow: hidden;
}

.bdMgrWebWizStepsBar {
  display: flex;
  border-bottom: 1px solid var(--site-quaternary-color);
  overflow-x: auto;
}

.bdMgrWebWizStep {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.18s;
  border-right: 1px solid var(--site-quaternary-color);
  position: relative;
  border-top: none;
  border-left: none;
  border-bottom: none;
  background: transparent;
  font-family: var(--site-primary-font);
  text-align: left;
}

.bdMgrWebWizStep:last-child {
  border-right: none;
}

.bdMgrWebWizStep:hover {
  background: var(--site-secondary-color);
}

.bdMgrWebWizStep--active {
  background: var(--site-secondary-color);
}

.bdMgrWebWizStep--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--site-primary-color);
}

.bdMgrWebWizStep--done::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a7a4a;
}

.bdMgrWebWizStepNum {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}

.bdMgrWebStepCircle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid var(--site-quaternary-color);
  color: var(--site-text-muted-color);
}

.bdMgrWebStepCircle--done {
  background: #1a7a4a;
  border-color: #1a7a4a;
  color: white;
  font-size: 12px;
}

.bdMgrWebStepCircle--active {
  background: var(--site-primary-color);
  border-color: var(--site-primary-color);
  color: white;
}

.bdMgrWebWizStepName {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--site-text-color);
}

.bdMgrWebWizStep:not(.bdMgrWebWizStep--active):not(.bdMgrWebWizStep--done)
  .bdMgrWebWizStepName {
  color: var(--site-text-muted-color);
}

.bdMgrWebWizStepStatus {
  font-size: 11px;
}

.bdMgrWebWizStep--done .bdMgrWebWizStepStatus {
  color: #1a7a4a;
}

.bdMgrWebWizStep--active .bdMgrWebWizStepStatus {
  color: var(--site-cta-color);
}

.bdMgrWebWizStep:not(.bdMgrWebWizStep--active):not(.bdMgrWebWizStep--done)
  .bdMgrWebWizStepStatus {
  color: var(--site-text-muted-color);
}

.bdMgrWebWizBody {
  padding: 28px;
}

.bdMgrWebWizStepTitle {
  font-family: var(--site-secondary-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--site-text-color);
  letter-spacing: -0.2px;
  margin-bottom: 5px;
}

.bdMgrWebWizStepDesc {
  font-size: 13.5px;
  color: var(--site-text-muted-color);
  font-weight: 300;
  margin-bottom: 26px;
  line-height: 1.6;
}

/* Template picker */
.bdMgrWebTmplGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

@media (max-width: 860px) {
  .bdMgrWebTmplGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bdMgrWebTmpl {
  border: 2px solid var(--site-quaternary-color);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.bdMgrWebTmpl:hover {
  border-color: var(--site-text-muted-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.bdMgrWebTmpl--selected {
  border-color: var(--site-cta-color);
  box-shadow: 0 0 0 3px rgba(241, 90, 37, 0.1);
}

.bdMgrWebTmplThumb {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
}

.bdMgrWebTmplBar {
  height: 4px;
  border-radius: 3px;
}

.bdMgrWebTmplGridMini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
}

.bdMgrWebTmplBlock {
  height: 14px;
  border-radius: 3px;
}

.bdMgrWebTmplName {
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--site-text-color);
  border-top: 1px solid var(--site-quaternary-color);
  background: #ffffff;
}

.bdMgrWebTmplCheck {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--site-cta-color);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
}

.bdMgrWebTmpl--selected .bdMgrWebTmplCheck {
  display: flex;
}

/* Pages manager */
.bdMgrWebPagesList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.bdMgrWebPageItem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.2s;
}

.bdMgrWebPageItem:hover {
  border-color: var(--site-text-muted-color);
}

.bdMgrWebPageIconSm {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bdMgrWebPageName {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--site-text-color);
  flex: 1;
}

.bdMgrWebPageBadge {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}

.bdMgrWebPageEdit {
  font-size: 11.5px;
  color: var(--site-cta-color);
  cursor: pointer;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}

.bdMgrWebPageEdit:hover {
  background: var(--site-secondary-color);
}

.bdMgrWebAddPagesGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.bdMgrWebAddPageChip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px dashed var(--site-quaternary-color);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--site-primary-font);
  background: transparent;
}

.bdMgrWebAddPageChip:hover {
  border-color: var(--site-cta-color);
  color: var(--site-cta-color);
  background: rgba(241, 90, 37, 0.04);
  border-style: solid;
}

.bdMgrWebWizFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-top: 1px solid var(--site-quaternary-color);
  background: var(--site-secondary-color);
}

.bdMgrWebWizSkip {
  font-size: 13px;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--site-primary-font);
}

.bdMgrWebWizSkip:hover {
  color: var(--site-text-color);
}

.bdMgrWebWizNextBtn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: 100px;
  background: var(--site-primary-color);
  color: white;
  border: none;
  font-family: var(--site-primary-font);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.bdMgrWebWizNextBtn:hover {
  opacity: 0.85;
}

/* ── Dashboard tabs ── */
.bdMgrWebDashTabs {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid var(--site-quaternary-color);
  overflow-x: auto;
  margin-top: 24px;
}

.bdMgrWebDashTab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--site-text-muted-color);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  border-top: none;
  border-left: none;
  border-right: none;
  background: transparent;
  font-family: var(--site-primary-font);
}

.bdMgrWebDashTab:hover {
  color: var(--site-text-color);
}

.bdMgrWebDashTab--active {
  color: var(--site-text-color);
  border-bottom-color: var(--site-primary-color);
  font-weight: 500;
}

.bdMgrWebTabPip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--site-cta-color);
}

/* ── Dashboard content ── */
.bdMgrWebDashContent {
  padding: 28px 40px 60px;
}

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

@media (max-width: 960px) {
  .bdMgrWebStatsRow {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bdMgrWebStatCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  padding: 22px 20px;
  transition:
    transform 0.22s var(--bdMgr-ease-spring),
    box-shadow 0.22s;
  animation: bdMgrWebCardIn 0.4s var(--bdMgr-ease) both;
}

.bdMgrWebStatCard:nth-child(1) {
  animation-delay: 0.05s;
}

.bdMgrWebStatCard:nth-child(2) {
  animation-delay: 0.1s;
}

.bdMgrWebStatCard:nth-child(3) {
  animation-delay: 0.14s;
}

.bdMgrWebStatCard:nth-child(4) {
  animation-delay: 0.18s;
}

.bdMgrWebStatCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.bdMgrWebStatLabel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 12px;
}

.bdMgrWebStatValue {
  font-family: var(--site-secondary-font);
  font-size: 38px;
  font-weight: 500;
  color: var(--site-text-color);
  line-height: 1;
  margin-bottom: 8px;
}

.bdMgrWebStatDelta {
  font-size: 12px;
  color: var(--site-text-muted-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.bdMgrWebDeltaUp {
  color: #1a7a4a;
}

.bdMgrWebDeltaDown {
  color: var(--site-cta-color);
}

.bdMgrWebDash2col {
  display: grid;
  /* grid-template-columns: 1fr 348px; */
  gap: 16px;
}

@media (max-width: 1100px) {
  .bdMgrWebDash2col {
    grid-template-columns: 1fr;
  }
}

.bdMgrWebDashPanel {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  overflow: hidden;
  animation: bdMgrWebCardIn 0.5s var(--bdMgr-ease) both;
}

.bdMgrWebDashPanel:nth-child(1) {
  animation-delay: 0.2s;
}

.bdMgrWebDashPanel:nth-child(2) {
  animation-delay: 0.28s;
}

.bdMgrWebPanelHead {
  padding: 18px 22px;
  border-bottom: 1px solid var(--site-quaternary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bdMgrWebPanelTitle {
  font-family: var(--site-secondary-font);
  font-size: 17px;
  font-weight: 600;
  color: var(--site-text-color);
}

.bdMgrWebPanelAction {
  font-size: 12.5px;
  color: var(--site-cta-color);
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.2s;
}

.bdMgrWebPanelAction:hover {
  opacity: 0.75;
}

.bdMgrWebPanelBody {
  padding: 8px 22px 18px;
}

/* Page rows */
.bdMgrWebPageRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.bdMgrWebPageRow:last-child {
  border: none;
}

.bdMgrWebPrIcon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--site-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.bdMgrWebPrInfo {
  flex: 1;
  min-width: 0;
}

.bdMgrWebPrName {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--site-text-color);
}

.bdMgrWebPrUrl {
  font-size: 11.5px;
  color: var(--site-text-muted-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdMgrWebPrViews {
  font-size: 12px;
  color: var(--site-text-muted-color);
  text-align: right;
  flex-shrink: 0;
}

.bdMgrWebPrStatus {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* AI suggestion cards */
.bdMgrWebAiCard {
  background: rgba(241, 90, 37, 0.04);
  border: 1px solid rgba(241, 90, 37, 0.14);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.bdMgrWebAiCard:hover {
  border-color: rgba(241, 90, 37, 0.28);
}

.bdMgrWebAiCard:last-child {
  margin-bottom: 0;
}

.bdMgrWebAiCardTop {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bdMgrWebAiSpark {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bdMgrWebAiCardText {
  font-size: 13px;
  color: var(--site-text-color);
  font-weight: 300;
  line-height: 1.55;
  flex: 1;
}

.bdMgrWebAiCardText strong {
  font-weight: 500;
}

.bdMgrWebAiAct {
  font-size: 12px;
  color: var(--site-cta-color);
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
}

/* Quick actions */
.bdMgrWebQaRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--site-quaternary-color);
  cursor: pointer;
  transition: all 0.18s;
}

.bdMgrWebQaRow:last-child {
  border: none;
}

.bdMgrWebQaRow:hover .bdMgrWebQaLabel {
  color: var(--site-cta-color);
}

.bdMgrWebQaIconSm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bdMgrWebQaLabel {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--site-text-color);
  flex: 1;
  transition: color 0.2s;
}

.bdMgrWebQaSub {
  font-size: 11.5px;
  color: var(--site-text-muted-color);
}

.bdMgrWebQaChevron {
  color: var(--site-text-muted-color);
  font-size: 13px;
  flex-shrink: 0;
}

/* SEO score */
.bdMgrWebSeoRow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.bdMgrWebSeoDonut {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.bdMgrWebSeoDonut svg {
  width: 60px;
  height: 60px;
  transform: rotate(-90deg);
}

.bdMgrWebSeoDonutNum {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--site-text-color);
}

.bdMgrWebSeoInfo h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--site-text-color);
}

.bdMgrWebSeoInfo p {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin-top: 2px;
}

/* ── Pro page: hero bar (manages active website) ─────────────────── */
.bdMgrWebProHero {
  background: linear-gradient(135deg, #1c2d64 0%, #112458 100%);
  padding: 40px 40px 44px;
}

.bdMgrWebProHeroEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.bdMgrWebProHero h1 {
  font-family: var(--site-secondary-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: white;
  margin-bottom: 10px;
}

.bdMgrWebProHero h1 em {
  font-style: italic;
  color: var(--site-cta-color);
}

.bdMgrWebProHero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
}

.bdMgrWebProHeroBtns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bdMgrWebBtnManage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  background: white;
  color: var(--site-primary-color);
  border: none;
  font-family: var(--site-primary-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bdMgrWebBtnManage:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--site-primary-color);
}

.bdMgrWebBtnViewLive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.bdMgrWebBtnViewLive:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.bdMgrWebProHeroMeta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.bdMgrWebProHeroMetaItem {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.bdMgrWebProHeroMetaDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a7a4a;
}

/* ─── WEBSITE PAGE RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .bdMgrWebHero,
  .bdMgrWebProHero {
    padding: 40px 24px 44px;
  }

  .bdMgrWebFeatures,
  .bdMgrWebPricing,
  .bdMgrWebFaq {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bdMgrWebStatsBar {
    padding: 28px 24px;
  }

  .bdMgrWebFinalCta {
    margin: 0 24px 40px;
    padding: 36px 28px;
    flex-direction: column;
  }

  .bdMgrWebCtxBar,
  .bdMgrWebTrialNudge {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bdMgrWebWizard {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bdMgrWebDashTabs {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bdMgrWebDashContent {
    padding: 20px 24px 40px;
  }

  .bdMgrWebPageFooter {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .bdMgrWebNavCenter {
    display: none;
  }

  .bdMgrWebNavDivider {
    margin: 0 10px;
  }

  .bdMgrWebHero {
    padding: 28px 16px 32px;
  }

  .bdMgrWebProHero {
    padding: 28px 16px 32px;
  }

  .bdMgrWebFeatures,
  .bdMgrWebPricing,
  .bdMgrWebFaq {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bdMgrWebStatsBar {
    padding: 24px 16px;
  }

  .bdMgrWebFinalCta {
    margin: 0 16px 32px;
    padding: 28px 20px;
  }

  .bdMgrWebCtxBar,
  .bdMgrWebTrialNudge {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bdMgrWebWizard {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bdMgrWebDashTabs {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bdMgrWebDashContent {
    padding: 16px 16px 32px;
  }

  .bdMgrWebPageFooter {
    padding-left: 16px;
    padding-right: 16px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .bdMgrWebStatsRow {
    grid-template-columns: 1fr 1fr;
  }

  .bdMgrWebTrialNudge {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════
   CUSTOM MANAGER EXTENSIONS  — all app-wide additions
   All prefix: bdMgr*   |   No inline CSS
════════════════════════════════════════════════════ */

/* ── Layout: sidebar + container widths ── */

aside.bdMgrSidebar {
  width: 260px;
  height: 100vh;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  border-right: 1px solid var(--site-quaternary-color);
  padding: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.04);
  transform: translateX(0);
  transition: transform 0.28s ease;
}

.dashboardContainer.bdMgrDashboardContainer {
  width: calc(100% - 260px);
  margin-left: 260px;
  /* background-color: var(--site-secondary-color); */
}

aside.bdMgrSidebar::-webkit-scrollbar {
  width: 4px;
}

aside.bdMgrSidebar::-webkit-scrollbar-thumb {
  background: var(--site-quaternary-color);
  border-radius: 4px;
}

@media (max-width: 992px) {
  aside.bdMgrSidebar {
    transform: translateX(-100%);
    width: 280px;
  }

  aside.bdMgrSidebar.desktop-open {
    transform: translateX(0);
  }

  aside.bdMgrSidebar.mobile-closed {
    transform: translateX(-100%);
  }

  .dashboardContainer.bdMgrDashboardContainer {
    width: 100%;
    margin-left: 0;
  }
}

/* ── Sidebar internals ── */

.bdMgrSidebarLogoImg {
  width: 110px;
  height: auto;
}

.bdMgrSidebarSectionLabel {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin: 4px 0 6px;
}

.bdMgrSidebarFooter {
  flex-shrink: 0;
}

.bdMgrSidebarFooterLogo {
  height: 16px;
  opacity: 0.35;
}

/* Nav item icon badge */
.bdMgrSidebarNavIcon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--site-secondary-color);
  border: 1px solid var(--site-quaternary-color);
  font-size: 12px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

/* Active list-group item override */
.list-group-item.active,
.list-group-item-action.active {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border-color: transparent !important;
}

.list-group-item.active .bdMgrSidebarNavIcon,
.list-group-item-action.active .bdMgrSidebarNavIcon {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

/* ── Header ── */

.bdMgrHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--site-quaternary-color);
  position: sticky;
  top: 0;
  z-index: 111;
  gap: 12px;
}

.bdMgrHeaderBrandLogo {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 1.5px solid var(--site-quaternary-color);
}

.bdMgrHeaderBrandName {
  font-size: 14px;
  font-weight: 700;
  color: var(--site-text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  line-height: 1.2;
}

.bdMgrHeaderBrandSub {
  font-size: 11px;
  color: var(--site-text-muted-color);
  white-space: nowrap;
  line-height: 1.2;
}

.bdMgrHeaderNav {
  flex: 1;
  justify-content: center;
}

.bdMgrHeaderNavPill {
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--site-text-muted-color);
  background: transparent;
  border: none;
  text-decoration: none;
  padding: 6px 14px;
  transition:
    background 0.15s,
    color 0.15s;
}

.bdMgrHeaderNavPill:hover {
  background: var(--site-secondary-color);
  color: var(--site-text-color);
}

.bdMgrHeaderNavPill--active {
  background: var(--site-text-color) !important;
  color: #ffffff !important;
  font-weight: 600;
}

.bdMgrHeaderAvatarBtn {
  border: 2px solid var(--site-quaternary-color);
  border-radius: 50%;
  overflow: hidden;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  transition: border-color 0.18s;
}

.bdMgrHeaderAvatarBtn::after {
  display: none;
}

.bdMgrHeaderAvatarBtn:hover {
  border-color: var(--site-primary-color);
}

.bdMgrHeaderAvatarImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdMgrHeaderUserMenu {
  min-width: 210px;
  border-radius: 14px;
}

.bdMgrHeaderUserMenuAvatar {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 1px solid var(--site-quaternary-color);
}

/* Modal header dark */
.bdMgrModalHeader {
  background: var(--site-text-color);
  border-bottom: none;
}

/* ── Dashboard: hero variant ── */

/* The hero is full-width; override padding so it extends edge to edge */
.bdMgrWebProHero {
  border-radius: 0;
}

/* Stat boxes in hero */
.bdMgrDashHeroStat {
  text-align: right;
}

.bdMgrDashHeroStatValue {
  font-family: var(--site-secondary-font);
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.bdMgrDashHeroStatValue--sm {
  font-size: 18px;
}

.bdMgrDashHeroStatLabel {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* ── Dashboard: filter bar form label ── */

.bdMgrFormLabel {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 4px;
}

/* ── Dashboard: compare strip ── */

.bdMgrDashCompareBand {
  background: #eff6ff;
  border-bottom: 1px solid #bfdbfe;
  padding: 10px 24px;
}

.bdMgrDashCompareChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  padding: 3px 12px 3px 3px;
}

.bdMgrDashCompareAvatar {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border: 1.5px solid #bfdbfe;
}

.bdMgrDashCompareViews {
  font-size: 12px;
  font-weight: 600;
  color: #1d4ed8;
}

/* ── Dashboard: stat cards ── */

.bdMgrStatLabel {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 8px;
}

.bdMgrStatValue {
  font-family: var(--site-secondary-font);
  font-size: 36px;
  font-weight: 500;
  color: var(--site-text-color);
  line-height: 1;
  margin-bottom: 8px;
}

.bdMgrStatValue--md {
  font-size: 20px;
}

/* ── Dashboard: people list ── */

.bdMgrPeopleList {
  max-height: 400px;
  overflow-y: auto;
}

.bdMgrPeopleList::-webkit-scrollbar {
  width: 4px;
}

.bdMgrPeopleList::-webkit-scrollbar-thumb {
  background: var(--site-quaternary-color);
  border-radius: 4px;
}

.bdMgrPersonInitial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--site-secondary-color);
  border: 1px solid var(--site-quaternary-color);
  font-size: 11px;
  font-weight: 700;
  color: var(--site-text-color);
  flex-shrink: 0;
  text-transform: uppercase;
}

.bdMgrPersonActive {
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
}

.bdMgrPersonActive .bdMgrPersonInitial {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

/* ── Dashboard: chart panel ── */

.bdMgrChartBody {
  min-height: 400px;
}

.bdMgrChartEmpty {
  min-height: 360px;
}

.bdMgrChartEmptyIcon {
  font-size: 48px;
  color: var(--site-quaternary-color);
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .bdMgrWebProHero {
    padding: 24px 20px;
  }

  .bdMgrDashCompareBand {
    padding: 10px 16px;
  }
}

/* ════════════════════════════════════════════════════════
   PAGE HEADER — shared clean title bar
   ════════════════════════════════════════════════════════ */

.bdMgrPageHeader {
  position: sticky;
  top: 60px;
  z-index: 100;
}

.bdMgrPageHeader h5 {
  font-family: var(--site-secondary-font);
  font-size: 17px;
  color: var(--site-text-color);
}

.bdMgrPageHeaderStat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bdMgrPageHeaderStatValue {
  font-family: var(--site-secondary-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--site-text-color);
  line-height: 1;
}

.bdMgrPageHeaderStatValue--sm {
  font-size: 15px;
  font-weight: 500;
}

.bdMgrPageHeaderStatLabel {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--site-text-muted-color);
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════════
   PEOPLE LIST — new row style with avatar + meta + stats
   ════════════════════════════════════════════════════════ */

.bdMgrPersonRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s;
  margin-bottom: 2px;
  border: 1.5px solid var(--site-quaternary-color);
}

.bdMgrPersonRow:hover {
  background: var(--site-secondary-color);
}

.bdMgrPersonRow--active {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.bdMgrPersonRow--active .bdMgrPersonAvatar {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.bdMgrPersonAvatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--site-secondary-color);
  border: 1.5px solid var(--site-quaternary-color);
  font-size: 13px;
  font-weight: 700;
  color: var(--site-text-color);
  flex-shrink: 0;
  text-transform: uppercase;
}

.bdMgrPersonMeta {
  font-size: 11px;
  color: var(--site-text-muted-color);
  line-height: 1.3;
}

/* ════════════════════════════════════════════════════════
   MANAGE CARD — page header & editor panels
   ════════════════════════════════════════════════════════ */

/* Consistent card header styles */
.card-header .fa-solid,
.card-header .fa-light {
  font-size: 14px;
}

/* Mobile publish bar spacing so content isn't hidden behind it */
@media (max-width: 768px) {
  .bdMgrPageHeader {
    top: 60px;
  }

  /* Leave room for fixed-bottom bar */
  body {
    padding-bottom: 64px;
  }
}

/* ── Avatar color cycling ── */
.bdMgrPersonRow:nth-child(6n + 1) .bdMgrPersonAvatar {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.bdMgrPersonRow:nth-child(6n + 2) .bdMgrPersonAvatar {
  background: #dcfce7;
  border-color: #86efac;
  color: #15803d;
}

.bdMgrPersonRow:nth-child(6n + 3) .bdMgrPersonAvatar {
  background: #fef9c3;
  border-color: #fde047;
  color: #a16207;
}

.bdMgrPersonRow:nth-child(6n + 4) .bdMgrPersonAvatar {
  background: #fce7f3;
  border-color: #f9a8d4;
  color: #be185d;
}

.bdMgrPersonRow:nth-child(6n + 5) .bdMgrPersonAvatar {
  background: #ede9fe;
  border-color: #c4b5fd;
  color: #7c3aed;
}

.bdMgrPersonRow:nth-child(6n + 0) .bdMgrPersonAvatar {
  background: #ffedd5;
  border-color: #fdba74;
  color: #c2410c;
}

/* Keep active state override */
.bdMgrPersonRow--active .bdMgrPersonAvatar {
  background: #dbeafe !important;
  border-color: #bfdbfe !important;
  color: #1d4ed8 !important;
}

/* ════════════════════════════════════════════════════════
   MANAGE CARD PAGE — lavender background
   ════════════════════════════════════════════════════════ */

.bdMgrManageCardPage {
  background: #f5f4f1;
  min-height: calc(100vh - 120px);
}

/* ════════════════════════════════════════════════════════
   CARD EFFECT PILLS
   ════════════════════════════════════════════════════════ */

.bdMgrEffectPills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bdMgrEffectPill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--site-quaternary-color);
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color);
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}

.bdMgrEffectPill:hover {
  border-color: var(--site-primary-color);
  background: var(--site-secondary-color);
}

.bdMgrEffectPill--active {
  border-color: var(--site-primary-color);
  background: var(--site-primary-color);
  color: #ffffff;
}

.bdMgrEffectPreview {
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 12px;
  overflow: hidden;
  max-width: 220px;
}

.bdMgrCardItemSection hr {
  display: none;
}

/* CARD SECTIONS PANEL */

.bdMgrSectionList {
  padding: 4px 0;
}

.bdMgrSectionRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--site-quaternary-color);
  transition: background 0.12s;
  cursor: default;
}

.bdMgrSectionRow:last-child {
  border-bottom: none;
}

.bdMgrSectionRow:hover {
  background: var(--site-secondary-color);
}

.bdMgrSectionRow--active {
  background: #ede9fe;
}

.bdMgrSectionDragHandle {
  font-size: 13px;
  color: var(--site-text-muted-color);
  cursor: grab;
  flex-shrink: 0;
}

.bdMgrSectionDragHandle--disabled {
  color: var(--site-quaternary-color);
  cursor: not-allowed;
}

.bdMgrSectionEditIcon {
  font-size: 13px;
  color: #f59e0b;
  cursor: pointer;
  flex-shrink: 0;
}

.bdMgrSectionEditIcon--disabled {
  color: var(--site-quaternary-color);
  cursor: not-allowed;
  pointer-events: none;
}

.bdMgrSectionToggle {
  width: 2.4em;
  height: 1.3em;
  cursor: pointer;
}

.bdMgrSectionAddMore {
  color: var(--site-primary-color);
  font-weight: 500;
  cursor: pointer;
}

.bdMgrSectionAddMore:hover {
  color: var(--site-cta-color);
}

/* cdk drag placeholder */
.card-placeholder {
  background: var(--site-secondary-color);
  border: 2px dashed var(--site-quaternary-color);
  border-radius: 8px;
  min-height: 44px;
  width: 100%;
}

/* ════════════════════════════════════════════════════════
   SIDEBAR V2 — Image 2 style
   ════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   SIDEBAR — Light theme redesign
   ════════════════════════════════════════════════════════ */

.bdSide {
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  height: 100vh;
  background: #ffffff;
  border-right: 1px solid #e8e5de;
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
}

.bdSide::-webkit-scrollbar {
  width: 4px;
}

.bdSide::-webkit-scrollbar-thumb {
  background: #d4d0c8;
  border-radius: 4px;
}

.bdSideBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 199;
}

.bdSideBackdrop.open {
  display: block;
}

/* Logo */
.bdSideLogo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
}

.bdSideLogoImg {
  height: 26px;
  width: auto;
  /* filter: brightness(0); */
}

.bdSideCloseBtn {
  display: none;
  background: none;
  border: none;
  color: #6b7280;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* Space switcher */
.bdSideSpaceSwitch {
  display: flex;
  gap: 4px;
  margin: 0 16px 16px;
  background: #e8e5de;
  border-radius: 10px;
  padding: 4px;
}

.bdSideSpaceBtn {
  flex: 1;
  text-align: center;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bdSideSpaceBtn i {
  font-size: 12px;
}

.bdSideSpaceBtn--active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

/* Business selector card */
.bdSideBizCard {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ebeefb;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.bdSideBizAvatar {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--site-primary-color);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.bdSideBizInfo {
  flex: 1;
  min-width: 0;
}

.bdSideBizChevron {
  font-size: 11px;
  color: #9ca3af;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.bdSideBizCard--open .bdSideBizChevron {
  transform: rotate(180deg);
}

/* Business dropdown */
.bdSideBizDropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 300;
  overflow: hidden;
}

.bdSideBizCard--open .bdSideBizDropdown {
  display: block;
}

.bdSideBizDdLabel {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  padding: 12px 14px 6px;
}

.bdSideBizDdList {
  max-height: 280px;
  overflow-y: auto;
  padding-bottom: 6px;
}

.bdSideBizDdItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.12s;
}

.bdSideBizDdItem:hover {
  background: #f9fafb;
}

.bdSideBizDdAvatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--site-cta-color);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bdSideBizDdName {
  font-size: 13px;
  color: #111827;
  flex: 1;
  font-weight: 500;
}

.bdSideBizDdCheck {
  font-size: 12px;
  color: #15803d;
}

/* Navigation */
.bdSideNav {
  flex: 1;
  padding: 0 10px;
  overflow-y: auto;
}

.bdSideSection {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 14px 6px 5px;
  margin: 0;
}

.bdSideItem {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 8px;
  color: #374151;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.12s,
    color 0.12s;
  margin-bottom: 1px;
  cursor: pointer;
}

.bdSideItem:hover {
  background: #eceae2;
  color: #111827;
}

.bdSideItem--active {
  background: #ebeefb;
  color: #111827;
  font-weight: 600;
}

.bdSideItem--active .bdSideIcon {
  color: #111827;
}

.bdSideItem--sub {
  padding-left: 28px;
  font-size: 13px;
}

.bdSideItem--sub .bdSideIcon {
  width: 18px;
  height: 18px;
  font-size: 11px;
  background: transparent;
  border: none;
  color: #9ca3af;
}

.bdSideChevron {
  font-size: 10px;
  color: #9ca3af;
  margin-left: auto;
}

.bdSidePayeeError {
  font-size: 11px;
  color: #ef4444;
  padding: 2px 10px 4px 42px;
  margin: 0;
}

/* Pro nav items */
.bdSideItem--pro {
  opacity: 0.85;
}

.bdSideItem--pro:hover {
  opacity: 1;
}

.bdSideIcon--pro {
  background: linear-gradient(
    135deg,
    #f97316,
    var(--site-primary-color)
  ) !important;
  color: #fff !important;
}

.bdSideProBadge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--site-primary-color);
  background: rgba(212, 82, 26, 0.1);
  padding: 2px 6px;
  border-radius: 20px;
}

.bdSideIcon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex-shrink: 0;
}

/* Badges */
.bdSideBadge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  flex-shrink: 0;
  line-height: 1.5;
}

.bdSideBadge--green {
  background: #15803d;
  color: #fff;
}

.bdSideBadge--orange {
  background: var(--site-cta-color);
  color: #fff;
}

.bdSideBadge--outline {
  background: transparent;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

/* Bottom section */
.bdSideBottom {
  flex-shrink: 0;
  padding: 8px 10px 16px;
}

.bdSideBottomDivider {
  height: 1px;
  background: #e0ddd5;
  margin: 0 0 8px;
}

.bdSideItem--settings {
  color: #374151;
}

.bdSideUserCard {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-top: 4px;
  border-radius: 10px;
  background: #eceae2;
}

.bdSideUserAvatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bdSideUserInfo {
  min-width: 0;
  flex: 1;
}

.bdSideUserName {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdSideUserRole {
  font-size: 11px;
  color: #6b7280;
}

/* Dashboard container width */
.dashboardContainer.bdMgrDashboardContainer {
  margin-left: 270px;
  width: calc(100% - 270px);
}

/* ════════════════════════════════════════════════════════
   HEADER V2 — Image 3 style (company-cards)
   ════════════════════════════════════════════════════════ */

.bdMgrHeaderV2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--site-quaternary-color);
  position: sticky;
  top: 0;
  z-index: 199;
}

.bdMgrHeaderV2Logo {
  display: flex;
  align-items: center;
}

.bdMgrHeaderV2LogoImg {
  height: 28px;
  width: auto;
}

/* Space toggle */
.bdMgrHeaderV2Toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--site-secondary-color);
  border: 1px solid var(--site-quaternary-color);
  border-radius: 50px;
  padding: 4px;
}

.bdMgrHeaderV2ToggleBtn {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.bdMgrHeaderV2ToggleBtn--active {
  background: var(--site-text-color);
  color: #ffffff;
  font-weight: 600;
}

.bdMgrHeaderV2ToggleBtn:not(.bdMgrHeaderV2ToggleBtn--active):hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--site-text-color);
}

/* Icon buttons (language, bell) */
.bdMgrHeaderV2IconBtn {
  color: var(--site-text-muted-color);
  border-radius: 8px;
  padding: 6px 10px;
  transition: background 0.12s;
}

.bdMgrHeaderV2IconBtn:hover {
  background: var(--site-secondary-color);
}

@media (max-width: 768px) {
  .bdSide {
    transform: translateX(-100%);
    transition: transform 0.25s;
  }

  .bdSideCloseBtn {
    display: flex;
  }

  .bdMgrHeaderV2Toggle {
    display: none;
  }

  .dashboardContainer.bdMgrDashboardContainer {
    margin-left: 0;
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════
   BUTTON SYSTEM — matching image 3 (rounded-pill, consistent)
   ════════════════════════════════════════════════════════ */
.bdMgrBtnPrimary {
  background: #16a34a;
  color: #ffffff;
  border: 1.5px solid #16a34a;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.bdMgrBtnPrimary:hover {
  background: #d44d1c;
  border-color: #d44d1c;
  color: #fff;
}

.bdMgrBtnOutline {
  background: #ffffff;
  color: var(--site-text-color);
  border: 1.5px solid var(--site-quaternary-color);
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.bdMgrBtnOutline:hover {
  background: var(--site-secondary-color);
  border-color: #c4c4d8;
}

/* ════════════════════════════════════════════════════════
   INPUT FIELD DESIGN — image 2 style
   ════════════════════════════════════════════════════════ */

/* Label */
.bdMgrInputLabel,
.bdMgrManageCardPage .form-label,
.bdMgrManageCardPage label.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 5px;
}


/* ════════════════════════════════════════════════════════
   CARD EFFECT DROPDOWN + THUMBNAIL
   ════════════════════════════════════════════════════════ */

.bdMgrEffectSelect {
  background: #f9fbff !important;
  border: 1.5px solid #cddaff !important;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--site-text-color);
  padding: 10px 14px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.bdMgrEffectSelect:focus {
  background: #ffffff;
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(28, 45, 100, 0.08);
  outline: none;
}

/* Thumbnail */
.bdMgrEffectThumb {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--site-quaternary-color);
  cursor: pointer;
  max-width: 200px;
  transition: border-color 0.15s;
}

.bdMgrEffectThumb:hover {
  border-color: var(--site-primary-color);
}

.bdMgrEffectThumb img {
  display: block;
  width: 100%;
  height: auto;
}

.bdMgrEffectThumbOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.15s;
}

.bdMgrEffectThumb:hover .bdMgrEffectThumbOverlay {
  opacity: 1;
}

/* ════════════════════════════════════════════════════════
   CARD HOLDERS — filter bar
   ════════════════════════════════════════════════════════ */

.bdMgrHoldersSearch {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--site-secondary-color);
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 50px;
  padding: 6px 14px;
  gap: 8px;
  min-width: 280px;
}

.bdMgrHoldersSearch i {
  font-size: 12px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
}

.bdMgrHoldersSearch input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--site-text-color);
  width: 100%;
}

.bdMgrHoldersSearch input::placeholder {
  color: var(--site-text-muted-color);
}

.bdMgrFilterSelect {
  background: var(--site-secondary-color);
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--site-text-color);
  padding: 6px 14px;
  width: auto;
  min-width: 130px;
  cursor: pointer;
}

.bdMgrFilterSelect:focus {
  box-shadow: none;
  border-color: var(--site-primary-color);
  background: #fff;
}

/* ════════════════════════════════════════════════════════
   CARD HOLDERS — table
   ════════════════════════════════════════════════════════ */

.bdMgrHoldersTable thead tr th {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  border-bottom: 1px solid var(--site-quaternary-color);
  padding: 12px 16px;
  white-space: nowrap;
  background: #fff;
}

.bdMgrHoldersTable tbody td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.bdMgrHoldersTable tbody tr:last-child td {
  border-bottom: none;
}

.bdMgrHoldersTable tbody tr:hover {
  background: var(--site-secondary-color);
}

.bdMgrHoldersRowActive {
  background: #f3f0ff !important;
}

/* Avatar circles with 7 color variants */
.bdMgrHolderAvatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.bdMgrHolderAvatar--1 {
  background: #1e3a8a;
}

.bdMgrHolderAvatar--2 {
  background: #047857;
}

.bdMgrHolderAvatar--3 {
  background: #6d28d9;
}

.bdMgrHolderAvatar--4 {
  background: #b91c1c;
}

.bdMgrHolderAvatar--5 {
  background: #0369a1;
}

.bdMgrHolderAvatar--6 {
  background: #92400e;
}

.bdMgrHolderAvatar--7 {
  background: #be185d;
}

/* Status badges */
.bdMgrHolderStatus {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid;
}

.bdMgrHolderStatusDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bdMgrHolderStatus--active {
  border-color: #86efac;
  color: #15803d;
  background: #f0fdf4;
}

.bdMgrHolderStatus--active .bdMgrHolderStatusDot {
  background: #16a34a;
}

.bdMgrHolderStatus--inactive {
  border-color: #d1d5db;
  color: #6b7280;
  background: #f9fafb;
}

.bdMgrHolderStatus--inactive .bdMgrHolderStatusDot {
  background: #9ca3af;
}

.bdMgrHolderStatus--pending {
  border-color: #fcd34d;
  color: #b45309;
  background: #fffbeb;
}

.bdMgrHolderStatus--pending .bdMgrHolderStatusDot {
  background: #d97706;
}

/* Edit / action button */
.bdMgrHolderEditBtn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--site-quaternary-color);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 12px;
  padding: 0;
  transition:
    background 0.12s,
    border-color 0.12s;
}

.bdMgrHolderEditBtn:hover {
  background: #fffbeb;
  border-color: #f59e0b;
}

/* ── Filter bar fix: prevent stacking ── */
.bdMgrHoldersFilterBar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 2px;
  /* slight scroll affordance */
}

.bdMgrHoldersFilterBar::-webkit-scrollbar {
  display: none;
}

.bdMgrHoldersSearch {
  flex-shrink: 0;
  min-width: 220px !important;
  max-width: 260px;
}

.bdMgrFilterSelect {
  flex-shrink: 0;
  width: auto !important;
  min-width: 130px !important;
  max-width: 170px;
}

/* ════════════════════════════════════════════════════════
   BRAND SETTINGS — color picker row
   ════════════════════════════════════════════════════════ */

.bdMgrColorRow {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fbff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  padding: 8px 14px;
}

.bdMgrColorPicker {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
}

.bdMgrColorPicker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.bdMgrColorPicker::-webkit-color-swatch {
  border: none;
  border-radius: 6px;
}

.bdMgrColorHex {
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color);
  font-family: monospace;
}

/* ════════════════════════════════════════════════════════
   BRAND SETTINGS — font preview box
   ════════════════════════════════════════════════════════ */

.bdMgrFontPreview {
  background: #f9fbff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 22px;
  font-weight: 400;
  color: var(--site-text-color);
  line-height: 1.4;
  min-height: 68px;
}

/* ════════════════════════════════════════════════════════
   EDIT USER PANEL — side-panel card form
   ════════════════════════════════════════════════════════ */

.bdMgrEditUserPanel {
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #cddaff;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.bdMgrEditUserPanel h6 {
  font-size: 14px;
  color: var(--site-text-color);
}

/* Ensure autocomplete inputs inside edit panel get bdMgrInput styling */
.bdMgrEditUserPanel .mat-mdc-form-field,
.bdMgrEditUserPanel .mat-form-field {
  width: 100%;
}

.bdMgrEditUserPanel input[matInput],
.bdMgrEditUserPanel input[matinput] {
  background: #f9fbff !important;
  border: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  color: var(--site-text-color) !important;
  width: 100% !important;
  box-shadow: none !important;
  transition:
    border-color 0.15s,
    background 0.15s !important;
}

/* agm-map wrapper consistency */
.bdMgrEditUserPanel agm-map {
  display: block;
  width: 100%;
  height: 100%;
}

/* ════════════════════════════════════════════════════════
   GLOBAL CONSISTENCY — rounded cards everywhere
   ════════════════════════════════════════════════════════ */

/* All cards within managed pages use border-0 shadow-sm rounded-3 */
.bdMgrManageCardPage .card {
  border: none !important;
  border-radius: 12px !important;
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.03) !important;
}

.bdMgrManageCardPage .card-header {
  border-bottom: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 12px 12px 0 0 !important;
  background: #fff !important;
}

.bdMgrManageCardPage .card-footer {
  border-top: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 0 0 12px 12px !important;
  background: #fff !important;
}

/* ════════════════════════════════════════════════════════
   GLOBAL CONSISTENCY — button shapes
   ════════════════════════════════════════════════════════ */

/* Ensure all primary/outline buttons within managed pages are pill shaped */
.bdMgrManageCardPage .btn.bdMgrBtnPrimary,
.bdMgrManageCardPage .btn.bdMgrBtnOutline,
.bdMgrDashboardContainer .btn.bdMgrBtnPrimary,
.bdMgrDashboardContainer .btn.bdMgrBtnOutline {
  border-radius: 50px !important;
  height: 42px;
}


.bdMgrInputLabel {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--site-text-muted-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* ════════════════════════════════════════════════════════
   GLOBAL CONSISTENCY — page header strip
   ════════════════════════════════════════════════════════ */

.bdMgrPageHeader {
  background: #fff;
  border-bottom: 1.5px solid var(--site-quaternary-color);
  padding: 14px 24px;
}

.bdMgrPageHeader h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--site-text-color);
  margin: 0;
}

.bdMgrPageHeader p.text-muted {
  font-size: 12.5px;
  margin: 2px 0 0;
}

/* ════════════════════════════════════════════════════════
   GLOBAL CONSISTENCY — table styles
   ════════════════════════════════════════════════════════ */

.bdMgrHoldersTable thead th {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--site-text-muted-color) !important;
  border-bottom: 1.5px solid var(--site-quaternary-color) !important;
  background: #fff !important;
  padding: 12px 16px !important;
  white-space: nowrap;
}

.bdMgrHoldersTable tbody td {
  padding: 12px 16px !important;
  border-color: var(--site-quaternary-color) !important;
  vertical-align: middle;
}

.bdMgrHoldersTable tbody tr:hover {
  background: rgba(28, 45, 100, 0.02) !important;
}

.bdMgrHoldersRowActive {
  background: rgba(28, 45, 100, 0.05) !important;
}

/* ════════════════════════════════════════════════════════
   FILTER BAR — consolidated pill style (all pages)
   ════════════════════════════════════════════════════════ */

/* Override to ensure both dashboard and card-holders filter bars look identical */
.bdMgrHoldersFilterBar {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
}

.bdMgrHoldersSearch {
  position: relative;
  display: flex !important;
  align-items: center !important;
  background: #fff !important;
  border: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 50px !important;
  padding: 7px 14px !important;
  gap: 8px;
  flex-shrink: 0;
  min-width: 220px;
  max-width: 280px;
}

.bdMgrHoldersSearch input {
  border: none !important;
  background: transparent !important;
  outline: none !important;
  font-size: 13px;
  color: var(--site-text-color);
  width: 100%;
}

.bdMgrFilterSelect,
select.bdMgrFilterSelect {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  background: #fff !important;
  border: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--site-text-color) !important;
  padding: 7px 16px !important;
  height: auto !important;
  flex-shrink: 0;
  width: auto !important;
  min-width: 120px !important;
  cursor: pointer;
  box-shadow: none !important;
  outline: none !important;
}

.bdMgrFilterSelect:focus,
select.bdMgrFilterSelect:focus {
  border-color: var(--site-primary-color) !important;
  box-shadow: none !important;
}

/* Date inputs in filter bar */
input[type="date"].bdMgrFilterSelect {
  min-width: 150px !important;
  color-scheme: light;
}

/* ════════════════════════════════════════════════════════
   DASHBOARD — Map/Graph view toggle & Support button
   ════════════════════════════════════════════════════════ */

/* Override btn-group to match design system */
.bdMgrManageCardPage .btn-group .btn,
.bdMgrDashboardContainer .btn-group .btn {
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 7px 16px !important;
  border-radius: 0 !important;
}

.bdMgrManageCardPage .btn-group .btn:first-child,
.bdMgrDashboardContainer .btn-group .btn:first-child {
  border-radius: 50px 0 0 50px !important;
}

.bdMgrManageCardPage .btn-group .btn:last-child,
.bdMgrDashboardContainer .btn-group .btn:last-child {
  border-radius: 0 50px 50px 0 !important;
}

.bdMgrManageCardPage .btn-group .btn.btn-dark,
.bdMgrDashboardContainer .btn-group .btn.btn-dark {
  background: var(--site-primary-color) !important;
  border-color: var(--site-primary-color) !important;
  color: #fff !important;
}

.bdMgrManageCardPage .btn-group .btn.btn-outline-secondary,
.bdMgrDashboardContainer .btn-group .btn.btn-outline-secondary {
  background: #fff !important;
  border-color: var(--site-quaternary-color) !important;
  color: var(--site-text-color) !important;
}

/* Support / help button */
.bdMgrManageCardPage app-help-section a,
.bdMgrManageCardPage app-help-section button,
.bdMgrDashboardContainer app-help-section a,
.bdMgrDashboardContainer app-help-section button {
  border: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 50px !important;
  background: #fff !important;
  color: var(--site-primary-color) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  padding: 6px 16px !important;
  text-decoration: none !important;
}

/* ════════════════════════════════════════════════════════
   LEGACY FORM CLASSES — for testimonial, rate card, etc.
   (replacing instaciti-manager.css dependency)
   ════════════════════════════════════════════════════════ */

/* Layout wrapper */
.effectEditSettings {
  padding: 0;
}

/* Section heading link */
.effectEditSettings .primaryColor,
a.primaryColor {
  color: var(--site-cta-color) !important;
  text-decoration: none;
  font-weight: 600;
}

.redColor {
  color: #dc2626 !important;
}

.font600 {
  font-weight: 600 !important;
}

.font500 {
  font-weight: 500 !important;
}

.font18 {
  font-size: 16px !important;
}

.font16 {
  font-size: 14px !important;
}

/* Form labels */
.effectEditSettings .form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

/* Inputs inside legacy forms */
.effectEditSettings .form-control,
.effectEditSettings .form-select {
  background: #f9fbff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--site-text-color);
  box-shadow: none;
}

.effectEditSettings .form-control:focus,
.effectEditSettings .form-select:focus {
  border-color: var(--site-primary-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(28, 45, 100, 0.08);
  outline: none;
}

/* Save button inside legacy forms */
.effectEditSettings .btn.btnSuccess,
button.btn.btnSuccess {
  background: #16a34a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 28px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  height: 42px !important;
}

.effectEditSettings .btn.btnSuccess:hover,
button.btn.btnSuccess:hover {
  background: #d44d1c !important;
}

.btnMd {
  border-radius: 50px !important;
  padding: 9px 24px !important;
  font-size: 13px !important;
}

/* ════════════════════════════════════════════════════════
   IMAGE UPLOAD — dropImg & imagePreview
   ════════════════════════════════════════════════════════ */

.dropImg {
  position: relative;
  width: 100%;
  min-height: 100px;
  background: #f9fbff;
  border: 2px dashed var(--site-quaternary-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  overflow: hidden;
  padding: 20px;
}

.dropImg:hover {
  border-color: var(--site-cta-color);
  background: #fff5f0;
}

.dropImg i {
  font-size: 28px;
  color: var(--site-text-muted-color);
}

.dropImg input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Image preview after upload */
.imagePreview {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: visible;
}

.imagePreview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid var(--site-quaternary-color);
  display: block;
}

.imagePreview video {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid var(--site-quaternary-color);
  display: block;
}

.imageDelete {
  position: absolute;
  top: -8px;
  right: -8px;
  color: #dc2626;
  font-size: 20px;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  line-height: 1;
}

/* ════════════════════════════════════════════════════════
   BUSINESS CARD ACTION — left panel list
   ════════════════════════════════════════════════════════ */

.main-2 {
  padding: 4px 0;
}

.main-2 .memberAddButton {
  margin-bottom: 12px;
}

.main-2 .memberAddButton .btn,
button.btn.pinkBgColor {
  background: var(--site-cta-color) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  width: 100%;
}

.memberList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.memberButton > div,
div.p-2.br5.primaryBgColor {
  background: var(--site-secondary-color) !important;
  border: 1.5px solid var(--site-quaternary-color) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  color: var(--site-text-color) !important;
  cursor: pointer;
  transition:
    background 0.12s,
    border-color 0.12s;
}

.memberButton > div:hover,
div.p-2.br5.primaryBgColor:hover {
  background: #fff !important;
  border-color: var(--site-cta-color) !important;
}

.memberButton .buttonText {
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color) !important;
  display: block;
  max-width: 70%;
}

.memberButton .buttonAction {
  color: var(--site-text-muted-color) !important;
  font-size: 13px;
}

.memberButton .buttonAction a,
.memberButton .buttonAction i {
  color: var(--site-text-muted-color) !important;
}

.memberButton .buttonAction a:hover i {
  color: #dc2626 !important;
}

/* drag placeholder */
.drag-placeholder {
  height: 44px;
  background: #f0f0ff;
  border: 2px dashed var(--site-quaternary-color);
  border-radius: 10px;
}

/* ════════════════════════════════════════════════════════
   EDITOR SECTION WRAPPER — shared by image-editor,
   text-area-editor, testimonial, rate-card
   ════════════════════════════════════════════════════════ */

.bdMgrEditorSection {
  padding: 0;
}

/* ════════════════════════════════════════════════════════
   COVER IMAGE UPLOAD ZONE
   ════════════════════════════════════════════════════════ */

.bdMgrCoverUploadZone {
  position: relative;
  width: 100%;
  min-height: 160px;
  background: #fafafa;
  border: 2px dashed var(--site-quaternary-color);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 28px 20px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  overflow: hidden;
}

.bdMgrCoverUploadZone:hover {
  border-color: var(--site-cta-color);
  background: #fff8f5;
}

.bdMgrCoverUploadIcon {
  font-size: 32px;
  color: var(--site-text-muted-color);
}

.bdMgrCoverUploadText {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0;
}

.bdMgrCoverUploadHint {
  font-size: 12px;
  color: var(--site-text-muted-color);
}

.bdMgrCoverUploadInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Cover image preview */
.bdMgrCoverPreview {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--site-quaternary-color);
}

.bdMgrCoverPreviewImg {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 13px;
}

.bdMgrCoverPreviewDelete {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(220, 38, 38, 0.9);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.12s;
}

.bdMgrCoverPreviewDelete:hover {
  background: #b91c1c;
}

/* ════════════════════════════════════════════════════════
   RATE CARD / TESTIMONIAL — two-column layout
   ════════════════════════════════════════════════════════ */

.bdMgrEditorTwoCol {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  min-height: 320px;
}

.bdMgrEditorItemList {
  border-right: 1.5px solid var(--site-quaternary-color);
  padding: 4px 16px 16px 4px;
  max-height: 520px;
  overflow-y: auto;
}

.bdMgrEditorForm {
  padding: 4px 4px 16px 20px;
}

/* greenBg backward compat */
.btn.greenBg {
  background: var(--site-cta-color) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* ════════════════════════════════════════════════════════
   ACTION PANEL — redesigned item list (rate card, testimonial…)
   ════════════════════════════════════════════════════════ */

.bdMgrActionPanel {
  padding: 4px 0;
}

.bdMgrActionList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bdMgrActionItem {
  border-radius: 10px;
  overflow: hidden;
}

.bdMgrActionItemInner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fbff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  padding: 10px 12px;
  transition:
    border-color 0.12s,
    background 0.12s;
  cursor: pointer;
}

.bdMgrActionItemInner:hover {
  background: #fff;
  border-color: var(--site-cta-color);
}

.bdMgrActionDragHandle {
  color: var(--site-text-muted-color);
  font-size: 12px;
  cursor: grab;
  flex-shrink: 0;
}

.bdMgrActionItemLabel {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdMgrActionDeleteBtn {
  background: none;
  border: none;
  color: var(--site-text-muted-color);
  font-size: 13px;
  padding: 2px 4px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 6px;
  transition:
    color 0.12s,
    background 0.12s;
}

.bdMgrActionDeleteBtn:hover {
  color: #dc2626;
  background: #fee2e2;
}

.drag-placeholder {
  height: 44px;
  background: #f0f0ff;
  border: 2px dashed var(--site-quaternary-color);
  border-radius: 10px;
}

/* ════════════════════════════════════════════════════════
   EDITOR TWO-COL — responsive collapse
   ════════════════════════════════════════════════════════ */

.bdMgrEditorTwoCol {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}

.bdMgrEditorItemList {
  border-right: 1.5px solid var(--site-quaternary-color);
  padding: 0 16px 16px 0;
}

.bdMgrEditorForm {
  padding: 0 0 16px 20px;
}

/* ════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — fix sidebar overlay + layout
   ════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Sidebar slides off screen */
  .bdSide {
    transform: translateX(-100%) !important;
    transition: transform 0.25s !important;
  }

  .bdSide.open {
    transform: translateX(0) !important;
  }

  /* Main content takes full width */
  .dashboardContainer.bdMgrDashboardContainer {
    margin-left: 0 !important;
    width: 100% !important;
  }

  /* Header toggle hidden on mobile */
  .bdMgrHeaderV2Toggle {
    display: none !important;
  }

  /* Rate card two-col stacks vertically */
  .bdMgrEditorTwoCol {
    grid-template-columns: 1fr !important;
  }

  .bdMgrEditorItemList {
    border-right: none !important;
    border-bottom: 1.5px solid var(--site-quaternary-color) !important;
    padding: 0 0 16px 0 !important;
  }

  .bdMgrEditorForm {
    padding: 16px 0 0 0 !important;
  }

  /* Manage card header — stack buttons */
  .bdMgrManageCardPage
    .bg-white.border-bottom
    .d-flex.gap-2.align-items-center {
    flex-wrap: wrap;
  }

  /* Filter bar — allow slight scroll on mobile */
  .bdMgrHoldersFilterBar {
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }
}

@media (max-width: 576px) {
  .bdMgrManageCardPage .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ════════════════════════════════════════════════════════
   CARD ITEM SETTING — effect select redesign
   ════════════════════════════════════════════════════════ */

/* Custom select wrapper — shows icon + chevron */
.bdMgrEffectSelectWrap {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  padding: 0 14px;
  transition: border-color 0.15s;
}

.bdMgrEffectSelectWrap:focus-within {
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(28, 45, 100, 0.08);
}

.bdMgrEffectSelectIcon {
  color: var(--site-cta-color);
  font-size: 13px;
  flex-shrink: 0;
  pointer-events: none;
}

.bdMgrEffectSelectField {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--site-text-color);
  padding: 11px 10px;
  cursor: pointer;
  outline: none;
  width: 100%;
}

.bdMgrEffectSelectChevron {
  color: var(--site-text-muted-color);
  font-size: 11px;
  flex-shrink: 0;
  pointer-events: none;
}

/* Divider between effect and header sections */
.bdMgrDivider {
  border: none;
  border-top: 1.5px solid var(--site-quaternary-color);
  margin: 16px 0;
}

/* Inline edit row — click to edit header/subheader */
.bdMgrInlineEdit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  background: #f9fbff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  cursor: pointer;
  transition:
    border-color 0.12s,
    background 0.12s;
}

.bdMgrInlineEdit:hover {
  background: #fff;
  border-color: var(--site-primary-color);
}

.bdMgrInlineEditValue {
  font-size: 14px;
  font-weight: 500;
  color: var(--site-text-color);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdMgrInlineEditIcon {
  color: #f59e0b;
  font-size: 12px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   GALLERY — photo grid + add/edit form
   ════════════════════════════════════════════════════════ */

.bdMgrGallerySection {
  padding: 0;
}

.bdMgrPhotoGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

/* Add tile */
.bdMgrPhotoAddBtn {
  aspect-ratio: 1;
  background: var(--site-secondary-color);
  border: 2px dashed var(--site-quaternary-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}

.bdMgrPhotoAddBtn i {
  font-size: 22px;
}

.bdMgrPhotoAddBtn:hover {
  border-color: var(--site-cta-color);
  background: #fff8f5;
  color: var(--site-cta-color);
}

/* Photo tile */
.bdMgrPhotoItem {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--site-quaternary-color);
}

.bdMgrPhotoImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bdMgrPhotoActions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.15s;
}

.bdMgrPhotoItem:hover .bdMgrPhotoActions {
  opacity: 1;
}

.bdMgrPhotoActionBtn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--site-text-color);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.12s;
}

.bdMgrPhotoActionBtn:hover {
  background: var(--site-secondary-color);
}

.bdMgrPhotoActionBtn--del:hover {
  background: #fee2e2;
  color: #dc2626;
}

/* Add/edit form panel */
.bdMgrPhotoForm {
  margin-top: 20px;
  border-top: 1.5px solid var(--site-quaternary-color);
  padding-top: 20px;
}

.bdMgrPhotoFormInner {
  max-width: 100%;
}

/* ════════════════════════════════════════════════════════
   QUICK LINKS — list + modal
   ════════════════════════════════════════════════════════ */

.bdMgrQLList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdMgrQLItem {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--site-secondary-color);
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.12s;
}

.bdMgrQLItem:hover {
  border-color: var(--site-primary-color);
  background: #fff;
}

.bdMgrQLItemBody {
  flex: 1;
  min-width: 0;
}

.bdMgrQLItemTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdMgrQLItemUrl {
  font-size: 11.5px;
  color: var(--site-primary-color);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.bdMgrQLItemUrl:hover {
  text-decoration: underline;
}

.bdMgrQLItemActions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   ACCORDION HEADER — collapsible sections
   ════════════════════════════════════════════════════════ */

.bdMgrAccordionHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: #f9fbff;
  border: 1.5px solid var(--site-quaternary-color);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.12s,
    border-color 0.12s;
  user-select: none;
}

.bdMgrAccordionHeader:hover {
  background: #fff;
  border-color: var(--site-primary-color);
}

.bdMgrAccordionChevron {
  font-size: 11px;
  color: var(--site-text-muted-color);
  transition: transform 0.2s;
}

.bdMgrAccordionHeader[aria-expanded="true"] .bdMgrAccordionChevron,
.collapse.show + * .bdMgrAccordionChevron {
  transform: rotate(180deg);
}

/* ════════════════════════════════════════════════════════
   SOCIAL INPUT — icon + input inline
   ════════════════════════════════════════════════════════ */

.bdMgrSocialInput {
  position: relative;
  display: flex;
  align-items: center;
}

.bdMgrSocialIcon {
  position: absolute;
  left: 14px;
  font-size: 14px;
  color: var(--site-text-muted-color);
  pointer-events: none;
}

.bdMgrSocialInput .bdMgrInput.form-control {
  padding-left: 38px !important;
}

/* ════════════════════════════════════════════════════════
   MANAGE CARD — mobile fixed bottom bar
   ════════════════════════════════════════════════════════ */

.bdMgrMobileBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1.5px solid var(--site-quaternary-color);
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  z-index: 300;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

/* Add bottom padding to page so content isn't hidden behind bar */
@media (max-width: 767px) {
  .bdMgrManageCardPage {
    padding-bottom: 72px;
  }

  /* Card sections sticky on mobile — stays visible at top */
  .bdMgrManageCardPage .card.border-0.shadow-sm.rounded-3 {
    border-radius: 12px !important;
  }

  /* Reduce card body padding on mobile */
  .bdMgrManageCardPage .card-body.p-4 {
    padding: 16px !important;
  }

  /* Two-col editor stacks properly */
  .bdMgrEditorTwoCol {
    grid-template-columns: 1fr !important;
  }

  .bdMgrEditorItemList {
    border-right: none !important;
    border-bottom: 1.5px solid var(--site-quaternary-color) !important;
    padding: 0 0 16px 0 !important;
    margin-bottom: 0 !important;
  }

  .bdMgrEditorForm {
    padding: 16px 0 0 0 !important;
  }

  /* Gallery grid smaller tiles on mobile */
  .bdMgrPhotoGrid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  /* Effect select wrap full width */
  .bdMgrEffectSelectWrap {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════
   DISPLAY FONT — Cormorant Garamond applied to headings
   Applies to: page titles, card headers, sidebar biz name,
   stat values, section panel titles, edit panel titles
   ════════════════════════════════════════════════════════ */

/* ── Page header titles ── */
.bdMgrPageHeader h5,
.bdMgrManageCardPage .bg-white.border-bottom h5,
.bg-white.border-bottom h5 {
  font-family: var(--site-secondary-font) !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

/* ── Card / panel header titles ── */
.bdMgrManageCardPage .card-header .fw-semibold,
.bdMgrDashboardContainer .card-header .fw-semibold {
  font-family: var(--site-secondary-font) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
}

/* ── Sidebar business name ── */
.bdSideBizName {
  font-family: var(--site-secondary-font) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Dashboard stat values ── */
.bdMgrPageHeaderStatValue,
.bdMgrManageCardPage .card .fw-bold.fs-5,
.bdMgrDashboardContainer .card .fw-bold.fs-5 {
  font-family: var(--site-secondary-font) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.1;
}

/* ── Card item setting — "Card Effect" heading ── */
.bdMgrCardItemSection h6 {
  font-family: var(--site-secondary-font) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* ── Edit user panel title ── */
.bdMgrEditUserPanel h6 {
  font-family: var(--site-secondary-font) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

/* ── bdMgrEditorSection — "Cover Image", "Enter Intro…" label shown as section title ── */
.bdMgrEditorSection > .bdMgrInputLabel:first-child {
  font-family: var(--site-secondary-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--site-text-color) !important;
}

/* ── Card Sections panel header ── */
.bdMgrCardSections .bdMgrSectionRow .bdMgrSectionName {
  font-family: var(--site-secondary-font) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

/* ── Dashboard people list — member name ── */
.bdMgrPersonRow .small.fw-medium {
  font-family: var(--site-secondary-font) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* ── Card holders table — member full name ── */
.bdMgrHoldersTable .fw-semibold {
  font-family: var(--site-secondary-font) !important;
  font-size: 15px !important;
}

/* ── Compare strip chip ── */
.bdMgrDashCompareChip {
  font-family: var(--site-secondary-font) !important;
}

/* ── Breadcrumb active item ── */
.breadcrumb-item.active.fw-medium {
  font-family: var(--site-secondary-font) !important;
  font-size: 14px !important;
}

/* ═══════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════ */
.bcd-page-header {
  background: var(--site-primary-color);
  padding: 16px 28px;
  position: sticky;
  top: 60px;
  /* Offset for the V2 header height */
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bcd-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bcd-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bcd-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.bcd-header-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.bcd-header-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 2px 0 0;
}

.bcd-header-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bcd-header-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bcd-header-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.bcd-header-stat-value--sm {
  font-size: 14px;
  font-weight: 600;
}

.bcd-header-stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}

.bcd-header-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════════ */
.bcd-filter-bar {
  background: #fff;
  border-bottom: 1px solid #e8edf2;
  padding: 10px 28px;
}

.bcd-filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.bcd-filter-inner::-webkit-scrollbar {
  display: none;
}

.bcd-filter-search {
  min-width: 200px !important;
  max-width: 240px !important;
}

.bcd-date-group {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.bcd-date-sep {
  color: #94a3b8;
  font-size: 12px;
  flex-shrink: 0;
}

.bcd-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s,
    transform 0.1s;
}

.bcd-apply-btn:hover {
  background: #1e3a5f;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   COMPARE STRIP
═══════════════════════════════════════════ */
.bcd-compare-band {
  background: linear-gradient(90deg, #eff6ff 0%, #f0f9ff 100%);
  border-bottom: 1px solid #bfdbfe;
  padding: 8px 28px;
}

.bcd-compare-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bcd-compare-label {
  font-size: 12px;
  font-weight: 700;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.bcd-compare-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bcd-compare-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.08);
}

.bcd-compare-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.bcd-compare-chip-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.bcd-compare-chip-name {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}

.bcd-compare-chip-views {
  font-size: 10px;
  color: #64748b;
}

/* ═══════════════════════════════════════════
   MAIN GRID LAYOUT
═══════════════════════════════════════════ */
.bcd-main-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  padding: 20px 28px 28px;
  background: #f1f5f9;
  min-height: calc(100vh - 180px);
}

@media (max-width: 960px) {
  .bcd-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   STAT CARDS
═══════════════════════════════════════════ */
.bcd-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.bcd-stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.bcd-stat-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.bcd-stat-card--views .bcd-stat-card-icon {
  background: #eff6ff;
  color: #2563eb;
}

.bcd-stat-card--members .bcd-stat-card-icon {
  background: #f0fdf4;
  color: #16a34a;
}

.bcd-stat-card--selected .bcd-stat-card-icon {
  background: #faf5ff;
  color: #7c3aed;
}

.bcd-stat-card-value {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.bcd-stat-card-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   SHARED CARD
═══════════════════════════════════════════ */
.bcd-card {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.07),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bcd-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
  flex-shrink: 0;
}

.bcd-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.bcd-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.bcd-card-body {
  padding: 14px;
  flex: 1;
  overflow: hidden;
}

.bcd-card-footer {
  padding: 8px 14px;
  border-top: 1px solid #f1f5f9;
  background: #fafbfc;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PEOPLE PANEL
═══════════════════════════════════════════ */
.bcd-people-panel {
  display: flex;
  flex-direction: column;
}

.bcd-people-card {
  flex: 1;
}

.bcd-people-list {
  max-height: 420px;
  overflow-y: auto;
}

.bcd-people-list::-webkit-scrollbar {
  width: 4px;
}

.bcd-people-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

/* Person view count */
.bcd-person-views-count {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.bcd-person-views-label {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Empty state */
.bcd-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.bcd-empty-icon {
  font-size: 36px;
  color: #cbd5e1;
}

.bcd-empty-text {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 10px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   ANALYTICS PANEL
═══════════════════════════════════════════ */
.bcd-analytics-panel {
  display: flex;
  flex-direction: column;
}

.bcd-chart-card {
  flex: 1;
}

.bcd-view-toggle {
  display: flex;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}

.bcd-toggle-btn {
  padding: 6px 14px;
  border: none;
  background: transparent;
  color: #64748b;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}

.bcd-toggle-btn--active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.bcd-toggle-btn:hover:not(.bcd-toggle-btn--active) {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.5);
}

.bcd-views-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
}

.bcd-chart-body {
  flex: 1;
  min-height: 520px;
  position: relative;
}

.bcd-chart-wrap {
  padding: 20px;
}

.bcd-chart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 480px;
  padding: 40px;
}

.bcd-chart-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.bcd-chart-empty-title {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin: 0 0 6px;
}

.bcd-chart-empty-sub {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  text-align: center;
}

/* =============================================
   AI Wallet Page  (/manage-business/control-panel/ai-wallet)
   ============================================= */

.aiWallet {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 48px;
  font-family: inherit;
  background: #f5f4ef;
  min-height: 100vh;
}

/* Header */
.aiWalletHeader {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.aiWalletBack {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #1e293b;
  cursor: pointer;
  transition: background 0.15s;
}

.aiWalletBack:hover {
  background: #e2e0d8;
}

.aiWalletTitle {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

/* Top Row: Balance + Usage side by side */
.aiWalletTopRow {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  margin-bottom: 32px;
}

/* Balance Card */
.aiWalletBalanceCard {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 28px 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aiWalletBalanceLabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #a0a0a0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.aiWalletBalanceAmount {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.aiWalletBalanceUnit {
  font-size: 22px;
  font-weight: 400;
  color: #a0a0a0;
}

.aiWalletBalanceSub {
  font-size: 13px;
  color: #a0a0a0;
  margin-bottom: 16px;
}

.aiWalletProgressTrack {
  height: 6px;
  border-radius: 99px;
  background: #3a3a3a;
  margin-bottom: 24px;
  overflow: hidden;
}

.aiWalletProgressFill {
  height: 100%;
  border-radius: 99px;
  background: var(--site-primary-color);
  transition: width 0.4s ease;
}

.aiWalletBalanceActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aiWalletBtnPrimary {
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  background: var(--site-cta-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.aiWalletBtnPrimary:hover {
  background: #a93226;
}

.aiWalletBtnSecondary {
  padding: 12px 0;
  border-radius: 8px;
  border: 1px solid #444;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.aiWalletBtnSecondary:hover {
  background: #2a2a2a;
}

/* Usage Card */
.aiWalletUsageCard {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.aiWalletUsageTitle {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.aiWalletUsageList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.aiWalletUsageItem {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aiWalletUsageIcon {
  font-size: 18px;
  width: 28px;
  flex-shrink: 0;
}

.aiWalletUsageName {
  flex: 1;
  font-size: 14px;
  color: #334155;
}

.aiWalletUsageAmount {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}

.aiWalletUsageDivider {
  height: 1px;
  background: #e2e8f0;
  margin: 20px 0 16px;
}

.aiWalletUsageTotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

/* Tools Section */
.aiWalletToolsLabel {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.aiWalletToolsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aiWalletToolCard {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.aiWalletToolCardLocked {
  opacity: 0.75;
}

.aiWalletToolLockIcon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 16px;
  color: #94a3b8;
}

.aiWalletToolIcon {
  font-size: 28px;
  margin-bottom: 4px;
}

.aiWalletToolName {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.aiWalletToolDesc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  flex: 1;
}

.aiWalletToolDescMuted {
  color: #94a3b8;
}

.aiWalletToolFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.aiWalletToolCost {
  font-size: 13px;
  color: #64748b;
}

.aiWalletToolBtn {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.aiWalletToolBtnDark {
  background: #1e293b;
  color: #fff;
}

.aiWalletToolBtnDark:hover {
  background: #334155;
}

.aiWalletToolComingSoon {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .aiWalletTopRow {
    grid-template-columns: 1fr;
  }

  .aiWalletToolsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .aiWalletToolsGrid {
    grid-template-columns: 1fr;
  }

  .aiWalletBalanceAmount {
    font-size: 38px;
  }
}

/* ════════════════════════════════════════════════════════
   CONTENT PADDING — normalise industry pages
   (Auto Mobile, Real Estate, Education) to match
   the standard container-fluid px-3 px-md-4 py-3 py-md-4
   ════════════════════════════════════════════════════════ */

/* Automobile / Education accordion pages */
.bdMgrDashboardContainer .infoAccrodions {
  padding: 16px 16px 0;
}

@media (min-width: 768px) {
  .bdMgrDashboardContainer .infoAccrodions {
    padding: 24px 32px 0;
  }
}

/* Real Estate pages use container-fluid p-lg-4 customBackgroundColor */
.bdMgrDashboardContainer .container-fluid.p-lg-4.customBackgroundColor,
.bdMgrDashboardContainer .container-fluid.customBackgroundColor {
  padding: 16px !important;
  background: transparent !important;
}

@media (min-width: 768px) {
  .bdMgrDashboardContainer .container-fluid.p-lg-4.customBackgroundColor,
  .bdMgrDashboardContainer .container-fluid.customBackgroundColor {
    padding: 24px 32px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Manage Giftbox — Essentials Page
   ═══════════════════════════════════════════════════════════════════ */

/* ── Business Selector in Ctx Bar ── */
.bdMgrBizSel {
  font-family: var(--site-primary-font);
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 8px;
  background: #ffffff;
  color: var(--site-text-color);
  cursor: pointer;
  outline: none;
}

/* ── Tools Grid ── */
.bdMgrGiftToolsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.bdMgrGiftToolCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  padding: 22px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.bdMgrGiftToolCard:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.bdMgrGiftToolCard--locked {
  opacity: 0.75;
}

.bdMgrGiftToolCardTop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bdMgrGiftToolIcon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--site-secondary-color);
  border-radius: 12px;
  flex-shrink: 0;
}

.bdMgrGiftToolName {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--site-text-color);
  flex: 1;
  line-height: 1.3;
}

.bdMgrGiftToolBadge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.bdMgrGiftToolBadge--free {
  background: #e5f7ed;
  color: #1a7a4a;
  border: 1px solid #a8dfc0;
}

.bdMgrGiftToolBadge--locked {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}

.bdMgrGiftToolDesc {
  font-size: 12.5px;
  color: var(--site-text-muted-color);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 16px;
}

.bdMgrGiftToolActions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.bdMgrGiftToolBtn {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 8px;
  background: var(--site-secondary-color);
  border: 1px solid var(--site-quaternary-color);
  color: var(--site-text-color);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
}

.bdMgrGiftToolBtn:hover {
  background: var(--site-quaternary-color);
  color: var(--site-text-color);
}

.bdMgrGiftToolBtn--primary {
  background: var(--site-primary-color);
  color: #fff !important;
  border-color: var(--site-primary-color);
}

.bdMgrGiftToolBtn--primary:hover {
  opacity: 0.88;
}

.bdMgrGiftToolBtn--link {
  background: transparent;
  border-color: transparent;
  color: var(--site-primary-color) !important;
  padding-left: 2px;
  font-size: 12px;
}

.bdMgrGiftToolBtn--link:hover {
  background: transparent;
  opacity: 0.8;
}

.bdMgrGiftLockOverlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(242, 239, 232, 0.65);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bdMgrGiftLockIcon {
  font-size: 22px;
  opacity: 0.6;
}

.bdMgrGiftLockLabel {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Quick Start List ── */
.bdMgrGiftQsCard {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 16px;
  overflow: hidden;
  max-width: 620px;
}

.bdMgrGiftQsRow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--site-quaternary-color);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--site-text-color);
}

.bdMgrGiftQsRow:last-child {
  border-bottom: none;
}

.bdMgrGiftQsRow:hover {
  background: var(--site-secondary-color);
}

.bdMgrGiftQsIcon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.bdMgrGiftQsIcon--orange {
  background: #fff4ed;
}

.bdMgrGiftQsIcon--blue {
  background: #eff6ff;
}

.bdMgrGiftQsIcon--green {
  background: #e5f7ed;
}

.bdMgrGiftQsLabel {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.bdMgrGiftQsSub {
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-weight: 300;
  margin-top: 2px;
}

.bdMgrGiftQsChevron {
  font-size: 18px;
  color: var(--site-text-muted-color);
}

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

/* ═══════════════════════════════════════════════════════════════════
   Page Header — shared across essentials sub-pages
   ═══════════════════════════════════════════════════════════════════ */

.bdMgrPageHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 16px;
  flex-wrap: wrap;
  background: #ffffff;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.bdMgrPageHeadLeft {
  flex: 1;
  min-width: 0;
}

.bdMgrPageHeadCrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--site-text-muted-color);
  margin-bottom: 6px;
}

.bdMgrPageHeadCrumbLink {
  color: var(--site-text-muted-color);
  text-decoration: none;
  transition: color 0.15s;
}

.bdMgrPageHeadCrumbLink:hover {
  color: var(--site-text-color);
}

.bdMgrPageHeadCrumbSep {
  opacity: 0.4;
}

.bdMgrPageHeadCrumbCurrent {
  color: var(--site-text-color);
  font-weight: 500;
}

.bdMgrPageHeadTitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--site-text-color);
  margin: 0;
  font-family: var(--site-secondary-font);
}

.bdMgrPageHeadRight {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bdMgrPageHeadBtn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--site-primary-font);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  height: 42px;
}

.bdMgrPageHeadBtn--ghost {
  background: #ffffff;
  border: 1px solid var(--site-quaternary-color);
  color: var(--site-text-color);
}

.bdMgrPageHeadBtn--ghost:hover {
  background: var(--site-quaternary-color);
  color: var(--site-text-color);
}

.bdMgrPageHeadBtn--primary {
  background: #28a745;
  color: #fff;
}

.bdMgrPageHeadBtn--primary:hover {
  opacity: 0.88;
  color: #fff;
}

.bdMgrMobileActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 32px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   Business Info — fancy input fields
   ═══════════════════════════════════════════════════════════════════ */

/* Domain Name — protocol + input row */
.biFancyInput {
  display: flex;
  align-items: center;
  border: 1px solid #cddaff;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.biFancyInput:focus-within {
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(212, 82, 26, 0.08);
}

.biFancyInput--disabled {
  background: #f9fbff;
}

.biProtocolSel {
  display: flex;
  gap: 2px;
  padding: 4px 6px;
  background: #f9fbff;
  border-right: 1px solid #e8e4dc;
  flex-shrink: 0;
}

.biProtocolBtn {
  padding: 4px 10px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--site-text-muted-color, #888);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.12s,
    color 0.12s;
  white-space: nowrap;
}

.biProtocolBtn:disabled {
  cursor: default;
}

.biProtocolBtn--active {
  background: #fff;
  color: var(--site-primary-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.biProtocolSep {
  font-size: 13px;
  color: #aaa;
  padding: 0 4px 0 8px;
  flex-shrink: 0;
  user-select: none;
}

.biInputField {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #1a1a1a;
  padding: 10px 8px;
  min-width: 0;
}

.biInputField:disabled {
  color: #888;
  cursor: default;
}

.biInputField::placeholder {
  color: #bbb;
}

.biInputEditBtn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.12s;
}

.biInputEditBtn:hover {
  color: var(--site-primary-color);
}

/* Upload Catalog — drop zone */
.biDropZone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1.5px dashed #cddaff;
  border-radius: 10px;
  padding: 20px 16px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
  width: 100%;
}

.biDropZone:hover {
  border-color: var(--site-primary-color);
  background: #fdf5f2;
}

.biDropZoneIcon {
  font-size: 22px;
  color: var(--site-primary-color);
}

.biDropZoneText {
  font-size: 12px;
  color: var(--site-text-muted-color, #888);
  font-weight: 500;
}

.biDropZoneInput {
  display: none;
}

/* Upload Catalog — file chip */
.biFileChip {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #e8e4dc;
  border-radius: 10px;
  background: #f9fbff;
}

.biFileChipIcon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--site-primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.biFileChipName {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.biFileChipLink {
  color: var(--site-primary-color);
  text-decoration: none;
}

.biFileChipLink:hover {
  text-decoration: underline;
}

.biFileChipRemove {
  width: 26px;
  height: 26px;
  border: none;
  background: #ece9e3;
  border-radius: 6px;
  color: #888;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.12s,
    color 0.12s;
}

.biFileChipRemove:hover {
  background: #fde8e8;
  color: #ef4444;
}

/* Page Body — main content area below page header */
.bdMgrPageBody {
  /* padding: 24px 32px 40px !important; */
  margin: 24px 32px 40px !important;
  border-radius: 10px !important;
}

/* BigDot Publish Section */
.bigdot-publish-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
  border-radius: 16px;
  border: 1px solid #bbf7d0;
  position: relative;
  overflow: hidden;
}

.bigdot-publish-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.bigdot-publish-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.bigdot-publish-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.30);
}

.bigdot-publish-icon i {
  font-size: 32px;
  color: #fff;
}

.bigdot-publish-title {
  font-size: 28px;
  font-weight: 700;
  color: #14532d;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.bigdot-publish-desc {
  font-size: 15px;
  color: #166534;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.bigdot-publish-features {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.bigdot-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.10);
}

.bigdot-feature-item i {
  font-size: 14px;
  color: #22c55e;
}

.bigdot-publish-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  padding: 18px 32px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: bigdot-pulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.bigdot-publish-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
  animation: none;
  color: #fff !important;
  text-decoration: none;
}

@keyframes bigdot-pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.55);
    transform: translateY(-2px);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Appointments Grid
   ═══════════════════════════════════════════════════════════════════ */

/* Layout */
.apptLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.apptLayout--split {
  grid-template-columns: 1fr 360px;
}

/* Table card */
.apptTableCard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Toolbar */
.apptCardToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 0;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.apptFilterTabs {
  display: flex;
  gap: 0;
}

.apptFilterTab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition:
    color 0.15s,
    border-color 0.15s;
  font-family: var(--site-primary-font);
}

.apptFilterTab i {
  margin-right: 5px;
}

.apptFilterTab--active {
  color: var(--site-primary-color);
  border-bottom-color: var(--site-primary-color);
}

.apptFilterTab:hover:not(.apptFilterTab--active) {
  color: var(--site-text-color);
}

/* Table */
.apptTableWrap {
  overflow-x: auto;
}

.apptTable {
  width: 100%;
  border-collapse: collapse;
}

.apptTable thead tr {
  border-bottom: 1px solid var(--site-quaternary-color);
}

.apptTable thead th {
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--site-text-muted-color);
  white-space: nowrap;
}

.apptTable tbody tr {
  border-bottom: 1px solid var(--site-quaternary-color);
  cursor: pointer;
  transition: background 0.12s;
}

.apptTable tbody tr:last-child {
  border-bottom: none;
}

.apptTable tbody tr:hover {
  background: var(--site-secondary-color);
}

.apptRow--active {
  background: rgba(212, 82, 26, 0.04) !important;
}

.apptTable td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--site-text-color);
}

.apptName {
  font-weight: 500;
}

.apptDate {
  color: var(--site-text-muted-color);
  font-size: 13px;
}

.apptActionCell {
  width: 48px;
  text-align: center;
}

/* Status badges */
.apptBadge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.apptBadge--waiting {
  background: #fff8e1;
  color: #f59e0b;
}

.apptBadge--accepted {
  background: #e6f4ea;
  color: #22c55e;
}

.apptBadge--rejected {
  background: #fde8e8;
  color: #ef4444;
}

/* Action trigger button */
.apptActionWrap {
  position: relative;
}

.apptActionBtn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apptActionBtn:hover {
  background: var(--site-secondary-color);
  color: var(--site-text-color);
}

/* Action context menu */
.apptActionMenu {
  min-width: 180px;
  border-radius: 12px !important;
  border: 1px solid var(--site-quaternary-color) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden;
  padding: 6px !important;
}

.apptActionMenuItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s;
}

.apptActionMenuItem:hover {
  background: var(--site-secondary-color);
}

.apptActionMenuIcon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.apptActionMenuLabel {
  font-size: 13px;
  font-weight: 500;
  color: var(--site-text-color);
  font-family: var(--site-primary-font);
}

/* View — indigo */
.apptActionMenuItem--view .apptActionMenuIcon {
  background: #eef2ff;
  color: var(--site-primary-color);
}

/* Accept — green */
.apptActionMenuItem--accept .apptActionMenuIcon {
  background: #e6f4ea;
  color: #22c55e;
}

/* Reject — red */
.apptActionMenuItem--reject .apptActionMenuIcon {
  background: #fde8e8;
  color: #ef4444;
}

/* Reschedule — amber */
.apptActionMenuItem--reschedule .apptActionMenuIcon {
  background: #fff8e1;
  color: #f59e0b;
}

.apptActionMenuDivider {
  height: 1px;
  background: var(--site-quaternary-color);
  margin: 4px 0;
}

/* Empty state */
.apptEmpty {
  text-align: center;
  padding: 48px 20px;
}

.apptEmptyIcon {
  font-size: 36px;
  color: var(--site-quaternary-color);
  margin-bottom: 12px;
  display: block;
}

.apptEmptyText {
  color: var(--site-text-muted-color);
  font-size: 14px;
  margin: 0;
}

/* Pagination */
.apptPagination {
  padding: 12px 20px;
  border-top: 1px solid var(--site-quaternary-color);
}

/* Detail panel */
.apptDetailCard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-self: start;
  position: sticky;
  top: 80px;
}

.apptDetailHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.apptDetailLabel {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--site-text-muted-color);
  margin: 0 0 4px;
}

.apptDetailName {
  font-size: 16px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0;
}

.apptDetailClose {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--site-secondary-color);
  border-radius: 6px;
  cursor: pointer;
  color: var(--site-text-muted-color);
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.apptDetailClose:hover {
  background: var(--site-quaternary-color);
}

.apptDetailBody {
  padding: 8px 0;
  overflow-y: auto;
  max-height: 60vh;
}

.apptDetailRow {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.apptDetailRow:last-child {
  border-bottom: none;
}

.apptDetailIcon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  text-align: center;
}

/* Per-icon colors — appointment detail */
.apptDetailIcon.fa-calendar-day {
  background: #eff6ff;
  color: #3b82f6;
}

.apptDetailIcon.fa-circle-dot {
  background: #f0fdf4;
  color: #22c55e;
}

.apptDetailIcon.fa-briefcase {
  background: #fff7ed;
  color: #f97316;
}

.apptDetailIcon.fa-envelope {
  background: #fff7ed;
  color: #f59e0b;
}

.apptDetailIcon.fa-phone {
  background: #f0fdf4;
  color: #22c55e;
}

.apptDetailIcon.fa-building {
  background: #f0f9ff;
  color: #0ea5e9;
}

.apptDetailIcon.fa-clipboard {
  background: #fdf2f8;
  color: #ec4899;
}

.apptDetailIcon.fa-hourglass {
  background: #faf5ff;
  color: #8b5cf6;
}

.apptDetailIcon.fa-globe {
  background: #ecfdf5;
  color: #10b981;
}

.apptDetailIcon.fa-paperclip {
  background: #faf5ff;
  color: #8b5cf6;
}

.apptDetailKey {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--site-text-muted-color);
  margin: 0 0 2px;
}

.apptDetailVal {
  font-size: 13px;
  color: var(--site-text-color);
  margin: 0;
}

.apptDetailLink {
  font-size: 13px;
  color: var(--site-primary-color);
  font-weight: 500;
}

.apptDetailActions {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--site-quaternary-color);
  flex-wrap: wrap;
}

.apptDetailActionBtn {
  flex: 1;
  min-width: 72px;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition:
    opacity 0.12s,
    transform 0.1s;
  font-family: var(--site-primary-font);
}

.apptDetailActionBtn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.apptDetailActionBtn:nth-child(1) {
  background: #fff7ed;
  color: #c2410c;
}

/* Follow Up */
.apptDetailActionBtn:nth-child(2) {
  background: #eff6ff;
  color: #1d4ed8;
}

/* History */
.apptDetailActionBtn:nth-child(3) {
  background: #faf5ff;
  color: #7c3aed;
}

/* Guests */

.apptDetailActionBtn i {
  margin-right: 0;
}

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

  .apptDetailCard {
    position: static;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Section Panels — collapsible content panels (webcard, etc.)
   ═══════════════════════════════════════════════════════════════════ */

.bdMgrSectionList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 32px 40px;
}

.bdMgrSecPanelHead {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 12px;
  transition: background 0.15s;
  border-radius: 0;
}

.bdMgrSecPanelHead:hover {
  background: var(--site-secondary-color);
}

.bdMgrSecPanelHead:hover .bdMgrWebPanelTitle {
  color: var(--site-primary-color);
}

.bdMgrSecPanelHead:hover .bdMgrSecPanelIcon {
  background: rgba(212, 82, 26, 0.1);
  color: var(--site-primary-color);
}

.bdMgrSecPanelHead:hover .bdMgrSecChevron {
  color: var(--site-primary-color);
}

.bdMgrSecPanelHeadLeft {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdMgrSecPanelIcon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--site-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--site-primary-color);
  flex-shrink: 0;
}

.bdMgrSecChevron {
  font-size: 13px;
  color: var(--site-text-muted-color);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.bdMgrSecPanelBody {
  padding: 4px 22px 22px;
  border-top: 1px solid var(--site-quaternary-color);
}

/* ── Form elements inside panels ── */
.bdMgrFormGroup {
  margin-bottom: 16px;
}

.bdMgrFormLabel {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--site-text-muted-color);
  margin-bottom: 8px;
}

.bdMgrFormTextarea {
  width: 100%;
  background: #f9fbff;
  border: 1.5px solid #cddaff;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  color: var(--site-text-color);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}

.bdMgrFormTextarea:focus {
  border-color: var(--site-tertiary-color);
}

.bdMgrFormHint {
  font-size: 11.5px;
  color: var(--site-text-muted-color);
  margin-top: 6px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .bdMgrPageHead {
    padding: 14px 20px;
  }

  .bdMgrPageHeadRight {
    display: none;
  }

  .bdMgrSectionList {
    padding: 16px 20px 32px;
  }
}

/* ── Card Sections Panel ── */
.csPanel {
  background: #ffffff;
  /* border: 1px solid #e8e4dc; */
  border-radius: 14px;
  overflow: hidden;
  font-family: var(--site-primary-font, "Inter", sans-serif);
}

.csPanelHead {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e4dc;
}

.csPanelTitle {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

/* ── List ── */
.csList {
  padding: 6px;
}

.csRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s;
  margin-bottom: 2px;
}

.csRow:last-child {
  margin-bottom: 0;
}

.csRow:hover {
  background: #f9fbff;
}

.csRow--active {
  background: #ebeefb;
}

.csRow--locked {
  cursor: default;
  opacity: 0.7;
}

.csRow--locked:hover {
  background: transparent;
}

/* Icon bubble */
.csRowIcon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--site-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--site-primary-color);
  flex-shrink: 0;
  transition:
    background 0.12s,
    color 0.12s;
}

.csRow--active .csRowIcon {
  background: var(--site-secondary-color);
  color: var(--site-primary-color);
}

.csRowIconMuted {
  background: var(--site-secondary-color);
  color: #aaa;
}

/* Label */
.csRowLabel {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.csRowLabelMuted {
  color: #aaa;
}

/* Action area */
.csRowActions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.csEditBtn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: #aaa;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.12s,
    color 0.12s;
}

.csEditBtn:hover:not(:disabled) {
  background: var(--site-secondary-color);
  color: var(--site-primary-color);
}

.csEditBtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Toggle */
.csToggle {
  cursor: pointer;
}

/* Lock badge */
.csLockBadge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f59e0b;
  background: #fff8e1;
  padding: 2px 7px;
  border-radius: 20px;
}

/* Pro divider */
.csProDivider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid #e8e4dc;
  background: #fafaf8;
}

.csProLabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
}

.csUpgradeBtn {
  padding: 4px 14px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.csUpgradeBtn:hover {
  background: #333;
}

/* Add more */
.csAddMore {
  padding: 4px 6px 6px;
}

.csAddMoreBtn {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px dashed #e8e4dc;
  border-radius: 10px;
  background: transparent;
  color: var(--site-primary-color);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.12s,
    border-color 0.12s;
  font-family: inherit;
}

.csAddMoreBtn i {
  margin-right: 5px;
}

.csAddMoreBtn:hover {
  background: #fdf5f2;
  border-color: var(--site-primary-color);
}

/* ═══════════════════════════════════════════
   Enquiry Table — enq*
   ═══════════════════════════════════════════ */

.enqLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  transition: grid-template-columns 0.25s ease;
}

.enqLayoutSplit {
  grid-template-columns: 1fr 360px;
}

.enqDetailCard {
  width: 100%;
}

/* Card header */
.enqCardHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 0px 16px;
  border-bottom: 1px solid var(--site-quaternary-color);
  text-align: left;
}

.enqCardTitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--site-primary-color) !important;
  margin: 0 0 2px;
  text-align: left;
  margin-bottom: 5px !important;
}

.enqCardSubtitle {
  font-size: 13px;
  color: var(--site-text-muted-color);
  margin: 0;
  text-align: left;
}

.enqRefreshBtn {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 8px;
  color: var(--site-primary-color);
  cursor: pointer;
  padding: 7px 12px;
  font-size: 14px;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.enqRefreshBtn:hover {
  background: var(--site-primary-color);
  color: #fff;
  border-color: var(--site-primary-color);
  transform: rotate(180deg);
}

/* Filter bar */
.enqFilterBar {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 16px 0px;
  border-bottom: 1px solid var(--site-quaternary-color);
  flex-wrap: wrap;
  text-align: left;
}

.enqFilterField {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 160px;
}

.enqFilterLabel {
  font-size: 12px;
  font-weight: 500;
  color: var(--site-text-muted-color);
  margin: 0;
}

.enqDateInput {
  border-radius: 8px !important;
  border-color: var(--site-quaternary-color) !important;
  font-size: 14px !important;
}

.enqFetchBtn {
  border-radius: 8px !important;
  padding: 9px 20px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  white-space: nowrap;
  align-self: flex-end;
}

/* Table */
.enqTableWrap {
  overflow-x: auto;
}

.enqTable {
  width: 100%;
  border-collapse: collapse;
}

.enqTable thead tr {
  background: #f5f6f8;
}

.enqTable thead th {
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  white-space: nowrap;
  border: none;
}

.enqTable tbody tr {
  border-bottom: 1px solid var(--site-quaternary-color);
  cursor: pointer;
  transition: background 0.1s;
}

.enqTable tbody tr:last-child {
  border-bottom: none;
}

.enqTable tbody tr:hover {
  background: #f9fafb;
}

.enqTable tbody tr.enqRow--active {
  background: #fef5f0;
}

.enqTable td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--site-text-color);
  vertical-align: middle;
  border: none;
}

/* Name cell */
.enqName {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.enqIconUnread {
  color: var(--site-primary-color);
  font-size: 13px;
}

.enqIconRead {
  color: #6b7280;
  font-size: 13px;
}

.enqIconStar {
  color: #f59e0b;
  font-size: 13px;
}

/* Action cell */
.enqActionCell {
  width: 60px;
  text-align: center;
}

.enqActionWrap {
  position: relative;
  display: inline-block;
}

.enqActionBtn {
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  color: #6b7280;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: background 0.12s;
}

.enqActionBtn:hover {
  background: #f3f4f6;
}

.enqActionMenu {
  border: 1px solid var(--site-quaternary-color) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  min-width: 190px;
  overflow: hidden;
}

.enqActionMenuItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.1s;
  text-decoration: none !important;
  color: var(--site-text-color) !important;
}

.enqActionMenuItem:hover {
  background: #f9fafb;
}

.enqActionMenuIcon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.enqActionMenuItemView .enqActionMenuIcon {
  background: #eff6ff;
  color: #3b82f6;
}

.enqActionMenuItemFollowup .enqActionMenuIcon {
  background: #fff7ed;
  color: #f59e0b;
}

.enqActionMenuItem--history .enqActionMenuIcon {
  background: #f0fdf4;
  color: #22c55e;
}

.enqActionMenuItem--read .enqActionMenuIcon {
  background: #f0f9ff;
  color: #0ea5e9;
}

.enqActionMenuItem--star .enqActionMenuIcon {
  background: #fefce8;
  color: #eab308;
}

.enqActionMenuLabel {
  font-size: 13px;
  font-weight: 500;
}

.enqActionMenuDivider {
  height: 1px;
  background: var(--site-quaternary-color);
  margin: 2px 0;
}

/* Empty state */
.enqEmpty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 8px;
}

.enqEmptyIcon {
  font-size: 32px;
  color: #d1d5db;
}

.enqEmptyText {
  font-size: 14px;
  color: var(--site-text-muted-color);
  margin: 0;
}

/* Pagination */
.enqPagination {
  padding: 12px 20px;
  border-top: 1px solid var(--site-quaternary-color);
}

/* Detail panel */
.enqDetailHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.enqDetailLabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin: 0 0 4px;
}

.enqDetailName {
  font-size: 16px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0;
}

.enqDetailClose {
  background: none;
  border: 1px solid var(--site-quaternary-color);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--site-text-muted-color);
  cursor: pointer;
  font-size: 14px;
}

.enqDetailClose:hover {
  background: #f3f4f6;
}

.enqDetailBody {
  padding: 8px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  max-height: 440px;
}

.enqDetailRow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--site-quaternary-color);
}

.enqDetailRow:last-child {
  border-bottom: none;
}

.enqDetailIcon {
  font-size: 13px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}

/* Per-icon colors */
.enqDetailIcon.fa-calendar-day {
  background: #eff6ff;
  color: #3b82f6;
}

.enqDetailIcon.fa-envelope {
  background: #fff7ed;
  color: #f59e0b;
}

.enqDetailIcon.fa-phone {
  background: #f0fdf4;
  color: #22c55e;
}

.enqDetailIcon.fa-clock {
  background: #f0f9ff;
  color: #0ea5e9;
}

.enqDetailIcon.fa-paperclip {
  background: #faf5ff;
  color: #8b5cf6;
}

.enqDetailIcon.fa-comment {
  background: #fdf2f8;
  color: #ec4899;
}

.enqDetailIcon.fa-message {
  background: #fff7ed;
  color: #f97316;
}

.enqDetailKey {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin: 0 0 2px;
}

.enqDetailVal {
  font-size: 13px;
  color: var(--site-text-color);
  margin: 0;
}

.enqDetailVal--muted {
  color: var(--site-text-muted-color);
  font-style: italic;
}

.enqDetailLink {
  font-size: 13px;
  color: var(--site-primary-color);
  text-decoration: none;
}

.enqDetailLink:hover {
  text-decoration: underline;
}

/* Biz remark inline edit */
.enqBizRemarkWrap {
  flex: 1;
}

.enqBizRemarkDisplay {
  display: flex;
  align-items: center;
  gap: 8px;
}

.enqBizRemarkEditBtn {
  background: none;
  border: none;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--site-text-muted-color);
  cursor: pointer;
  font-size: 12px;
}

.enqBizRemarkEditBtn:hover {
  background: #f3f4f6;
  color: var(--site-text-color);
}

.enqBizRemarkEdit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enqBizRemarkActions {
  display: flex;
  gap: 8px;
}

/* Detail action buttons */
.enqDetailActions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid var(--site-quaternary-color);
}

.enqDetailActionBtn {
  flex: 1 1 auto;
  min-width: 72px;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition:
    opacity 0.12s,
    transform 0.1s;
  font-family: inherit;
}

.enqDetailActionBtn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.enqDetailActionBtn:nth-child(1) {
  background: #fff7ed;
  color: #c2410c;
}

/* Follow Up - orange */
.enqDetailActionBtn:nth-child(2) {
  background: #eff6ff;
  color: #1d4ed8;
}

/* History - blue */
.enqDetailActionBtn:nth-child(3) {
  background: #f0f9ff;
  color: #0369a1;
}

/* Read - sky */
.enqDetailActionBtn:nth-child(4) {
  background: #fefce8;
  color: #a16207;
}

/* Important - yellow */

/* Extra icon colors shared by feedback */
.enqDetailIcon.fa-star {
  background: #fefce8;
  color: #ca8a04;
}

.enqDetailIcon.fa-list-check {
  background: #faf5ff;
  color: #8b5cf6;
}

.enqDetailIcon.fa-calendar-check {
  background: #ecfdf5;
  color: #10b981;
}

.enqDetailIcon.fa-shield-halved {
  background: #f0fdf4;
  color: #16a34a;
}

/* Star rating display */
.fdbStars {
  display: flex;
  gap: 2px;
  align-items: center;
}

.fdbStars--lg {
  gap: 4px;
}

.fdbStar--filled {
  color: #f59e0b;
  font-size: 13px;
}

.fdbStar--empty {
  color: #d1d5db;
  font-size: 13px;
}

.fdbStars--lg .fdbStar--filled {
  font-size: 16px;
}

.fdbStars--lg .fdbStar--empty {
  font-size: 16px;
}

/* Truncate long review text in table cell */
.fdbReviewCell {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editForm {
  padding: 10px;
}

.error-font {
  color: red;
}

.cursor-pointer {
  cursor: pointer;
}

.background-failure {
  background-color: #dc3545;
  color: white;
}

.background-success {
  background-color: green;
  color: white;
}

.businessName {
  text-align: center;
}

.businessDashIcon {
  font-size: 40px;
  color: var(--site-primary-color) !important;
}

.businessDashIcon {
  color: var(--site-primary-color) !important;
}

.mat-select-panel {
  background: white;
}

.mat-select-value {
  color: black;
}

.input-form-error {
  color: red;
}

.mat-select-placeholder {
  color: #aea1a1;
}

.preview-card {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.preview-card .preview-card-item-image {
  height: 200px;
  width: 200px;
  background-color: #f1f1f1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-card .preview-card-item-image img {
  height: 90%;
  object-fit: contain;
}

.preview-card .preview-card-item .name-label {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3f51bc;
  margin: 0.6rem 0;
}

.save-and-procced {
  display: flex;
  justify-content: center;
  margin: 10rem 0;
  font-size: 20px;
  color: #787575;
  font-weight: 500;
}

.preview-card .preview-card-item:first-child {
  padding: 0.5rem;
  flex: 30%;
}

.preview-card .preview-card-item:last-child {
  padding: 0.5rem;
  flex: 70%;
}

.preview-card-item .list-group-item {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.5rem;
}

.preview-card-item .list-group-item div:first-child {
  font-weight: 500;
}

.preview-card-item .list-group-item div:last-child {
  color: #8b8888;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .preview-card .preview-card-item:last-child,
  .preview-card .preview-card-item:first-child {
    flex: 100%;
  }
}

.mat-pseudo-checkbox {
  background-color: #c5e1a5 !important;
  border-color: #c5e1a5 !important;
}

.mat-pseudo-checkbox-checked,
.mat-pseudo-checkbox-indeterminate {
  background-color: #c5e1a5 !important;
  border-color: #c5e1a5 !important;
  color: #ffffff !important;
}

/* Default hidden */
.sidebar {
  width: 0;
  opacity: 0;
  transition: all 0.3s ease;
  overflow-x: hidden;
}

/* Opened in mobile */
.sidebar.mobile-open {
  width: 80% !important;
  opacity: 1 !important;
}

/* Opened in desktop */
.sidebar.desktop-open {
  width: 240px !important;
  opacity: 1 !important;
}

.spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
}

.card-grid-container {
  display: grid;
  /* This creates a responsive row: cards will be at least 250px wide, and fill the available space */
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* This adds space between your cards */
  gap: 20px;
  /* Optional: Adds some padding around the whole grid */
  padding: 20px;
}

/* ============================================
   COMPONENT BASE CLASSES
   ============================================ */

/* Buttons */
.btn-primary-site {
  background-color: var(--site-primary-color);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  font-family: var(--site-body-font);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-site:hover {
  filter: brightness(0.92);
}

.btn-cta-site {
  background-color: var(--site-cta-color);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  font-family: var(--site-body-font);
  font-weight: 600;
  transition: var(--transition);
}
.btn-cta-site:hover {
  filter: brightness(0.92);
}

.btn-outline-site {
  background-color: transparent;
  color: var(--site-primary-color);
  border: 1.5px solid var(--site-primary-color);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  font-family: var(--site-body-font);
  font-weight: 600;
  transition: var(--transition);
}

/* Inputs */
.input-site {
  background: var(--site-input-bg);
  border: 1px solid var(--site-input-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-family: var(--site-body-font);
  font-size: clamp(13px, 1.1vw, 16px);
  color: var(--site-text-color);
  transition: var(--transition);
  width: 100%;
}
.input-site:focus {
  outline: none;
  border-color: var(--site-primary-color);
  box-shadow: 0 0 0 3px rgba(240, 92, 41, 0.15);
}

/* Section spacing */
.sectionPadSm {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}
.sectionPadMd {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.sectionPadLg {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

/* ============================================
   Payee Sections — accordion
   ============================================ */
.payeeSections .accordion-item {
  background: #fff;
  border: 1px solid var(--site-border-color) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.payeeSections .accordion-button {
  background: #fff;
  color: var(--site-text-color);
  font-family: var(--site-body-font);
  padding: 1rem 1.25rem;
  box-shadow: none !important;
  gap: 0.875rem;
  align-items: center;
}
.payeeSections .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--site-text-color);
  box-shadow: none !important;
  border-bottom: 1px solid var(--site-border-color);
}
.payeeSections .accordion-button::after {
  display: none !important;
}
.payeeSections .accordion-body {
  background: var(--site-secondary-color);
  padding: 1.25rem;
}

.payeeSectionIcon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: var(--site-secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--site-primary-color);
  flex-shrink: 0;
  font-size: 1rem;
}
.payeeBtnContent {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.payeeBtnLabel {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
}
.payeeBtnTitle {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  color: var(--site-text-color);
}
.payeeBtnChevron {
  color: var(--site-primary-color);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.profileImage {
  width: 50%;
  height: 90px;
  position: relative;
  img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
  }
  .imageDelete {
    position: absolute;
    top: -5px;
    right: -13px;
    cursor: pointer;
  }
}

/* ── Card Sections Panel (matches app-card-setting exactly) ── */
.csPanel {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
}

.csPanelHead {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e4dc;
}
.csPanelTitle {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.csList {
  padding: 6px;
}

.csRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s;
  margin-bottom: 2px;
  &:last-child {
    margin-bottom: 0;
  }
  &:hover {
    background: #f9fbff;
  }
  &--active {
    background: #eef0fe;
  }
}

.csDragHandle {
  display: flex;
  align-items: center;
  color: #ccc;
  cursor: grab;
  font-size: 13px;
  flex-shrink: 0;
  transition: color 0.12s;
  padding: 2px 0;
  &:hover {
    color: #888;
  }
}

.cdk-drag-preview {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
}
.cdk-drag-placeholder {
  opacity: 0.3;
}
.cdk-drag-animating {
  transition: transform 200ms ease;
}
.csList.cdk-drop-list-dragging .csRow:not(.cdk-drag-placeholder) {
  transition: transform 200ms ease;
}

.csRowIcon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--site-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--site-primary-color);
  flex-shrink: 0;
  transition:
    background 0.12s,
    color 0.12s;
}
.csRow--active .csRowIcon {
  background: var(--site-secondary-color);
  color: var(--site-primary-color);
}

.csRowLabel {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.csRowActions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.csEditBtn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: #aaa;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.12s,
    color 0.12s;
  &:hover:not(:disabled) {
    background: var(--site-secondary-color);
    color: var(--site-primary-color);
  }
  &:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }
}

.csToggle {
  cursor: pointer;
}

/* Override Bootstrap switch color to match primary orange */
.form-check-input.csToggle:checked {
  background-color: var(--site-primary-color);
  border-color: var(--site-primary-color);
}

.bcd-support-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #ffffff;
  color: #1e3a5f;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  height: 42px;
}

.bcd-support-pill:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}

.bcd-support-pill i {
  color: var(--site-cta-color);
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════════
   BIG-DOT WEBSITE PRO — extracted from inline styles
   ═══════════════════════════════════════════════════════════════════ */

/* Nav logo pointer & size override for website pages */
.bdMgrNavLogo {
  cursor: pointer;
}

.bdMgrWebNavLogoImg {
  height: 28px;
}

/* Avatar with profile image clipping */
.bdMgrNavAvatar--withImg {
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.bdMgrAvatarImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdMgrAvatarDdAvatar--clip {
  overflow: hidden;
}

/* Pro hero eyebrow dot — white variant */
.bdMgrWebEyebrowDot--white {
  background: rgba(255, 255, 255, 0.7);
}

/* Inline link inside pro hero paragraph */
.bdMgrWebProHeroLink {
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

/* Pro hero meta row modifiers */
.bdMgrWebProHeroMetaItem--sep {
  opacity: 0.6;
}

.bdMgrWebProHeroMetaItem--link {
  cursor: pointer;
}

/* Context bar compact vertical padding */
.bdMgrWebCtxBar--sm {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Billing cycle text in context bar */
.bdMgrWebCtxBillingText {
  margin: 0;
  font-size: 13px;
  color: var(--bdMgr-muted);
}

/* Active status badge */
.bdMgrWebCtxBadge--active {
  background: #E5F7ED;
  color: #1A7A4A;
  border: 1px solid #A8DFC0;
}

/* AI cards panel body padding */
.bdMgrWebPanelBody--ai {
  padding: 14px 22px;
}

/* Tab panel wrappers (Design / Domain) */
.bdMgrWebProTabPanel {
  max-width: 560px;
  background: var(--bdMgr-surface);
  border: 1px solid var(--bdMgr-border);
  border-radius: 16px;
  padding: 28px;
}

/* SEO tab panel */
.bdMgrWebProSeoPanel {
  /* max-width: 640px; */
  background: var(--bdMgr-surface);
  border: 1px solid var(--bdMgr-border);
  border-radius: 16px;
  overflow: hidden;
}

/* Settings tab panel */
.bdMgrWebProSettingsPanel {
  max-width: 560px;
  background: var(--bdMgr-surface);
  border: 1px solid var(--bdMgr-border);
  border-radius: 16px;
  overflow: hidden;
}

/* Panel title margin modifiers */
.bdMgrWebPanelTitle--mb12 {
  margin-bottom: 12px;
}

.bdMgrWebPanelTitle--mb6 {
  margin-bottom: 6px;
}

/* Tab description paragraph */
.bdMgrWebProTabDesc {
  font-size: 13.5px;
  color: var(--bdMgr-muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Domain address box */
.bdMgrWebDomainAddrBox {
  background: var(--bdMgr-bg);
  border: 1px solid var(--bdMgr-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.bdMgrWebDomainAddrLabel {
  font-size: 12px;
  color: var(--bdMgr-muted);
  margin-bottom: 6px;
}

.bdMgrWebDomainDot {
  width: 8px;
  height: 8px;
  background: #1A7A4A;
  border-radius: 50%;
  flex-shrink: 0;
}

.bdMgrWebDomainAddrRow {
  font-family: monospace;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Settings field label */
.bdMgrWebSettingsFieldLabel {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bdMgr-muted);
  margin-bottom: 6px;
}

/* Settings themed form control */
.bdMgrWebSettingsInput {
  font-family: var(--bdMgr-font-ui);
  background: var(--bdMgr-bg);
  border-color: var(--bdMgr-border);
  color: var(--bdMgr-text);
}

/* Save button alignment */
.bdMgrWebSaveBtn {
  align-self: flex-start;
}

/* Website page footer elements */
.bdMgrWebFooterLogoImg {
  height: 18px;
  opacity: 0.5;
}

.bdMgrWebFooterSep {
  opacity: 0.4;
}

.bdMgrWebFooterLink {
  color: inherit;
  text-decoration: none;
}

.bdMgrWebFooterVersion {
  margin-left: auto;
  opacity: 0.45;
}

/* ═══════════════════════════════════════════════════════════════════
   BIG-DOT WEBSITE (standard) — extracted from inline styles
   ═══════════════════════════════════════════════════════════════════ */

/* FAQ section heading size override */
.bdMgrWebFaqSectionTitle {
  font-size: clamp(24px, 2.5vw, 34px);
  margin-bottom: 32px;
}

/* Final CTA primary button — full width variant */
.bdMgrWebFinalCtaBtn--full {
  width: 100%;
}

/* Final CTA ghost button — light/inverted variant */
.bdMgrWebBtnGhost--light {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Quick Actions panel body padding */
.bdMgrWebPanelBody--qa {
  padding: 4px 22px 10px;
}

/* Panel title margin modifiers */
.bdMgrWebPanelTitle--mb20 {
  margin-bottom: 20px;
}

/* Button top margin (e.g. Open Design Editor) */
.bdMgrWebBtnMarginTop {
  margin-top: 20px;
}

/* Wizard placeholder for steps 2–4 */
.bdMgrWebWizPlaceholder {
  padding: 20px;
  background: var(--bdMgr-bg);
  border-radius: 12px;
  border: 1px dashed var(--bdMgr-border);
  text-align: center;
  color: var(--bdMgr-muted);
  font-size: 14px;
}

/* Add pages helper note */
.bdMgrWebAddPagesNote {
  font-size: 12.5px;
  color: var(--bdMgr-muted);
  font-weight: 300;
  margin-bottom: 14px;
}

/* Domain address box — clickable variant */
.bdMgrWebDomainAddrBox--clickable {
  cursor: pointer;
}

/* ── Template picker thumbnail backgrounds ── */
.bdMgrWebTmplThumb--blue {
  background: linear-gradient(135deg, #f2f4ff, #e8ecf8);
}

.bdMgrWebTmplThumb--green {
  background: linear-gradient(135deg, #e5f7ed, #d8efdf);
}

.bdMgrWebTmplThumb--warm {
  background: linear-gradient(135deg, #fff0eb, #fae9e2);
}

/* Template preview bar colors */
.bdMgrWebTmplBar--navy  { background: #1c2d64; }
.bdMgrWebTmplBar--orange { background: #f15a25; }
.bdMgrWebTmplBar--teal  { background: #008080; }

/* Template preview bar widths */
.bdMgrWebTmplBar--w20 { width: 20%; }
.bdMgrWebTmplBar--w30 { width: 30%; }
.bdMgrWebTmplBar--w40 { width: 40%; }
.bdMgrWebTmplBar--w60 { width: 60%; }
.bdMgrWebTmplBar--w70 { width: 70%; }
.bdMgrWebTmplBar--w80 { width: 80%; }

/* Template preview block colors */
.bdMgrWebTmplBlock--blue { background: #c8d2f8; }

/* ── Browser mockup card icon tints ── */
.bdMgrWebSpCardIc--blue  { background: #EAF0FF; }
.bdMgrWebSpCardIc--green { background: #E5F7ED; }
.bdMgrWebSpCardIc--warm  { background: #FFF0EB; }

/* Browser mockup footer line widths */
.bdMgrWebSpFLine--lg { width: 80px; }
.bdMgrWebSpFLine--sm { width: 50px; }