/* =============================================================
   bigdot-wizard-v2.css
   BigDot Onboarding Chatbot Widget
   Mobile-first Â· Bootstrap 5.3 compatible
   Class convention: bdWiz[Component][Element][Modifier] â€” camelCase, no BEM separators
   ============================================================= */

/* â”€â”€ 1. Project CSS Variables â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* :root {
  --site-primary-font: "Plus Jakarta Sans", sans-serif;
  --site-secondary-font: 'Cormorant Garamond', Georgia, serif;
  --site-tertiary-font: "Bricolage Grotesque", sans-serif;
  --wizard-site-primary-color: #ff5722;
  --wizard-site-secondary-color: #faebe4;
  --site-tertiary-color: #2255e8;
  --site-quaternary-color: #f15a25;
  --site-text-color: #1f1f1f;
  --site-text-muted-color: #808080;
  --site-button-text-color: #ffffff;
  --site-button-bg-color: #f15a25;
} */

:root {
  --site-primary-font: "Plus Jakarta Sans", sans-serif;
  --site-secondary-font: "Cormorant Garamond", Georgia, serif;
  --site-tertiary-font: "Bricolage Grotesque", sans-serif;
  --wizard-site-primary-color: #1c2d64;
  --wizard-site-secondary-color: #f2f4ff;
  --site-tertiary-color: #2255e8;
  --site-quaternary-color: #f15a25;
  --site-text-color: #1c1a16;
  --site-text-muted-color: #808080;
}

/* â”€â”€ 2. Base Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPage {
  font-family: var(--site-primary-font);
  background-color: #ffffff;
  color: var(--site-text-color);
  min-height: 100vh;
}

/* â”€â”€ 3. Demo Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizDemoHero {
  min-height: 100vh;
  background: linear-gradient(150deg,
      var(--wizard-site-secondary-color) 0%,
      #dce4ff 60%,
      #f0ecff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 6rem;
}

.bdWizDemoHeroEyebrow {
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--site-tertiary-color);
  margin-bottom: 1rem;
}

.bdWizDemoHeroTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.bdWizDemoHeroSubtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--site-text-muted-color);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.bdWizDemoHeroTagline {
  font-size: 13px;
  color: var(--site-text-muted-color);
  margin-top: 1rem;
}

.bdWizDemoHeroStat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.bdWizDemoHeroStatNum {
  font-family: var(--site-tertiary-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  line-height: 1.1;
}

.bdWizDemoHeroStatLabel {
  font-size: 11px;
  color: var(--site-text-muted-color);
  letter-spacing: 0.5px;
}

.bdWizDemoHeroDivider {
  width: 1px;
  height: 40px;
  background: rgba(28, 45, 100, 0.15);
}

/* â”€â”€ 4. Floating Trigger Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizTriggerWrap {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 1050;
}

.bdWizTriggerBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--site-quaternary-color);
  color: #ffffff;
  border: none;
  border-radius: 60px;
  padding: 11px 18px 11px 12px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(241, 90, 37, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: var(--site-primary-font);
  text-align: left;
  position: relative;
}

.bdWizTriggerBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(241, 90, 37, 0.55);
}

.bdWizTriggerBtn:active {
  transform: scale(0.97);
}

.bdWizTriggerBtnIcon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.bdWizTriggerBtnLabel {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.bdWizTriggerBtnLabelMain {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.bdWizTriggerBtnLabelSub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.88;
  white-space: nowrap;
}

.bdWizTriggerBadge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 13px;
  height: 13px;
  background: #2ecc71;
  border-radius: 50%;
  border: 2px solid #ffffff;
  animation: bdWizBadgePulse 2s infinite;
}

@keyframes bdWizBadgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(46, 204, 113, 0);
  }
}

/* Compact on very small screens */
@media (max-width: 380px) {
  .bdWizTriggerBtnLabel {
    display: none;
  }

  .bdWizTriggerBtn {
    padding: 12px;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }

  .bdWizTriggerBtnIcon {
    width: 30px;
    height: 30px;
    background: none;
    font-size: 22px;
  }
}

/* â”€â”€ 5. Chat Widget Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Mobile-first: full screen slide-up */
.bdWizWidget {
  position: fixed;
  max-height: calc(100vh - 104px);
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  z-index: 1049;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  transform-origin: bottom center;
  overflow: hidden;
}

.bdWizWidgetHidden {
  transform: translateY(100%);
  opacity: 0.5;
  pointer-events: none;
}

/* Tablet and up: floating chat window */
@media (min-width: 576px) {
  .bdWizWidget {
    inset: auto;
    bottom: 84px;
    right: 20px;
    width: 420px;
    height: 580px;
    border-radius: 20px;
    box-shadow:
      0 24px 64px rgba(28, 45, 100, 0.2),
      0 4px 16px rgba(28, 45, 100, 0.1);
    transform-origin: bottom right;
  }

  .bdWizWidgetHidden {
    transform: scale(0.88) translateY(16px);
    opacity: 0;
    pointer-events: none;
  }

  .bdWizTriggerWrap {
    bottom: 24px;
    right: 24px;
  }
}

@media (min-width: 768px) {
  .bdWizWidget {
    width: 460px;
    height: 620px;
    right: 28px;
    bottom: 90px;
  }

  .bdWizTriggerWrap {
    bottom: 28px;
    right: 28px;
  }
}

@media (min-width: 1200px) {
  .bdWizWidget {
    width: 500px;
    height: 640px;
  }
}

/* â”€â”€ 6. Widget Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizHeader {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: var(--wizard-site-primary-color);
  flex-shrink: 0;
  border-radius: 0;
}

@media (min-width: 576px) {
  .bdWizHeader {
    border-radius: 20px 20px 0 0;
  }
}

.bdWizHeaderAvatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  position: relative;
}

.bdWizHeaderAvatarStatus {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  border: 2px solid var(--wizard-site-primary-color);
}

.bdWizHeaderInfo {
  flex: 1;
  min-width: 0;
}

.bdWizHeaderName {
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.bdWizHeaderStatus {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
}

.bdWizHeaderOnlineDot {
  color: #2ecc71;
}

.bdWizProgress {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.bdWizProgressBar {
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.bdWizProgressFill {
  height: 100%;
  background: linear-gradient(90deg, #a8c0ff, #ffffff);
  border-radius: 10px;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.bdWizProgressLabel {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.bdWizHeaderCloseBtn {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s;
}

.bdWizHeaderCloseBtn:hover {
  background: rgba(255, 255, 255, 0.24);
}

/* â”€â”€ 7. Chat Area â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizChatArea {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px;
  scroll-behavior: smooth;
  background: #fafbff;
}

.bdWizChatArea::-webkit-scrollbar {
  width: 4px;
}

.bdWizChatArea::-webkit-scrollbar-thumb {
  background: var(--site-primary-color);
  border-radius: 10px;
}

.bdWizDateSep {
  text-align: center;
  font-size: 11px;
  color: var(--site-text-muted-color);
  margin: 6px 0 16px;
  letter-spacing: 0.4px;
  font-family: var(--site-primary-font);
}

/* â”€â”€ 8. Message Rows & Bubbles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizMsgRow {
  display: flex;
  margin-bottom: 8px;
  animation: bdWizFadeUp 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.bdWizMsgRowBot {
  align-items: flex-end;
}

.bdWizMsgRowUser {
  flex-direction: row-reverse;
}

.bdWizMsgAvatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wizard-site-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-right: 8px;
  margin-bottom: 2px;
}

.bdWizBubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.58;
  font-family: var(--site-primary-font);
}

.bdWizBubbleBot {
  background: #ffffff;
  color: var(--site-text-color);
  border-bottom-left-radius: 5px;
  border: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 1px 5px rgba(28, 45, 100, 0.06);
}

.bdWizBubbleUser {
  background: var(--wizard-site-primary-color);
  color: #ffffff;
  font-weight: 500;
  border-bottom-right-radius: 5px;
}

.bdWizTextMuted {
  color: var(--site-text-muted-color);
  font-size: 0.85em;
}

/* â”€â”€ 9. Typing Indicator â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizTypingWrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.bdWizTypingBubble {
  background: #ffffff;
  border: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 1px 5px rgba(28, 45, 100, 0.06);
  padding: 11px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  display: flex;
  gap: 5px;
  align-items: center;
  animation: bdWizFadeUp 0.3s ease both;
}

.bdWizDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c0c8df;
  animation: bdWizBounce 1.2s infinite ease-in-out;
}

.bdWizDot:nth-child(2) {
  animation-delay: 0.2s;
}

.bdWizDot:nth-child(3) {
  animation-delay: 0.4s;
}

/* â”€â”€ 10. Input Dock â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizDock {
  padding: 11px 13px 14px;
  background: #ffffff;
  border-top: 1px solid rgba(28, 45, 100, 0.08);
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .bdWizDock {
    border-radius: 0 0 20px 20px;
  }
}

.bdWizInputRow {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

/* â”€â”€ 11. Text Input â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizInputBox {
  flex: 1;
  min-width: 0;
  background: var(--wizard-site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-family: var(--site-primary-font);
  color: var(--site-text-color);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: none;
  min-height: 44px;
  line-height: 1.45;
}

.bdWizInputBox::placeholder {
  color: var(--site-text-muted-color);
}

.bdWizInputBox:focus {
  border-color: var(--site-tertiary-color);
  background: #ffffff;
}

.bdWizInputBoxError {
  border-color: #d93025;
}

.bdWizInputBoxReadonly {
  opacity: 0.6;
  cursor: default;
  background: #eef0f8;
}

/* â”€â”€ 12. Send Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizSendBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--site-tertiary-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    transform 0.15s,
    background 0.2s;
}

.bdWizSendBtn:hover {
  background: var(--wizard-site-primary-color);
  transform: scale(1.07);
}

.bdWizSendBtn:active {
  transform: scale(0.94);
}

.bdWizSendBtn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.bdWizSendBtn svg {
  fill: #ffffff;
}

/* â”€â”€ 13. Hint / Error Text â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizHint {
  font-size: 11.5px;
  color: #d93025;
  margin-top: 5px;
  padding-left: 2px;
  min-height: 16px;
  font-family: var(--site-primary-font);
  transition: opacity 0.2s;
}

.bdWizHintOk {
  color: #1a8a4a;
}

/* â”€â”€ 14. Autocomplete Dropdown â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizAutocompleteWrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

/* .bdWizDropdown.bdWizFullDropdown {
    bottom: calc(100% + -250px);
} */

.bdWizAutocompleteWrap .bdWizInputBox {
  width: 100%;
}

.bdWizDropdown {
  position: absolute;
  bottom: calc(100% + 0px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid rgba(28, 45, 100, 0.12);
  border-radius: 12px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 8px 28px rgba(28, 45, 100, 0.14);
  animation: bdWizFadeUp 0.2s ease both;
}

.bdWizDropdown::-webkit-scrollbar {
  width: 4px;
}

.bdWizDropdown::-webkit-scrollbar-thumb {
  background: var(--site-primary-color);
  border-radius: 10px;
}

.bdWizDropdownItem {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--site-primary-font);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(28, 45, 100, 0.06);
  transition: background 0.15s;
  color: var(--site-text-color);
}

.bdWizDropdownItem:last-child {
  border: none;
}

.bdWizDropdownItem:hover,
.bdWizDropdownItemActive {
  background: var(--wizard-site-secondary-color);
}

.bdWizDropdownItemFlag {
  font-size: 18px;
  flex-shrink: 0;
}

.bdWizDropdownItemMeta {
  font-size: 11px;
  color: var(--site-text-muted-color);
  margin-top: 1px;
}

/* â”€â”€ 15. Selection Chips â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizChipsWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 6px;
  max-height: 148px;
  overflow-y: auto;
}

.bdWizChipsWrap::-webkit-scrollbar {
  width: 3px;
}

.bdWizChipsWrap::-webkit-scrollbar-thumb {
  background: #dde2f0;
  border-radius: 10px;
}

.bdWizChip {
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--wizard-site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.15);
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  white-space: nowrap;
  user-select: none;
}

.bdWizChip:hover {
  border-color: var(--site-tertiary-color);
  color: var(--wizard-site-primary-color);
  background: rgba(34, 85, 232, 0.06);
}

.bdWizChipSelected {
  background: rgba(34, 85, 232, 0.08);
  border-color: var(--site-tertiary-color);
  color: var(--site-tertiary-color);
  font-weight: 600;
}

/* â”€â”€ 16. OTP Inputs â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizOtpWrap {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 4px 0;
}

.bdWizOtpDigit {
  width: 44px;
  height: 52px;
  background: var(--wizard-site-secondary-color);
  border: 2px solid rgba(28, 45, 100, 0.15);
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-family: var(--site-primary-font);
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  outline: none;
  transition:
    border-color 0.2s,
    transform 0.15s,
    background 0.2s;
  caret-color: var(--site-tertiary-color);
}

.bdWizOtpDigit:focus {
  border-color: var(--site-tertiary-color);
  background: #ffffff;
  transform: scale(1.06);
}

.bdWizOtpDigitFilled {
  border-color: var(--wizard-site-primary-color);
  background: rgba(28, 45, 100, 0.05);
}

.bdWizOtpDigitError {
  border-color: #d93025;
  animation: bdWizShake 0.35s ease;
}

/* â”€â”€ 17. Resend Row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizResendRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
}

.bdWizResendBtn {
  background: none;
  border: none;
  color: var(--site-tertiary-color);
  cursor: pointer;
  font-size: 12px;
  font-family: var(--site-primary-font);
  font-weight: 600;
  padding: 0;
  transition: color 0.2s;
}

.bdWizResendBtn:hover {
  color: var(--wizard-site-primary-color);
}

.bdWizResendBtn:disabled {
  color: var(--site-text-muted-color);
  cursor: default;
}

/* â”€â”€ 18. Address Fields â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizAddrFields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdWizAddrRow {
  display: flex;
  gap: 8px;
}

.bdWizAddrRow .bdWizInputBox {
  flex: 1;
  min-width: 0;
}

.bdWizFieldLabel {
  font-size: 10px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  margin-bottom: 3px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--site-primary-font);
}

/* â”€â”€ 19. Phone Flag Box â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizFlagBox {
  background: var(--wizard-site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--site-text-color);
  font-size: 13px;
  white-space: nowrap;
  cursor: default;
  font-family: var(--site-primary-font);
  flex-shrink: 0;
  height: 44px;
}

/* â”€â”€ 20. Map Preview â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizMapPreview {
  width: 100%;
  height: 112px;
  background: var(--wizard-site-secondary-color);
  border-radius: 12px;
  border: 1px solid rgba(28, 45, 100, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.bdWizMapGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 45, 100, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 45, 100, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.bdWizMapRoads {
  position: absolute;
  inset: 0;
}

.bdWizMapPin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 26px;
  filter: drop-shadow(0 3px 6px rgba(28, 45, 100, 0.3));
}

.bdWizMapCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(34, 85, 232, 0.08);
  border: 1.5px solid rgba(34, 85, 232, 0.35);
  animation: bdWizRipple 2s infinite;
}

/* â”€â”€ 21. Success Screen â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizSuccess {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 20px;
  text-align: center;
  animation: bdWizFadeUp 0.5s ease both;
}

.bdWizSuccessIcon {
  width: 72px;
  height: 72px;
  background: rgba(34, 85, 232, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 14px;
  border: 2px solid rgba(34, 85, 232, 0.25);
  animation: bdWizSuccessPulse 2.5s infinite;
}

.bdWizSuccessTitle {
  font-family: var(--site-primary-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  margin-bottom: 6px;
}

.bdWizSuccessSubtitle {
  color: var(--site-text-muted-color);
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto 18px;
}

/* â”€â”€ 22. Summary Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizSummaryCard {
  background: var(--wizard-site-secondary-color);
  border: 1px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  width: 100%;
  text-align: left;
}

.bdWizSummaryRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(28, 45, 100, 0.07);
  font-size: 12.5px;
  font-family: var(--site-primary-font);
  gap: 8px;
}

.bdWizSummaryRow:last-child {
  border: none;
}

.bdWizSummaryRowKey {
  color: var(--site-text-muted-color);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.bdWizSummaryRowVal {
  color: var(--wizard-site-primary-color);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  min-width: 0;
}

/* â”€â”€ 23. Demo OTP Badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizDemoBadge {
  display: inline-block;
  background: rgba(34, 85, 232, 0.07);
  border: 1px solid rgba(34, 85, 232, 0.2);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 12px;
  color: var(--site-tertiary-color);
  font-family: var(--site-primary-font);
  margin-top: 6px;
}

/* â”€â”€ 24. Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizHidden {
  display: none !important;
}

#bdWizScrollAnchor {
  height: 1px;
}

/* â”€â”€ 25. Keyframe Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes bdWizFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bdWizBounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

@keyframes bdWizShake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

@keyframes bdWizPinDrop {
  from {
    transform: translate(-50%, -120%);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -60%);
    opacity: 1;
  }
}

@keyframes bdWizRipple {
  0% {
    width: 36px;
    height: 36px;
    opacity: 1;
  }

  100% {
    width: 84px;
    height: 84px;
    opacity: 0;
  }
}

@keyframes bdWizSuccessPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 85, 232, 0.2);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(34, 85, 232, 0);
  }
}

/* =============================================================
   PUBLISH MY ECOMMERCE STORE WIZARD
   Prefix: bdWizPub Â· Mobile-first Â· Bootstrap 5.3
   ============================================================= */

/* â”€â”€ Pub Base Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubPage {
  background: #f7f9ff;
  min-height: 100vh;
}

/* â”€â”€ Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 1px 8px rgba(28, 45, 100, 0.07);
}

.bdWizPubHeaderInner {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  gap: 12px;
}

.bdWizPubLogo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  flex-shrink: 0;
}

.bdWizPubLogoBullet {
  color: var(--site-quaternary-color);
  font-size: 9px;
}

.bdWizPubLogoText {
  font-family: var(--site-tertiary-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--wizard-site-primary-color);
}

.bdWizPubHeaderCenter {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.bdWizPubHeaderTitle {
  font-family: var(--site-primary-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdWizPubHeaderRight {
  flex-shrink: 0;
}

.bdWizPubStepPill {
  font-size: 11px;
  font-family: var(--site-primary-font);
  font-weight: 700;
  color: var(--site-tertiary-color);
  background: rgba(34, 85, 232, 0.09);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.bdWizPubTopBar {
  height: 3px;
  background: rgba(28, 45, 100, 0.08);
}

.bdWizPubTopBarFill {
  height: 100%;
  background: linear-gradient(90deg,
      var(--site-tertiary-color),
      var(--site-quaternary-color));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

@media (max-width: 479px) {
  .bdWizPubHeaderTitle {
    display: none;
  }
}

/* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubLayout {
  display: flex;
  min-height: 100vh;
  padding-top: 56px;
  padding-bottom: 72px;
}

/* â”€â”€ Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubSidebar {
  display: none;
}

@media (min-width: 992px) {
  .bdWizPubSidebar {
    display: block;
    width: 256px;
    flex-shrink: 0;
    padding: 28px 0 28px 20px;
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
    overflow-y: auto;
    border-right: 1px solid rgba(28, 45, 100, 0.07);
    background: #fff;
  }
}

.bdWizPubSidebarLabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 12px;
  padding-left: 12px;
  font-family: var(--site-primary-font);
}

.bdWizPubStepNav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bdWizPubStepItem {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.bdWizPubStepItem:hover {
  background: rgba(28, 45, 100, 0.04);
}

.bdWizPubStepItemActive {
  background: rgba(34, 85, 232, 0.07);
}

.bdWizPubStepNum {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: rgba(28, 45, 100, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
  font-family: var(--site-primary-font);
  transition:
    background 0.2s,
    color 0.2s;
}

.bdWizPubStepItemActive .bdWizPubStepNum {
  background: var(--site-tertiary-color);
  color: #fff;
}

.bdWizPubStepItemDone .bdWizPubStepNum {
  background: #1a8a4a;
  color: #fff;
  font-size: 13px;
}

.bdWizPubStepInfo {
  flex: 1;
  min-width: 0;
}

.bdWizPubStepTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  line-height: 1.3;
}

.bdWizPubStepItemActive .bdWizPubStepTitle {
  color: var(--wizard-site-primary-color);
}

.bdWizPubStepItemDone .bdWizPubStepTitle {
  color: #1a8a4a;
}

.bdWizPubStepDesc {
  font-size: 11px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  margin-top: 1px;
}

/* â”€â”€ Main Content â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubMain {
  flex: 1;
  min-width: 0;
  padding: 28px 16px 16px;
  max-width: 780px;
}

@media (min-width: 768px) {
  .bdWizPubMain {
    padding: 36px 36px 24px;
  }
}

/* â”€â”€ Panels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubPanel {
  display: none;
  animation: bdWizFadeUp 0.3s ease both;
}

.bdWizPubPanelActive {
  display: block;
}

/* â”€â”€ Welcome Screen â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubWelcome {
  text-align: center;
  padding: 8px 0 24px;
}

.bdWizPubWelcomeIcon {
  font-size: 52px;
  margin-bottom: 14px;
  display: block;
}

.bdWizPubEyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--site-tertiary-color);
  margin-bottom: 10px;
  font-family: var(--site-primary-font);
}

.bdWizPubWelcomeTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  line-height: 1.2;
  margin-bottom: 14px;
}

.bdWizPubWelcomeSubtitle {
  font-size: 15px;
  color: var(--site-text-muted-color);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-family: var(--site-primary-font);
}

.bdWizPubOverviewGrid {
  max-width: 560px;
  margin: 0 auto 20px;
}

.bdWizPubOverviewCard {
  background: #fff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  height: 100%;
}

.bdWizPubOverviewCard:hover {
  border-color: var(--site-tertiary-color);
  box-shadow: 0 4px 16px rgba(34, 85, 232, 0.1);
}

.bdWizPubOverviewIcon {
  font-size: 26px;
}

.bdWizPubOverviewLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--wizard-site-primary-color);
  font-family: var(--site-primary-font);
  text-align: center;
  line-height: 1.3;
}

.bdWizPubWelcomeNote {
  font-size: 13px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  margin-top: 4px;
}

/* â”€â”€ Panel Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubPanelHd {
  margin-bottom: 22px;
}

.bdWizPubPanelIconWrap {
  font-size: 34px;
  margin-bottom: 10px;
  display: block;
}

.bdWizPubPanelTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  margin-bottom: 5px;
  line-height: 1.2;
}

.bdWizPubPanelSubtitle {
  font-size: 14px;
  color: var(--site-text-muted-color);
  margin: 0;
  font-family: var(--site-primary-font);
  line-height: 1.6;
}

/* â”€â”€ Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubCard {
  background: #fff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 16px;
  padding: 20px;
}

.bdWizPubCardTitle {
  font-family: var(--site-primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  margin-bottom: 6px;
}

.bdWizPubCardSubtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  margin-bottom: 12px;
  font-family: var(--site-primary-font);
}

.bdWizPubCardDesc {
  font-size: 13px;
  color: var(--site-text-muted-color);
  margin-bottom: 14px;
  line-height: 1.6;
  font-family: var(--site-primary-font);
}

/* â”€â”€ Form Controls â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubFormLabel {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-text-color);
  margin-bottom: 5px;
  display: block;
  font-family: var(--site-primary-font);
}

.bdWizPubRequired {
  color: #d93025;
  margin-left: 2px;
}

.bdWizPubOptional {
  font-size: 10px;
  font-weight: 400;
  color: var(--site-text-muted-color);
  background: rgba(28, 45, 100, 0.06);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.bdWizPubFormInput.form-control,
.bdWizPubFormTextarea.form-control,
.bdWizPubFormSelect.form-select {
  background-color: var(--wizard-site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 10px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  color: var(--site-text-color);
  padding: 10px 13px;
}

.bdWizPubFormInput.form-control:focus,
.bdWizPubFormTextarea.form-control:focus,
.bdWizPubFormSelect.form-select:focus {
  border-color: var(--site-tertiary-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(34, 85, 232, 0.1);
}

.bdWizPubFormTextarea.form-control {
  resize: vertical;
  min-height: 70px;
}

/* â”€â”€ Upload Zone â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubUploadZone {
  border: 2px dashed rgba(28, 45, 100, 0.2);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  background: var(--wizard-site-secondary-color);
  position: relative;
  overflow: hidden;
}

.bdWizPubUploadZone:hover {
  border-color: var(--site-tertiary-color);
  background: rgba(34, 85, 232, 0.04);
}

.bdWizPubUploadZoneSm {
  padding: 16px 20px;
}

.bdWizPubUploadIcon {
  font-size: 26px;
  display: block;
  margin-bottom: 7px;
}

.bdWizPubUploadTitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--wizard-site-primary-color);
  margin: 0 0 4px;
  font-family: var(--site-primary-font);
}

.bdWizPubUploadHint {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubUploadInput {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* â”€â”€ Operating Hours â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubHoursGrid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bdWizPubHoursRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(28, 45, 100, 0.06);
}

.bdWizPubHoursRow:last-child {
  border-bottom: none;
}

.bdWizPubHoursDay {
  font-size: 12px;
  font-weight: 700;
  color: var(--site-text-color);
  width: 34px;
  flex-shrink: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubHoursTimes {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.bdWizPubHoursSep {
  font-size: 12px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
}

.bdWizPubHoursInput {
  background: var(--wizard-site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.14);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 13px;
  font-family: var(--site-primary-font);
  color: var(--site-text-color);
  flex: 1;
  min-width: 0;
  outline: none;
}

.bdWizPubHoursInput:focus {
  border-color: var(--site-tertiary-color);
  background: #fff;
}

.bdWizPubHoursClosedLabel {
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
  font-style: italic;
}

/* â”€â”€ Toggle Switch â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubSwitch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.bdWizPubSwitch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.bdWizPubSwitchTrack {
  position: absolute;
  inset: 0;
  background: rgba(28, 45, 100, 0.15);
  border-radius: 100px;
  transition: background 0.2s;
}

.bdWizPubSwitchTrack::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.bdWizPubSwitch input:checked+.bdWizPubSwitchTrack {
  background: var(--site-tertiary-color);
}

.bdWizPubSwitch input:checked+.bdWizPubSwitchTrack::after {
  transform: translateX(18px);
}

/* â”€â”€ Toggle Row â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubToggleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bdWizPubToggleLabel {
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0 0 2px;
  font-family: var(--site-primary-font);
}

.bdWizPubToggleDesc {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

/* â”€â”€ Payment / Delivery Check Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubCheckCard {
  display: block;
  cursor: pointer;
  margin: 0;
}

.bdWizPubCheckCard input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bdWizPubCheckCardInner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid rgba(28, 45, 100, 0.12);
  background: var(--wizard-site-secondary-color);
  transition: all 0.18s;
  height: 100%;
}

.bdWizPubCheckCard input:checked+.bdWizPubCheckCardInner {
  border-color: var(--site-tertiary-color);
  background: rgba(34, 85, 232, 0.06);
  box-shadow: 0 0 0 2px rgba(34, 85, 232, 0.12);
}

.bdWizPubCheckCardIcon {
  font-size: 18px;
  flex-shrink: 0;
}

.bdWizPubCheckCardLabel {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--site-text-color);
  font-family: var(--site-primary-font);
  line-height: 1.3;
}

/* â”€â”€ Outlet Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubOutletCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--wizard-site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 12px;
  margin-bottom: 8px;
  gap: 12px;
}

.bdWizPubOutletCardLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.bdWizPubOutletIcon {
  font-size: 22px;
  flex-shrink: 0;
}

.bdWizPubOutletName {
  font-size: 14px;
  font-weight: 600;
  color: var(--wizard-site-primary-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubOutletAddr {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 2px 0 0;
  font-family: var(--site-primary-font);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdWizPubOutletBadge {
  font-size: 10px;
  font-weight: 700;
  background: var(--wizard-site-primary-color);
  color: #fff;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
  font-family: var(--site-primary-font);
  letter-spacing: 0.5px;
}

.bdWizPubOutletCount {
  font-size: 12px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  background: rgba(28, 45, 100, 0.07);
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--site-primary-font);
}

/* â”€â”€ Category Tags â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubCategoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
}

.bdWizPubTagChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34, 85, 232, 0.07);
  border: 1.5px solid rgba(34, 85, 232, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wizard-site-primary-color);
  font-family: var(--site-primary-font);
}

.bdWizPubTagRemove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--site-text-muted-color);
  font-size: 15px;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.bdWizPubTagRemove:hover {
  color: #d93025;
}

/* â”€â”€ Item List â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubItemList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdWizPubItemRow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--wizard-site-secondary-color);
  border-radius: 10px;
  border: 1px solid rgba(28, 45, 100, 0.08);
}

.bdWizPubItemRowLeft {
  flex: 1;
  min-width: 0;
}

.bdWizPubItemRowName {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--site-text-color);
  margin: 0;
  font-family: var(--site-primary-font);
}

.bdWizPubItemRowMeta {
  font-size: 12px;
  color: var(--site-text-muted-color);
  margin: 2px 0 0;
  font-family: var(--site-primary-font);
}

.bdWizPubItemRowPrice {
  font-size: 14px;
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  font-family: var(--site-primary-font);
  flex-shrink: 0;
}

.bdWizPubItemRemoveBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--site-text-muted-color);
  font-size: 16px;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.bdWizPubItemRemoveBtn:hover {
  color: #d93025;
}

.bdWizPubEmptyNote {
  font-size: 13px;
  color: var(--site-text-muted-color);
  text-align: center;
  padding: 20px 0;
  font-family: var(--site-primary-font);
  margin: 0;
}

/* â”€â”€ Add / Action Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubBtnAddItem,
.bdWizPubBtnAddOutlet {
  background: rgba(34, 85, 232, 0.07);
  border: 1.5px solid rgba(34, 85, 232, 0.22);
  border-radius: 10px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--site-tertiary-color);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--site-primary-font);
}

.bdWizPubBtnAddItem:hover,
.bdWizPubBtnAddOutlet:hover {
  background: rgba(34, 85, 232, 0.13);
  border-color: var(--site-tertiary-color);
}

/* â”€â”€ Add Outlet Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubAddOutletForm {
  padding-top: 16px;
  border-top: 1px dashed rgba(28, 45, 100, 0.12);
}

.bdWizPubSkipNote {
  font-size: 12px;
  color: var(--site-text-muted-color);
  text-align: center;
  margin-top: 12px;
  font-family: var(--site-primary-font);
}

/* â”€â”€ Review Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubReviewGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .bdWizPubReviewGrid {
    grid-template-columns: 1fr 1fr;
  }
}

.bdWizPubReviewCard {
  background: #fff;
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 16px;
}

.bdWizPubReviewCardHd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.bdWizPubReviewCardIcon {
  font-size: 17px;
}

.bdWizPubReviewCardTitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--site-text-muted-color);
  font-family: var(--site-primary-font);
}

.bdWizPubReviewCardEdit {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: var(--site-tertiary-color);
  font-family: var(--site-primary-font);
  font-weight: 600;
  padding: 0;
}

.bdWizPubReviewItem {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(28, 45, 100, 0.06);
  font-family: var(--site-primary-font);
}

.bdWizPubReviewItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bdWizPubReviewKey {
  font-size: 12px;
  color: var(--site-text-muted-color);
  flex-shrink: 0;
}

.bdWizPubReviewVal {
  font-size: 12px;
  font-weight: 600;
  color: var(--wizard-site-primary-color);
  text-align: right;
  word-break: break-word;
}

/* â”€â”€ Go Live Banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubGoLiveBanner {
  background: linear-gradient(135deg,
      var(--wizard-site-primary-color),
      #2a4db0);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.bdWizPubGoLiveIcon {
  font-size: 36px;
  flex-shrink: 0;
}

.bdWizPubGoLiveTitle {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: var(--site-primary-font);
}

.bdWizPubGoLiveSubtitle {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
  font-family: var(--site-primary-font);
  line-height: 1.5;
}

/* â”€â”€ Footer CTA Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-top: 1px solid rgba(28, 45, 100, 0.1);
  box-shadow: 0 -4px 16px rgba(28, 45, 100, 0.08);
}

.bdWizPubFooterInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 10px;
}

@media (min-width: 768px) {
  .bdWizPubFooterInner {
    padding: 14px 36px;
  }
}

.bdWizPubBtnBack {
  background: none;
  border: 1.5px solid rgba(28, 45, 100, 0.18);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--site-primary-font);
  white-space: nowrap;
}

.bdWizPubBtnBack:hover {
  border-color: var(--wizard-site-primary-color);
  color: var(--wizard-site-primary-color);
}

.bdWizPubBtnBack:disabled {
  opacity: 0.3;
  cursor: default;
}

.bdWizPubFooterRight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bdWizPubBtnSkip {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--site-text-muted-color);
  cursor: pointer;
  font-family: var(--site-primary-font);
  padding: 10px 6px;
  transition: color 0.18s;
  white-space: nowrap;
}

.bdWizPubBtnSkip:hover {
  color: var(--wizard-site-primary-color);
}

.bdWizPubBtnPrimary {
  background: var(--site-tertiary-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--site-primary-font);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34, 85, 232, 0.28);
}

.bdWizPubBtnPrimary:hover {
  background: var(--wizard-site-primary-color);
  box-shadow: 0 6px 20px rgba(28, 45, 100, 0.32);
  transform: translateY(-1px);
}

.bdWizPubBtnPrimary:active {
  transform: translateY(0);
}

.bdWizPubBtnPublish {
  background: linear-gradient(135deg, #1a8a4a, #22c55e);
  box-shadow: 0 4px 14px rgba(26, 138, 74, 0.32);
}

.bdWizPubBtnPublish:hover {
  background: linear-gradient(135deg, #166b3a, #16a34a);
  box-shadow: 0 6px 20px rgba(26, 138, 74, 0.42);
}

/* â”€â”€ Publish Success Screen â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizPubSuccessScreen {
  text-align: center;
  padding: 40px 20px;
}

.bdWizPubSuccessAnim {
  width: 80px;
  height: 80px;
  background: rgba(26, 138, 74, 0.09);
  border: 2px solid rgba(26, 138, 74, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 18px;
  animation: bdWizSuccessPulse 2.5s infinite;
}

.bdWizPubSuccessTitle {
  font-family: var(--site-secondary-font);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  margin-bottom: 10px;
}

.bdWizPubSuccessSubtitle {
  font-size: 15px;
  color: var(--site-text-muted-color);
  max-width: 400px;
  margin: 0 auto 24px;
  font-family: var(--site-primary-font);
  line-height: 1.7;
}

.bdWizPubSuccessBtnGroup {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* â”€â”€ Tools Selection Section (Success Screen) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizToolsSection {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 45, 100, 0.08);
}

.bdWizToolsPill {
  display: inline-block;
  background: #e8ecff;
  color: var(--wizard-site-primary-color);
  font-family: var(--site-primary-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.bdWizToolsHeading {
  font-family: var(--site-primary-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--wizard-site-primary-color);
  line-height: 1.4;
  margin: 0 0 4px;
}

.bdWizToolsSubtitle {
  font-family: var(--site-primary-font);
  font-size: 12px;
  color: var(--site-text-muted-color);
  font-style: italic;
  margin: 0 0 14px;
}

.bdWizToolsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.bdWizToolCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 14px;
  padding: 16px 10px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    outline 0.1s;
  text-align: center;
  outline: 2px solid transparent;
}

.bdWizToolCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.bdWizToolCard:active {
  transform: translateY(0);
}

.bdWizToolCardSelected {
  outline: 2.5px solid var(--wizard-site-primary-color);
  box-shadow: 0 4px 16px rgba(28, 45, 100, 0.18);
}

.bdWizToolCardBlue {
  background: #e6eaff;
}

.bdWizToolCardPurple {
  background: #ece8ff;
}

.bdWizToolCardOrange {
  background: #ffe8d6;
}

.bdWizToolCardGreen {
  background: #d8f5e8;
}

.bdWizToolCardIcon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.bdWizToolCardTitle {
  font-family: var(--site-primary-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--wizard-site-primary-color);
}

.bdWizToolCardDesc {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: var(--site-text-muted-color);
  line-height: 1.3;
}

.bdWizToolsNote {
  font-family: var(--site-primary-font);
  font-size: 11px;
  font-style: italic;
  color: var(--site-text-muted-color);
  text-align: center;
  margin: 0 0 14px;
}

.bdWizToolsProceedBtn {
  width: 100%;
  background: var(--wizard-site-primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.bdWizToolsProceedBtn:hover {
  background: #162354;
  transform: translateY(-1px);
}

.bdWizToolsDone {
  text-align: center;
  padding: 16px;
  background: #f0f4ff;
  border-radius: 12px;
  font-family: var(--site-primary-font);
  font-size: 13px;
  color: var(--site-primary-color);
  line-height: 1.5;
}

/* â”€â”€ Type Picker â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizTypeGrid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.bdWizTypeCard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--site-secondary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--site-primary-font);
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.15s;
  width: 100%;
}

.bdWizTypeCard:hover {
  border-color: var(--site-tertiary-color);
  box-shadow: 0 4px 16px rgba(34, 85, 232, 0.12);
  transform: translateY(-1px);
}

.bdWizTypeIcon {
  font-size: 22px;
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(28, 45, 100, 0.08);
}

.bdWizTypeTitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--site-primary-color);
  margin-bottom: 2px;
}

.bdWizTypeDesc {
  font-size: 12px;
  color: var(--site-text-muted-color);
}

/* â”€â”€ Skip Button (shared style for all optional skips) â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizSkipBtn {
  background: none;
  border: 1.5px solid rgb(28 45 100);
  border-radius: 50px;
  padding: 3px 40px;
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1c2d64;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s,
    color 0.15s;
  display: inline-block;
  margin-top: 6px;
}

.bdWizSkipBtn:hover {
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

/* â”€â”€ Bio Input â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizTextarea {
  width: 100%;
  resize: none;
  min-height: 72px;
  line-height: 1.5;
}

.bdWizBioWrap {
  display: flex;
  flex-direction: column;
}

.bdWizBioFooter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.bdWizCharCount {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: var(--site-text-muted-color);
  flex-grow: 1;
}

/* â”€â”€ Social Handles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizSocialsWrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bdWizSocialRow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bdWizSocialIcon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--site-primary-font);
  background: var(--site-secondary-color);
  color: var(--site-primary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.1);
}

.bdWizSocialLi {
  background: #e7f0ff;
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.bdWizSocialX {
  background: #f0f0f0;
  color: #000;
  border-color: rgba(0, 0, 0, 0.12);
}

.bdWizSocialIg {
  background: #fff0f5;
  color: #c2185b;
  border-color: rgba(194, 24, 91, 0.2);
}

.bdWizSocialGh {
  background: #f0f0f0;
  color: #333;
  border-color: rgba(0, 0, 0, 0.12);
}

.bdWizSocialTg {
  background: #e8f4ff;
  color: #2196f3;
  border-color: rgba(33, 150, 243, 0.2);
}

.bdWizSocialOther {
  background: #f5f0ff;
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.2);
}

.bdWizSocialsFooter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px solid rgba(28, 45, 100, 0.07);
}

.bdWizSkipSocialsBtn {
  background: none;
  border: 1.5px solid rgba(28, 45, 100, 0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-family: var(--site-primary-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--site-text-muted-color);
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.15s,
    color 0.15s;
  flex-shrink: 0;
  margin-top: 0;
}

.bdWizSkipSocialsBtn:hover {
  border-color: var(--site-primary-color);
  color: var(--site-primary-color);
}

.bdWizSocialsNote {
  font-family: var(--site-primary-font);
  font-size: 11px;
  color: var(--site-text-muted-color);
  flex-grow: 1;
}

/* â”€â”€ Individual Success Screen â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bdWizIndivSuccessHeader {
  font-family: var(--site-secondary-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--site-primary-color);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.bdWizIndivSuccessHint {
  font-family: var(--site-primary-font);
  font-size: 12px;
  color: var(--site-text-muted-color);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 14px;
}

.bdWizIndivBtnGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
  align-self: stretch;
}

.bdWizIndivBtnPrimary {
  width: 100%;
  background: linear-gradient(135deg,
      var(--site-primary-color) 0%,
      #2a4db0 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 15px 20px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(28, 45, 100, 0.3);
  letter-spacing: 0.01em;
}

.bdWizIndivBtnPrimary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(28, 45, 100, 0.38);
}

.bdWizIndivBtnPrimary:active {
  transform: translateY(0);
}

.bdWizIndivBtnSecondary {
  width: 100%;
  background: rgba(28, 45, 100, 0.04);
  color: var(--site-primary-color);
  border: 1.5px solid rgba(28, 45, 100, 0.18);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: var(--site-primary-font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
}

.bdWizIndivBtnSecondary:hover {
  border-color: var(--site-primary-color);
  background: rgba(28, 45, 100, 0.08);
  transform: translateY(-1px);
}

.bdWizIndivBtnSecondary:active {
  transform: translateY(0);
}

.bdWizApiLoader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1003;
  animation: fadeIn 0.2s ease-out;
}

.bdWizApiLoader span {
  font-size: 14px;
  font-weight: 600;
  color: var(--wizard-site-primary-color);
}

.bdWizSpinnerGlobal {
  width: 32px;
  height: 32px;
  border: 4px solid rgba(0, 132, 255, 0.1);
  border-top-color: var(--wizard-site-primary-color);
  border-radius: 50%;
  animation: bdWizSpin 0.8s linear infinite;
}

.bdWizVisualCategoryGrid.busniessCategory{
  display: grid;
}

.bdWizVisualCategoryGrid {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}

.bdWizVisualChip {
  height: 80px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.bdWizVisualChip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bdWizVisualChipOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.bdWizVisualChipLabel {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 0 8px;
}

.bdWizSeparator {
  text-align: center;
  margin: 16px 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--bd-text);
  position: relative;
}

.bdWizFieldLabel {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--bd-text);
  margin-bottom: 12px;
}

.bdWizSearchIcon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-52%);
  color: #94a3b8;
  pointer-events: none;
}

/* .bdWizInputRow .bdWizInputBox {
  padding-left: 40px;
} */

.bdWizInputPrefix {
  position: relative;
  color: var(--site-text-muted-color);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
  border-right: 1px solid #d1d5db;
  padding-right: 10px;
  margin-left: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.bdWizAddressForm {
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideUp 0.3s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.bdWizField {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.bdWizField .bdWizFieldLabel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--site-text-muted-color);
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.bdWizFormRow {
  display: flex;
  gap: 12px;
  width: 100%;
}

.bdWizAddressForm .bdWizInputBox {
  width: 100%;
}

.bdWizAddressForm .bdWizInputBox:focus {
  background: white;
  border-color: var(--wizard-site-primary-color);
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1);
}

.bdWizConfirmBtn {
  width: 100%;
  padding: 14px;
  background: var(--wizard-site-primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer !important;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.2);
  pointer-events: auto !important;
}

.bdWizConfirmBtn:hover:not(:disabled) {
  background: #0073e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 132, 255, 0.3);
}

.bdWizConfirmBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(1);
}

.bdWizErrorMsg {
  font-size: 11px;
  color: #e74c3c;
  margin: 4px 0 8px 4px;
  font-weight: 600;
  animation: fadeIn 0.2s ease-out;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bdWizMapCard {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
  margin: 12px 0;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 100%;
}

.bdWizMapCardHeader {
  padding: 14px 18px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #edf2f7;
}

.bdWizMapCardPin {
  font-size: 18px;
}

.bdWizMapCardTitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--bd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bdWizMapContainer {
  height: 300px;
  width: 100%;
  position: relative;
  background: #f1f5f9;
}

.bdWizMapContainer agm-map {
  height: 100%;
  width: 100%;
  display: block;
}

.bdWizMapLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
}

.bdWizMapCardFooter {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}

/* Premium Design for Onboarding Chatbot */
:host {
  display: block;
}

/* Selection Cards */
.bdWizSelectionGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* padding: 8px 12px; */
}

.bdWizSelectionCard {
  background: #ffffff;
  border: 1.5px solid rgba(28, 45, 100, 0.10);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.bdWizSelectionCard:hover {
  transform: translateY(-2px);
  border-color: #0d6efd;
  box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.08);
}

.bdWizSelectionCard.active {
  background: #f0f7ff;
  border-color: #0d6efd;
}

.bdWizSelectionIcon {
  font-size: 26px;
  background: #f8fafc;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bdWizSelectionIconUser {
  background: #f5f3ff;
  color: #6366f1;
}

.bdWizSelectionIconBiz {
  background: #eff6ff;
  color: #3b82f6;
}

.bdWizSelectionCard:hover .bdWizSelectionIcon {
  transform: scale(1.05);
}

.bdWizSelectionText {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bdWizSelectionTitle {
  font-weight: 700;
  color: #0f172a;
  font-size: 16px;
}

.bdWizSelectionDesc {
  color: #64748b;
  font-size: 13px;
  font-weight: 400;
}

/* My Self Form Consolidated */
.bdWizMyselfForm {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  max-height: 450px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.bdWizFormScroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f8fafc;
}

.bdWizFormScroll::-webkit-scrollbar {
  width: 6px;
}

.bdWizFormScroll::-webkit-scrollbar-track {
  background: #f8fafc;
}

.bdWizFormScroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 10px;
}

/* Image Picker */
.bdWizImagePickerWrap {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.bdWizImageCircle {
  width: 100px;
  height: 100px;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.bdWizImageCircle:hover {
  border-color: #0d6efd;
  background: #f0f7ff;
}

.bdWizProfilePreview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bdWizImagePlaceholder {
  text-align: center;
  color: #94a3b8;
}

.bdWizImagePlaceholder span {
  font-size: 24px;
}

.bdWizImagePlaceholder p {
  font-size: 11px;
  margin: 4px 0 0;
  font-weight: 500;
}

.bdWizImageEditBadge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #0d6efd;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Dynamic Lists */
.bdWizDynamicList {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.bdWizDynamicItem {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bdWizRemoveBtn {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.bdWizRemoveBtn:hover {
  background: #fecaca;
}

.bdWizLinkBtn {
  background: transparent;
  color: #0d6efd;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.bdWizLinkBtn:hover {
  text-decoration: underline;
}

/* Info Box */
.bdWizInfoBox {
  background: #f0f7ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.bdWizInfoIcon {
  font-size: 18px;
  flex-shrink: 0;
}

.bdWizInfoText {
  font-size: 12px;
  color: #0369a1;
  line-height: 1.5;
}

.bdWizInfoText strong {
  color: #0c4a6e;
}

.bdWizBioWrap {
  position: relative;
}

.bdWizAiBtn {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  color: #0369a1;
  border-radius: 50px;
  padding: 0 15px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-bottom: 20px;
  justify-content: center;
  margin: 0 auto 10px;
}

.bdWizAiBtn:hover {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.bdWizAiBtn .btn-text {
  font-size: 13px;
  font-weight: 600;
}

.bdWizAiBtn .ai-sparkle {
  font-size: 16px;
}

.bdWizFormGroup {
  margin-bottom: 20px;
}

.bdWizFormGroup label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

/* Success Summary */
.bdWizSummary {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin: 10px 0;
}

.bdWizSummaryHeader {
  background: linear-gradient(to right, #0d6efd, #00d2ff);
  padding: 15px;
  color: white;
  text-align: center;
}

.bdWizSummaryList {
  padding: 10px;
}

.bdWizSummaryItem {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.bdWizSummaryKey {
  font-size: 13px;
  color: #64748b;
}

.bdWizSummaryVal {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

/* Conversational Multi-Choice Buttons */
.bdWizVisualCategoryGrid button.bdWizConfirmBtn {
  width: 100%;
}

/* My Self Photo Step */
.bdWizPhotoThumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

/* Conversational Info Box in Dock */
.bdWizChipsContainer .bdWizInfoBox {
  margin-top: 5px;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 10px;
}

/* Image Message Bubbles */
.bdWizBubbleImage {
  padding: 8px !important;
  max-width: 200px !important;
  background: white !important;
  border: 1px solid #e2e8f0 !important;
}

.bdWizMsgImage {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* AI Bio Form in Modal */
.bdWizModalSub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
}

.bdWizAiForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.bdWizAiForm .bdWizFormGroup {
  margin-bottom: 0;
}

.bdWizAiForm label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.bdWizAiForm textarea.bdWizInputBox {
  resize: none;
  font-family: inherit;
}

.bdWizTextareaRow {
  flex-direction: row;
  align-items: flex-end;
}

.bdWizTextareaBox {
  min-height: 80px;
  max-height: 150px;
  resize: none;
  padding: 12px 16px;
  line-height: 1.5;
  border-radius: 12px;
}

/* Input Dock (Floating at bottom of chat) */
.bdWizDock {
  background: #ffffff;
  padding: 16px 20px 24px;
  border-top: 1px solid #f1f5f9;
  z-index: 10;
  box-shadow: 0 -10px 25px -5px rgba(0, 0, 0, 0.05);
}

.bdWizInputRow {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.bdWizInputWithPrefix {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.bdWizInputGroup {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 0 16px;
  transition: all 0.2s ease;
  flex: 1;
}

.bdWizInputGroup:focus-within {
  border-color: #0d6efd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.bdWizInputGroupError {
  border-color: #ef4444 !important;
  background: #fffafa !important;
}

.bdWizInputPrefix {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  padding-right: 12px;
  border-right: 1px solid #e2e8f0;
  margin-right: 12px;
  white-space: nowrap;
}

.bdWizInputBox {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1e293b;
  transition: all 0.2s ease;
  outline: none;
}

.bdWizInputRow input#cb-input-search-chips {
  padding-left: 40px;
}

.bdWizInputBoxInner {
  border: none !important;
  background: transparent !important;
  padding: 12px 0 !important;
  box-shadow: none !important;
}

.bdWizInputBox:focus {
  border-color: #0d6efd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.bdWizInputBoxError {
  border-color: #ef4444 !important;
  background: #fffafa !important;
}

.bdWizErrorMsg {
  color: #ef4444;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  margin-left: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bdWizSendBtn {
  width: 48px;
  height: 48px;
  background: #0d6efd;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(13, 110, 253, 0.3);
  flex-shrink: 0;
}

.bdWizSendBtn:hover:not(:disabled) {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(13, 110, 253, 0.4);
}

.bdWizSendBtn:active:not(:disabled) {
  transform: scale(0.95);
}

.bdWizSendBtn:disabled {
  background: #e2e8f0;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.bdWizConfirmBtn:disabled {
  background: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

.bdWizSendBtnArea {
  margin-bottom: 8px;
}

/* Card Actions (Individual Flow) */
.bdWizCardActions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 24px;
  margin-top: 15px;
  border: 1px solid #f1f5f9;
  width: 100%;
}

.bdWizPrimaryBtn {
  background: var(--SitePrimaryColor);
  color: #fff;
  border: none;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bdWizPrimaryBtn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bdWizPrimaryBtn:active {
  transform: translateY(0);
}

.bdWizSecondaryBtn {
  background: transparent;
  color: #1c2d64;
  border: 2px solid #1c2d64;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.bdWizSecondaryBtn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.bdWizSecondaryBtn:active {
  background: #e2e8f0;
}