:root {
  --bc-ink: #0e2430;
  --bc-ink-soft: #1a3a4a;
  --bc-sand: #f3eee6;
  --bc-sand-deep: #e7dfd2;
  --bc-paper: #fbf8f3;
  --bc-accent: #c47a4a;
  --bc-accent-hot: #e8a87c;
  --bc-line: rgba(14, 36, 48, 0.1);
  --bc-shadow: 0 18px 40px rgba(14, 36, 48, 0.12);
  --bc-radius: 22px;
  --bc-pwa-nav-h: 64px;
  --bc-font: "Outfit", system-ui, sans-serif;
  --bc-display: "Fraunces", Georgia, serif;
}

html.bc-page,
body.bc-page {
  margin: 0;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 168, 124, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(26, 58, 74, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f2ea 0%, var(--bc-sand) 48%, #ebe4d8 100%);
  color: var(--bc-ink);
  font-family: var(--bc-font);
  -webkit-font-smoothing: antialiased;
}

html.bc-page *,
html.bc-page *::before,
html.bc-page *::after {
  box-sizing: border-box;
}

body.bc-module-page {
  padding-bottom: calc(var(--bc-pwa-nav-h) + env(safe-area-inset-bottom, 0px) + 20px);
}

.bc-shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 10px 12px 28px;
  overflow-x: hidden;
}

.bc-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 14px;
  animation: bc-rise 0.55s ease both;
}

.bc-hero__mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(165deg, #fff 0%, #f4efe7 100%);
  box-shadow: var(--bc-shadow);
  display: grid;
  place-items: center;
}

.bc-hero__mark img {
  width: 44px;
  height: 44px;
}

.bc-hero__title {
  margin: 0;
  font-family: var(--bc-display);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.bc-hero__sub {
  margin: 4px 0 0;
  color: rgba(14, 36, 48, 0.62);
  font-size: 0.92rem;
}

.bc-login-banner {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(196, 122, 74, 0.12);
  border: 1px solid rgba(196, 122, 74, 0.28);
  font-size: 0.92rem;
}

.bc-login-banner a {
  color: var(--bc-ink);
  font-weight: 600;
}

.bc-panel[hidden] {
  display: none !important;
}

.bc-search-wrap {
  margin-bottom: 0;
}

.bc-search-wrap[hidden] {
  display: none !important;
}

/* Compact Cards / Scan — sticky above search, never covers PWA bottom nav */
.bc-sticky-tools {
  position: sticky;
  top: 0;
  z-index: 30;
  margin: 0 0 14px;
  padding: 6px 0 10px;
  background:
    linear-gradient(180deg, rgba(247, 242, 234, 0.98) 0%, rgba(243, 238, 230, 0.94) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  animation: bc-rise 0.55s ease 0.04s both;
}

.bc-mode-bar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--bc-line);
  box-shadow: 0 4px 14px rgba(14, 36, 48, 0.06);
}

.bc-mode {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 6px 11px;
  color: rgba(14, 36, 48, 0.55);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}

.bc-mode svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.bc-mode.is-active {
  background: var(--bc-ink);
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 36, 48, 0.18);
}

.bc-mode:active {
  transform: scale(0.98);
}

.bc-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--bc-line);
  box-shadow: 0 8px 24px rgba(14, 36, 48, 0.06);
  backdrop-filter: blur(10px);
}

.bc-search__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.55;
}

.bc-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: var(--bc-ink);
  min-width: 0;
}

.bc-search__clear {
  border: 0;
  background: rgba(14, 36, 48, 0.08);
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--bc-ink);
}

.bc-search-meta {
  margin: 8px 4px 0;
  font-size: 0.82rem;
  color: rgba(14, 36, 48, 0.55);
  min-height: 1.1em;
}

.bc-deck {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bc-card {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  cursor: default;
  animation: bc-rise 0.45s ease both;
}

.bc-card__flip {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.72 / 1;
  perspective: 900px;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
}

.bc-card__inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: inherit;
  box-shadow: 0 10px 24px rgba(14, 36, 48, 0.14);
}

.bc-card.is-flipped .bc-card__inner {
  transform: rotateY(180deg);
}

.bc-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
  background: #1a3a4a;
}

.bc-card__face--back {
  transform: rotateY(180deg);
}

.bc-card__face img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #122a36;
}

.bc-card__face--empty {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  background:
    linear-gradient(145deg, #1a3a4a, #0e2430);
}

.bc-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.bc-card__meta-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.bc-card__name {
  margin: 0;
  font-family: var(--bc-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.bc-card__company {
  margin: 2px 0 0;
  color: rgba(14, 36, 48, 0.62);
  font-size: 0.9rem;
}

.bc-card__phone {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: var(--bc-accent);
  font-weight: 560;
}

.bc-card__hint {
  flex: 0 0 auto;
  font-size: 0.75rem;
  color: rgba(14, 36, 48, 0.45);
  padding-top: 4px;
}

.bc-card__ocr {
  display: grid;
  gap: 5px;
  padding: 10px 12px 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(14, 36, 48, 0.1);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.bc-card__edit {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 4px 0 2px;
  margin: 2px 0 0;
  justify-self: start;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(14, 36, 48, 0.38);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.bc-card__edit:active {
  color: var(--bc-accent);
}

.bc-card__ocr--pending,
.bc-card__ocr--empty {
  padding: 12px 14px;
}

.bc-card__ocr--pending .bc-card__ocr-status,
.bc-card__ocr--empty p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(14, 36, 48, 0.55);
}

.bc-card__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px;
  align-items: baseline;
  width: 100%;
  min-width: 0;
}

.bc-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(14, 36, 48, 0.42);
}

.bc-card__value {
  font-size: 0.9rem;
  font-weight: 560;
  color: rgba(14, 36, 48, 0.94);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bc-card__value.is-empty {
  color: rgba(14, 36, 48, 0.28);
  font-weight: 450;
}

.bc-card__badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: #0e2430;
  background: rgba(255, 236, 179, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.bc-card__badge--fail {
  background: rgba(255, 205, 210, 0.96);
  color: #7f1d1d;
}

.bc-card--pending .bc-card__face--front img {
  filter: saturate(0.85) brightness(0.96);
}

.bc-card__face--front {
  position: relative;
}

.bc-empty {
  text-align: center;
  padding: 48px 20px 24px;
  animation: bc-rise 0.5s ease both;
}

.bc-empty h2 {
  margin: 14px 0 6px;
  font-family: var(--bc-display);
  font-size: 1.4rem;
}

.bc-empty p {
  margin: 0 0 18px;
  color: rgba(14, 36, 48, 0.6);
}

.bc-scan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.bc-scan-steps span {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: rgba(14, 36, 48, 0.45);
}

.bc-scan-steps span.is-active {
  background: var(--bc-ink);
  color: #fff;
}

.bc-scan-steps span.is-done {
  background: rgba(196, 122, 74, 0.18);
  color: var(--bc-ink);
}

.bc-capture {
  position: relative;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  border: 0;
  border-radius: var(--bc-radius);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(243, 238, 230, 0.9));
  box-shadow: var(--bc-shadow);
  border: 1px dashed rgba(14, 36, 48, 0.18);
}

.bc-capture__preview {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #122a36;
}

.bc-capture:not(.has-image) .bc-capture__preview {
  background-color: transparent;
}

.bc-capture__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 4px;
  color: var(--bc-ink);
  background: rgba(251, 248, 243, 0.28);
  transition: opacity 0.25s ease;
}

.bc-capture.has-image .bc-capture__label {
  opacity: 0;
}

.bc-capture:hover .bc-capture__label,
.bc-capture:focus-visible .bc-capture__label {
  opacity: 1;
}

.bc-capture__label strong {
  font-family: var(--bc-display);
  font-size: 1.35rem;
}

.bc-capture__label em {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.65;
}

.bc-file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bc-scan-hint {
  margin: 0 0 12px;
  color: rgba(14, 36, 48, 0.6);
  font-size: 0.9rem;
}

.bc-ocr-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 16px;
  text-align: center;
  color: rgba(14, 36, 48, 0.7);
  font-weight: 560;
}

.bc-ocr-status[hidden] {
  display: none !important;
}

.bc-ocr-status__spin {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid rgba(14, 36, 48, 0.12);
  border-top-color: var(--bc-accent);
  animation: bc-spin 0.75s linear infinite;
}

@keyframes bc-spin {
  to {
    transform: rotate(360deg);
  }
}

.bc-form--review input {
  background: rgba(255, 255, 255, 0.88);
}

.bc-scan-actions--sticky {
  position: sticky;
  bottom: calc(var(--bc-pwa-nav-h) + 12px + env(safe-area-inset-bottom, 0px));
  z-index: 25;
  margin-top: 18px;
  padding: 12px 0 4px;
  background: linear-gradient(180deg, transparent, rgba(247, 242, 234, 0.96) 28%);
}

.bc-suggest {
  margin-top: 8px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--bc-line);
  box-shadow: 0 10px 28px rgba(14, 36, 48, 0.1);
  display: grid;
  gap: 6px;
}

.bc-suggest[hidden] {
  display: none !important;
}

.bc-suggest__label {
  margin: 0 4px 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(14, 36, 48, 0.45);
}

.bc-suggest__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 8px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--bc-ink);
}

.bc-suggest__item:hover,
.bc-suggest__item:focus-visible {
  background: rgba(14, 36, 48, 0.06);
  outline: none;
}

.bc-suggest__thumb {
  width: 48px;
  height: 30px;
  border-radius: 6px;
  background: #1a3a4a center/cover no-repeat;
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(14, 36, 48, 0.15);
}

.bc-suggest__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bc-suggest__text strong {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bc-suggest__text em {
  font-style: normal;
  font-size: 0.78rem;
  color: rgba(14, 36, 48, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bc-card--picked .bc-card__inner {
  box-shadow: 0 0 0 3px var(--bc-accent), var(--bc-shadow);
}

.bc-form,
.bc-edit-sheet {
  display: grid;
  gap: 10px;
}

.bc-field {
  display: grid;
  gap: 4px;
}

.bc-field span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(14, 36, 48, 0.5);
}

.bc-field input,
.bc-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--bc-line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
  color: var(--bc-ink);
}

.bc-field input:focus,
.bc-field textarea:focus {
  outline: 2px solid rgba(196, 122, 74, 0.45);
  border-color: transparent;
}

.bc-scan-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.bc-scan-actions--stack {
  flex-direction: column;
}

.bc-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.bc-btn:active {
  transform: scale(0.98);
}

.bc-btn--primary {
  background: linear-gradient(135deg, var(--bc-ink-soft), var(--bc-ink));
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 36, 48, 0.22);
}

.bc-btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--bc-ink);
  border: 1px solid var(--bc-line);
}

.bc-btn--danger {
  background: rgba(180, 55, 45, 0.1);
  color: #9b2c2c;
}

.bc-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bc-pwa-nav-h) + 28px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 60;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bc-ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 560;
  box-shadow: var(--bc-shadow);
  animation: bc-rise 0.25s ease both;
}

.bc-edit-dialog {
  border: 0;
  padding: 0;
  border-radius: 22px;
  width: min(440px, calc(100% - 24px));
  max-width: calc(100vw - 24px);
  max-height: min(92vh, 860px);
  overflow: auto;
  background: var(--bc-paper);
  box-shadow: var(--bc-shadow);
}

.bc-edit-dialog::backdrop {
  background: rgba(14, 36, 48, 0.5);
  backdrop-filter: blur(4px);
}

.bc-edit-sheet {
  padding: 16px 16px calc(18px + env(safe-area-inset-bottom, 0px));
}

.bc-edit-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-edit-sheet__head h2 {
  margin: 0;
  font-family: var(--bc-display);
  font-size: 1.25rem;
}

.bc-edit-sheet__hint {
  margin: 0 0 4px;
  font-size: 0.84rem;
  color: rgba(14, 36, 48, 0.55);
}

.bc-edit-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.bc-edit-preview.has-back {
  grid-template-columns: 1fr 1fr;
}

.bc-edit-preview__front,
.bc-edit-preview__back {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  border-radius: 14px;
  background: #1a3a4a center / contain no-repeat;
  box-shadow: 0 8px 20px rgba(14, 36, 48, 0.16);
}

.bc-edit-preview.has-back .bc-edit-preview__front,
.bc-edit-preview.has-back .bc-edit-preview__back {
  aspect-ratio: 1.5 / 1;
}

.bc-icon-btn {
  border: 0;
  background: rgba(14, 36, 48, 0.08);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.3rem;
  cursor: pointer;
}

.bc-edit-sheet__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.bc-edit-sheet__actions .bc-btn--primary {
  flex: 1;
}

@keyframes bc-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .bc-shell {
    padding-top: 20px;
  }
  .bc-deck {
    gap: 20px;
  }
}

/* In-app camera overlay with card guide frame */
.bc-cam {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #000;
  display: flex;
  flex-direction: column;
}

.bc-cam[hidden] {
  display: none !important;
}

html.bc-cam-open,
html.bc-cam-open body {
  overflow: hidden;
}

/* while camera is open, hide bottom tabs + Ask AI so controls stay visible */
html.bc-cam-open .v1-pwa-bottom-nav,
html.bc-cam-open .v1-mobile-ask-dock {
  display: none !important;
}

.bc-cam__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-cam__mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px 18px calc(var(--bc-pwa-nav-h) + 150px + env(safe-area-inset-bottom, 0px));
}

.bc-cam__frame {
  position: relative;
  width: min(88vw, 480px);
  aspect-ratio: 1.72 / 1;
  border-radius: 14px;
  /* everything outside the frame is dimmed */
  box-shadow: 0 0 0 200vmax rgba(0, 0, 0, 0.55);
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: -1px;
}

.bc-cam__corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 4px solid var(--bc-accent-hot);
  border-radius: 4px;
}

.bc-cam__corner--tl {
  top: -3px;
  left: -3px;
  border-right: 0;
  border-bottom: 0;
}

.bc-cam__corner--tr {
  top: -3px;
  right: -3px;
  border-left: 0;
  border-bottom: 0;
}

.bc-cam__corner--bl {
  bottom: -3px;
  left: -3px;
  border-right: 0;
  border-top: 0;
}

.bc-cam__corner--br {
  bottom: -3px;
  right: -3px;
  border-left: 0;
  border-top: 0;
}

.bc-cam__hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--bc-pwa-nav-h) + 128px + env(safe-area-inset-bottom, 0px));
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

.bc-cam__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 26px calc(var(--bc-pwa-nav-h) + 26px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6) 60%);
}

.bc-cam__btn {
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  min-width: 84px;
}

.bc-cam__shutter {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 4px solid #fff;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.bc-cam__shutter::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #fff;
}

.bc-cam__shutter:active::after {
  inset: 8px;
}

/* Ask AI dock sits above shared PWA bottom nav */
body.bc-module-page .v1-mobile-ask-dock {
  bottom: calc(var(--bc-pwa-nav-h) + 18px + env(safe-area-inset-bottom, 0px));
}
