/* =========================================================
   BIZTOWERS PREMIUM PUBLIC NAVBAR
   Consolidated final package
========================================================= */

.bt-public-nav {
    background:
        linear-gradient(180deg,
            rgba(4, 18, 45, 0.98) 0%,
            rgba(6, 24, 58, 0.96) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 12px 30px rgba(2, 8, 24, 0.35),
        inset 0 -1px 0 rgba(255,255,255,0.04);
    min-height: 86px;
    padding: .35rem 0;
    z-index: 1030;
}

.bt-public-nav .container-fluid {
    min-height: 78px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* -------------------------------------------------
   BRAND AREA
------------------------------------------------- */

.bt-brandmark {
    display: flex;
    align-items: center;
    gap: 1rem !important;
    text-decoration: none;
    padding: 0;
}

.bt-logo-img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 16px;
    padding: 5px;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02));
    border: 1px solid rgba(212,175,55,.18);
    box-shadow:
        0 10px 24px rgba(0,0,0,.35),
        0 0 0 1px rgba(212,175,55,.05),
        inset 0 1px 0 rgba(255,255,255,.06);
    transition: all .25s ease;
}

.bt-brandmark:hover .bt-logo-img {
    transform: translateY(-1px) scale(1.04);
    border-color: rgba(212,175,55,.30);
    box-shadow:
        0 16px 30px rgba(0,0,0,.38),
        0 0 0 6px rgba(212,175,55,.07);
}

.bt-brand-name {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #f8fafc;
    line-height: 1;
    text-shadow:
        0 2px 12px rgba(0,0,0,.28),
        0 0 18px rgba(212,175,55,.08);
}

/* optional accent support if you later split BIZ / TOWERS */
.bt-brand-name .accent,
.bt-brand-name::first-letter {
    color: #d4af37;
}

/* -------------------------------------------------
   NAVIGATION LINKS
------------------------------------------------- */

.bt-public-links {
    margin-left: 2.2rem;
    gap: .55rem;
}

.bt-public-links .nav-item {
    display: flex;
    align-items: center;
}

.bt-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: .8rem 1.35rem !important;
    border-radius: 18px;
    color: rgba(241,245,249,.90) !important;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: all .22s ease;
    border: 1px solid transparent;
    background: transparent;
}

.bt-chip:hover {
    color: #ffffff !important;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03));
    border-color: rgba(212,175,55,.16);
    transform: translateY(-1px);
    box-shadow:
        0 12px 24px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.bt-chip.active {
    color: #fff !important;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.04));
    border: 1px solid rgba(212,175,55,.34);
    box-shadow:
        0 14px 30px rgba(0,0,0,.22),
        0 0 0 1px rgba(212,175,55,.08),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.bt-live-stream-nav {
    width: 56px;
    min-width: 56px;
    min-height: 54px;
    padding: 0 !important;
    border-radius: 18px;
    color: #fed7aa !important;
    background:
        radial-gradient(circle at 72% 18%, rgba(251, 146, 60, .26), transparent 36%),
        rgba(239, 68, 68, .08);
    border: 1px solid rgba(251, 146, 60, .22);
}

.bt-live-stream-nav:hover,
.bt-live-stream-nav.active {
    color: #fff7ed !important;
    background:
        radial-gradient(circle at 74% 18%, rgba(251, 146, 60, .38), transparent 38%),
        linear-gradient(135deg, rgba(239, 68, 68, .22), rgba(249, 115, 22, .16));
    border-color: rgba(251, 146, 60, .45);
    box-shadow:
        0 16px 32px rgba(249, 115, 22, .18),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.bt-live-stream-nav-icon {
    position: relative;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow:
        0 10px 20px rgba(239, 68, 68, .24),
        inset 0 1px 0 rgba(255, 255, 255, .24);
}

.bt-live-stream-nav-icon i {
    color: #fff;
    font-size: 1.08rem;
    line-height: 1;
}

.bt-live-stream-nav-icon::after {
    content: "";
    position: absolute;
    right: -2px;
    top: -2px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #fb7185;
    border: 2px solid #06183a;
    box-shadow: 0 0 0 0 rgba(251, 113, 133, .62);
    animation: bt-live-pulse 1.55s ease-out infinite;
}

@keyframes bt-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 113, 133, .62);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(251, 113, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 113, 133, 0);
    }
}

/* -------------------------------------------------
   RIGHT SIDE BUTTONS
------------------------------------------------- */

.bt-public-nav .btn.btn-sm {
    min-height: 46px;
    padding: .72rem 1.15rem;
    border-radius: 18px;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: -.01em;
}

.bt-public-nav .btn-outline-primary {
    background: rgba(76, 96, 255, .12);
    border: 1px solid rgba(90,110,255,.18);
    color: #cfd4ff;
}

.bt-public-nav .btn-outline-primary:hover {
    background: rgba(124,131,255,.18);
    color: #ffffff;
    border-color: rgba(124,131,255,.32);
    transform: translateY(-1px);
}

.bt-public-nav .btn-outline-secondary {
    background: rgba(255,255,255,.92);
    border: none;
    color: #334155;
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.bt-public-nav .btn-outline-secondary:hover {
    background: #ffffff;
    color: #0f172a;
    transform: translateY(-1px);
}

.bt-public-nav .btn-primary {
    background: linear-gradient(135deg, #d4af37, #f0d77a);
    border-color: #d4af37;
    color: #111827;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(212,175,55,.22);
}

.bt-public-nav .btn-primary:hover {
    background: linear-gradient(135deg, #e1bd48, #f7e39a);
    border-color: #e1bd48;
    color: #0f172a;
    transform: translateY(-1px);
}

.bt-group-join-widget {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin: 0;
}

.bt-group-join-trigger {
    min-height: 46px;
    border-radius: 18px;
    padding: .72rem 1.05rem;
    font-weight: 800;
    white-space: nowrap;
}

.bt-group-join-trigger.btn-outline-info {
    background: rgba(14, 165, 233, .14);
    border-color: rgba(14, 165, 233, .24);
    color: #0369a1;
}

.bt-group-join-trigger.btn-outline-info:hover {
    background: rgba(14, 165, 233, .24);
    border-color: rgba(14, 165, 233, .36);
    color: #075985;
}

.bt-public-nav .bt-group-join-trigger.btn-outline-info {
    color: #dff6ff;
}

.bt-public-nav .bt-group-join-trigger.btn-outline-info:hover {
    color: #ffffff;
}

.bt-group-join-options {
    display: grid;
    gap: .75rem;
}

.bt-group-join-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .85rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.bt-group-join-option-copy {
    min-width: 0;
}

.bt-group-join-option-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.bt-group-join-option h3 {
    margin: 0;
    color: #0f172a;
    font-size: .98rem;
    font-weight: 900;
}

.bt-group-join-option-top span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: .16rem .5rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, .1);
    color: #0369a1;
    font-size: .72rem;
    font-weight: 800;
}

.bt-group-join-option p {
    margin: .35rem 0 .2rem;
    color: #64748b;
    font-size: .86rem;
    line-height: 1.4;
}

.bt-group-join-option small {
    color: #475569;
    font-weight: 800;
}

/* -------------------------------------------------
   ACCOUNT BUTTON + AVATAR
------------------------------------------------- */

.bt-account-btn {
    background: rgba(255, 255, 255, .10) !important;
    border: 1px solid rgba(255, 255, 255, .20) !important;
    color: #ffffff !important;
    border-radius: 22px !important;
    min-height: 48px;
    padding: .55rem .95rem !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 12px 24px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.16);
}

.bt-account-btn:hover,
.bt-account-btn:focus {
    background: rgba(255, 255, 255, .16) !important;
    border-color: rgba(255, 255, 255, .30) !important;
    color: #ffffff !important;
}

.bt-account-btn.dropdown-toggle::after {
    color: #ffffff;
}

.bt-nearby-live-nav,
.bt-notification-nav-btn {
    min-height: 38px !important;
    padding: .38rem .68rem !important;
    border-radius: 18px !important;
    white-space: nowrap;
}

.bt-nearby-live-nav {
    gap: .38rem !important;
}

.bt-nearby-live-state {
    font-size: .78rem;
    line-height: 1;
}

.bt-nearby-live-nav .badge,
.bt-notification-nav-btn .badge {
    font-size: .68rem;
    line-height: 1;
    padding: .22rem .4rem;
}

.bt-notification-nav-btn {
    width: 46px;
    min-width: 46px;
    padding: 0 !important;
    gap: 0 !important;
}

.bt-notification-nav-btn .bi {
    font-size: .96rem;
    transform: translateX(-3px);
}

.bt-notification-nav-count {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .28rem !important;
}

.bt-avatar-mini {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .84rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37, #f0d77a);
    color: #111827;
    box-shadow:
        0 6px 14px rgba(212,175,55,.22),
        inset 0 1px 0 rgba(255,255,255,.35);
}

/* -------------------------------------------------
   DROPDOWN PANEL
------------------------------------------------- */

.bt-dropdown {
    min-width: 270px;
    margin-top: .75rem !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,.12);
    background:
        linear-gradient(180deg,
            rgba(10, 20, 48, 0.985),
            rgba(8, 16, 38, 0.985));
    box-shadow:
        0 24px 50px rgba(0,0,0,.35),
        0 0 0 1px rgba(255,255,255,.03);
    padding: .6rem;
    color: #f8fafc;
}

.bt-dropdown .dropdown-header {
    color: #f8fafc !important;
    padding: .8rem .9rem;
}

.bt-dropdown .bt-soft,
.bt-dropdown .text-muted,
.bt-dropdown .small {
    color: rgba(226, 232, 240, 0.72) !important;
}

.bt-dropdown .dropdown-item {
    color: rgba(241, 245, 249, 0.92) !important;
    border-radius: 14px;
    padding: .78rem .9rem;
    font-size: .94rem;
    font-weight: 700;
    transition: all .18s ease;
}

.bt-dropdown .dropdown-item i,
.bt-dropdown .dropdown-item span {
    color: inherit !important;
}

.bt-dropdown .dropdown-item:hover,
.bt-dropdown .dropdown-item:focus {
    color: #ffffff !important;
    background: rgba(255,255,255,.08) !important;
    transform: translateX(2px);
}

.bt-dropdown .dropdown-item.text-danger {
    color: #f87171 !important;
}

.bt-dropdown .dropdown-item.text-danger:hover,
.bt-dropdown .dropdown-item.text-danger:focus {
    color: #fecaca !important;
    background: rgba(239, 68, 68, 0.10) !important;
}

.bt-dropdown .badge {
    font-weight: 800;
    border-radius: 999px;
    padding: .42rem .72rem;
}

.bt-dropdown .badge.text-bg-secondary {
    background: rgba(255,255,255,0.08) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255,255,255,0.10);
}

.bt-dropdown .badge.text-bg-primary {
    background: rgba(99,102,241,0.16) !important;
    color: #c7d2fe !important;
    border: 1px solid rgba(99,102,241,0.24);
}

.bt-dropdown .badge.text-bg-danger {
    background: rgba(239,68,68,0.14) !important;
    color: #fecaca !important;
    border: 1px solid rgba(239,68,68,0.22);
}

.bt-dropdown .dropdown-divider {
    border-color: rgba(255,255,255,.08) !important;
    opacity: 1;
}

/* -------------------------------------------------
   MOBILE
------------------------------------------------- */

.bt-nav-toggle {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    border-radius: 14px;
    padding: .55rem .75rem;
}

.bt-nav-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(212,175,55,.18);
}

.bt-public-nav .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    .bt-public-nav {
        min-height: 78px;
    }

    .bt-logo-img {
        width: 54px;
        height: 54px;
    }

    .bt-brand-name {
        font-size: 1.55rem;
        letter-spacing: .05em;
    }

    .bt-public-links {
        margin-left: 0;
        padding-top: 1rem;
        gap: .35rem;
    }

    .bt-public-nav .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 22px;
        background:
            linear-gradient(180deg,
                rgba(7, 24, 58, .98),
                rgba(6, 18, 44, .98));
        border: 1px solid rgba(255,255,255,.06);
        box-shadow: 0 24px 40px rgba(0,0,0,.32);
    }

    .bt-chip {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
        min-height: 50px;
    }

    .bt-live-stream-nav {
        width: 56px;
        min-width: 56px;
        justify-content: center;
    }

    .bt-public-nav .btn.btn-sm {
        width: 100%;
        justify-content: center;
    }

    .bt-group-join-widget {
        width: 100%;
        align-items: stretch;
    }

    .bt-group-join-trigger {
        width: 100%;
        justify-content: center;
    }

    .bt-group-join-option {
        align-items: stretch;
        flex-direction: column;
    }

    .bt-group-join-option form,
    .bt-group-join-option .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .bt-logo-img {
        width: 48px;
        height: 48px;
    }

    .bt-brand-name {
        font-size: 1.3rem;
    }

    .bt-account-btn {
        padding: .5rem .75rem !important;
    }
}

/* ---------------------------------
   Avatar orb
--------------------------------- */

.bt-avatar-mini {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #f0d77a);
    color: #111827;
    box-shadow:
        0 6px 14px rgba(212,175,55,.22),
        inset 0 1px 0 rgba(255,255,255,.35);
}



/* ---------------------------------
   Mobile menu
--------------------------------- */

.bt-nav-toggle {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    padding: .45rem .65rem;
}

.bt-nav-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(212,175,55,.18);
}

.bt-public-nav .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 991.98px) {
    .bt-public-links {
        margin-left: 0;
        padding-top: 1rem;
    }

    .bt-public-nav .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 18px;
        background: rgba(5, 18, 48, 0.92);
        border: 1px solid rgba(255,255,255,.06);
        box-shadow: 0 20px 36px rgba(0,0,0,.25);
    }

    .bt-brand-name {
        font-size: 1rem;
        letter-spacing: .06em;
    }
}



/* -----------------------------
   8) Public footer
------------------------------ */
.bt-public-footer {
  margin-top: 34px;
  padding: 28px 0 18px;
  border-top: 1px solid var(--bt-border);
  background:
    radial-gradient(900px 320px at 10% 20%, rgba(79, 70, 229, .08), transparent 60%),
    radial-gradient(900px 320px at 90% 0%, rgba(20, 184, 166, .08), transparent 60%),
    rgba(255, 255, 255, .70);
}

.bt-footer-cta {
  border: 1px solid rgba(79, 70, 229, .16);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(900px 320px at 15% 40%, rgba(79, 70, 229, .10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
  box-shadow: var(--bt-shadow);
  margin-bottom: 18px;
}

.bt-footer-cta-title {
  font-weight: 950;
  letter-spacing: .02em;
  font-size: 1.25rem;
  color: var(--bt-text);
}

.bt-footer-cta-sub {
  margin-top: 4px;
  color: rgba(71, 85, 105, .86);
  font-weight: 650;
  letter-spacing: .01em;
}

.bt-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 10px 4px;
}

@media (max-width: 991.98px) {
  .bt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .bt-footer-grid {
    grid-template-columns: 1fr;
  }
}

.bt-footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(15, 23, 42, .03);
  border: 1px solid rgba(15, 23, 42, .08);
}

.bt-footer-brand-name {
  font-weight: 950;
  letter-spacing: .02em;
  font-size: 1.1rem;
}

.bt-footer-brand-sub {
  color: rgba(71, 85, 105, .84);
  font-weight: 600;
  font-size: .92rem;
}

.bt-footer-trust {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.bt-footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(71, 85, 105, .86);
  font-weight: 650;
  font-size: .92rem;
}

.bt-footer-trust-item .ic {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, .08);
  border: 1px solid rgba(79, 70, 229, .14);
}

.bt-footer-col {
  padding: 8px;
}

.bt-footer-h {
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(71, 85, 105, .92);
  margin-bottom: 10px;
}

.bt-footer-a {
  display: block;
  text-decoration: none;
  padding: 6px 0;
  color: rgba(15, 23, 42, .72);
  font-weight: 700;
  letter-spacing: .02em;
}

.bt-footer-a:hover {
  color: var(--bt-primary);
}

.bt-footer-bottom {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--bt-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bt-footer-copy {
  color: rgba(71, 85, 105, .82);
  font-weight: 650;
  letter-spacing: .01em;
}

.bt-footer-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(71, 85, 105, .75);
  font-weight: 650;
}

.bt-footer-mini-a {
  text-decoration: none;
  color: rgba(15, 23, 42, .68);
  font-weight: 750;
}

.bt-footer-mini-a:hover {
  color: var(--bt-primary);
}

.bt-footer-mini .sep {
  opacity: .65;
}

/* -----------------------------
   9) Home / landing
------------------------------ */
.bt-hero {
  border-radius: var(--bt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--bt-border);
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(79, 70, 229, .16), transparent 55%),
    radial-gradient(900px 420px at 90% 30%, rgba(20, 184, 166, .12), transparent 55%),
    linear-gradient(180deg, #fff, #fff);
  box-shadow: var(--bt-shadow);
}

.bt-hero-kicker .badge {
  height: 28px;
  border-radius: 10px;
  letter-spacing: .06em;
  font-weight: 800;
}

.bt-hero-title {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.06;
}

.bt-hero-accent {
  color: var(--bt-primary);
}

.bt-hero-sub {
  color: rgba(71, 85, 105, .92);
  font-size: 1.05rem;
  line-height: 1.55;
}

.bt-hero-meta {
  color: rgba(71, 85, 105, .85);
  font-weight: 650;
  letter-spacing: .02em;
  font-size: .92rem;
}

.bt-hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 576px) {
  .bt-hero-proof {
    grid-template-columns: 1fr 1fr;
  }
}

.bt-proof-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--bt-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .70);
}

.bt-proof-item .num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, .10);
  border: 1px solid rgba(79, 70, 229, .18);
}

.bt-proof-item .t {
  font-weight: 900;
  letter-spacing: .02em;
}

.bt-proof-item .d {
  color: rgba(71, 85, 105, .85);
  font-size: .90rem;
}

.bt-hero-panel {
  border-radius: 18px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--bt-shadow-sm);
  padding: 18px;
}

.bt-hero-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bt-hero-logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  background: rgba(15, 23, 42, .06);
  border: 1px solid rgba(15, 23, 42, .10);
}

.bt-hero-panel-title {
  font-weight: 950;
  letter-spacing: .02em;
}

.bt-hero-panel-sub {
  color: rgba(71, 85, 105, .82);
  font-size: .90rem;
}

.bt-hero-li {
  display: flex;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 14px;
}

.bt-hero-li:hover {
  background: rgba(79, 70, 229, .04);
}

.bt-hero-li .i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, .10);
  border: 1px solid rgba(20, 184, 166, .18);
}

.bt-hero-li .h {
  font-weight: 900;
  letter-spacing: .02em;
}

.bt-hero-li .p {
  color: rgba(71, 85, 105, .82);
  font-size: .90rem;
}

.bt-hero-panel-note {
  text-align: center;
  color: rgba(71, 85, 105, .78);
  font-size: .88rem;
}

.bt-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .bt-trust {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bt-trust-item {
  border: 1px solid var(--bt-border);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .75);
}

.bt-trust-item .k {
  font-weight: 900;
  letter-spacing: .02em;
}

.bt-trust-item .v {
  color: rgba(71, 85, 105, .84);
  font-size: .90rem;
}

.bt-step {
  border-radius: 18px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--bt-shadow-sm);
}

.bt-step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  color: var(--bt-primary);
  background: rgba(79, 70, 229, .10);
  border: 1px solid rgba(79, 70, 229, .18);
  margin-bottom: 10px;
}

.bt-step-title {
  font-weight: 950;
  letter-spacing: .02em;
}

.bt-step-text {
  color: rgba(71, 85, 105, .84);
  font-size: .92rem;
}

.bt-plan {
  border-radius: 20px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--bt-shadow-sm);
}

.bt-plan-featured {
  border-color: rgba(79, 70, 229, .25);
  box-shadow: var(--bt-shadow);
  background:
    radial-gradient(700px 300px at 30% 0%, rgba(79, 70, 229, .10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .84));
}

.bt-plan-name {
  font-weight: 950;
  letter-spacing: .02em;
}

.bt-plan-price .amt {
  font-size: 2.2rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.bt-plan-price .per {
  color: rgba(71, 85, 105, .82);
  font-weight: 700;
  margin-left: 6px;
}

.bt-plan-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(71, 85, 105, .88);
  font-size: .92rem;
}

.bt-plan-list li {
  margin: 8px 0;
}

.bt-plan-note {
  text-align: center;
  color: rgba(71, 85, 105, .78);
  font-size: .88rem;
}

.bt-plan-includes {
  font-weight: 850;
  letter-spacing: .02em;
  color: rgba(15, 23, 42, .78);
  margin-bottom: 8px;
}

.bt-cta {
  border-radius: 22px;
  border: 1px solid rgba(79, 70, 229, .18);
  background:
    radial-gradient(900px 320px at 15% 30%, rgba(79, 70, 229, .10), transparent 60%),
    radial-gradient(900px 320px at 85% 10%, rgba(20, 184, 166, .10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
  box-shadow: var(--bt-shadow);
}

.bt-dev {
  border-radius: 18px;
  border: 1px dashed rgba(245, 158, 11, .35);
  background: rgba(255, 255, 255, .70);
}

.bt-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bt-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .72);
  color: rgba(15, 23, 42, .74);
  font-weight: 700;
  font-size: .86rem;
}

.bt-mini i {
  color: var(--bt-primary);
}

/* -----------------------------
   10) About / contact
------------------------------ */
.bt-about-tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .78);
}

.bt-about-tile .ic {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, .10);
  border: 1px solid rgba(79, 70, 229, .18);
}

.bt-about-tile .t {
  font-weight: 950;
  letter-spacing: .02em;
}

.bt-about-tile .d {
  color: rgba(71, 85, 105, .84);
  font-size: .92rem;
  margin-top: 2px;
}

.bt-contact-tile {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .74);
}

.bt-contact-tile .k {
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(71, 85, 105, .90);
}

.bt-contact-tile .v {
  margin-top: 6px;
  font-weight: 750;
  color: rgba(15, 23, 42, .78);
}

/* -----------------------------
   11) Shopfront pages
------------------------------ */
.bt-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.bt-kicker {
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(71, 85, 105, .92);
}

.bt-page-title {
  font-weight: 950;
  letter-spacing: -0.01em;
}

.bt-label {
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(71, 85, 105, .92);
}

.bt-input .input-group-text {
  border-radius: 14px 0 0 14px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .85);
}

.bt-input .form-control {
  border-radius: 0 14px 14px 0;
  border: 1px solid var(--bt-border);
}

.bt-select {
  border-radius: 14px;
  border: 1px solid var(--bt-border);
}

/* product cards */
.bt-product {
  border-radius: 20px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--bt-shadow-sm);
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.bt-product:hover {
  transform: translateY(-2px);
  box-shadow: var(--bt-shadow);
  border-color: rgba(79, 70, 229, .18);
}

.bt-product-cover {
  display: block;
  text-decoration: none;
  background: rgba(15, 23, 42, .02);
}

.bt-product-cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.bt-product-cover-placeholder {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(79, 70, 229, .10), rgba(20, 184, 166, .08));
  border-bottom: 1px solid var(--bt-border);
}

.bt-product-cover-placeholder .t {
  font-weight: 950;
  letter-spacing: .02em;
  color: rgba(15, 23, 42, .78);
}

.bt-product-cover-placeholder .s {
  font-weight: 650;
  color: rgba(71, 85, 105, .84);
  font-size: .90rem;
}

.bt-product-title {
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.15;
}

.bt-product-title a {
  color: var(--bt-text);
  text-decoration: none;
}

.bt-product-title a:hover {
  color: var(--bt-primary);
}

.bt-product-desc {
  color: rgba(71, 85, 105, .88);
  font-weight: 600;
  font-size: .92rem;
  min-height: 44px;
}

.bt-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.bt-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bt-price .amt {
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: 1.12rem;
}

.bt-price .cur {
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .74rem;
  color: rgba(71, 85, 105, .80);
}

.bt-product-actions {
  display: flex;
  gap: 8px;
}

.bt-product-actions .btn {
  height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .78rem;
}

.bt-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--bt-border);
  padding-top: 12px;
}

.bt-link {
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .02em;
  color: var(--bt-primary);
}

.bt-link:hover {
  text-decoration: underline;
}

/* product detail */
.bt-product-view {
  border-radius: 22px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--bt-shadow);
  overflow: hidden;
}

.bt-product-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.bt-product-media-empty {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(79, 70, 229, .10), rgba(20, 184, 166, .08));
  border-bottom: 1px solid var(--bt-border);
}

.bt-product-media-empty .t {
  font-weight: 950;
  letter-spacing: .02em;
  color: rgba(15, 23, 42, .78);
}

.bt-product-media-empty .s {
  font-weight: 650;
  color: rgba(71, 85, 105, .84);
  font-size: .92rem;
  text-align: center;
  max-width: 320px;
}

.bt-product-h {
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  line-height: 1.15;
}

.bt-price-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.bt-price-big .amt {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
}

.bt-price-big .cur {
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(71, 85, 105, .80);
}

.bt-section-title {
  font-weight: 950;
  letter-spacing: .02em;
}

.bt-prose {
  color: rgba(15, 23, 42, .74);
  font-weight: 600;
  line-height: 1.65;
  font-size: .98rem;
}

.bt-sticky {
  position: sticky;
  top: 92px;
}

@media (max-width: 991.98px) {
  .bt-sticky {
    position: static;
    top: auto;
  }
}

.bt-buy-card {
  border-radius: 22px;
  border: 1px solid rgba(79, 70, 229, .18);
  background:
    radial-gradient(900px 320px at 20% 20%, rgba(79, 70, 229, .10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .84));
  box-shadow: var(--bt-shadow);
}

.bt-buy-point {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .70);
  color: rgba(15, 23, 42, .74);
  font-weight: 700;
  font-size: .92rem;
}

.bt-buy-point i {
  color: var(--bt-primary);
}

.bt-trust-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 576px) {
  .bt-trust-mini {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .bt-trust-mini {
    grid-template-columns: 1fr;
  }
}

.bt-trust-mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .70);
}

.bt-trust-mini-item .ic {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, .10);
  border: 1px solid rgba(79, 70, 229, .18);
  color: var(--bt-primary);
}

.bt-trust-mini-item .t {
  font-weight: 950;
  letter-spacing: .02em;
}

.bt-trust-mini-item .d {
  color: rgba(71, 85, 105, .84);
  font-weight: 650;
  font-size: .90rem;
}

/* checkout */
.bt-form .form-control.bt-input2 {
  border-radius: 14px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .86);
}

.bt-paybox {
  border-radius: 18px;
  border: 1px solid rgba(79, 70, 229, .16);
  background:
    radial-gradient(900px 320px at 20% 20%, rgba(79, 70, 229, .08), transparent 60%),
    rgba(255, 255, 255, .72);
  padding: 14px;
}

.bt-paytrust {
  display: grid;
  gap: 8px;
}

.bt-paytrust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .70);
  color: rgba(15, 23, 42, .74);
  font-weight: 700;
  font-size: .92rem;
}

.bt-paytrust-item i {
  color: var(--bt-primary);
}

.bt-checkout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bt-checkout-actions .btn {
  border-radius: 12px;
  font-weight: 850;
  letter-spacing: .03em;
}

.bt-summary {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .72);
}

.bt-summary-media {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .03);
  flex: 0 0 auto;
}

.bt-summary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bt-summary-media-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  color: rgba(71, 85, 105, .80);
  font-size: .86rem;
}

.bt-summary-title {
  font-weight: 950;
  letter-spacing: .01em;
  line-height: 1.15;
}

.bt-summary-desc {
  color: rgba(71, 85, 105, .88);
  font-weight: 650;
  font-size: .90rem;
}

.bt-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.bt-summary-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--bt-border);
  font-weight: 950;
}

.bt-next {
  display: grid;
  gap: 8px;
}

.bt-next-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .70);
  color: rgba(15, 23, 42, .74);
  font-weight: 700;
  font-size: .92rem;
}

.bt-next-item .n {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 70, 229, .10);
  border: 1px solid rgba(79, 70, 229, .18);
  color: var(--bt-primary);
  font-weight: 950;
  font-size: .80rem;
}

/* order detail */
.bt-receipt .bt-receipt-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.bt-time {
  display: grid;
  gap: 10px;
}

.bt-time-item .k {
  color: rgba(71, 85, 105, .85);
  font-weight: 750;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.bt-time-item .v {
  font-weight: 850;
  color: rgba(15, 23, 42, .82);
}

.bt-banner {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--bt-border);
  background: rgba(255, 255, 255, .72);
}

.bt-banner .i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .03);
}

.bt-banner .t {
  font-weight: 950;
  letter-spacing: .01em;
}

.bt-banner .d {
  color: rgba(71, 85, 105, .86);
  font-weight: 650;
  font-size: .90rem;
  margin-top: 2px;
}

.bt-banner-ok {
  border-color: rgba(22, 163, 74, .20);
  background: radial-gradient(600px 220px at 20% 10%, rgba(22, 163, 74, .10), transparent 60%), rgba(255, 255, 255, .72);
}

.bt-banner-ok .i {
  background: rgba(22, 163, 74, .12);
  border-color: rgba(22, 163, 74, .18);
  color: rgba(22, 163, 74, .95);
}

.bt-banner-warn {
  border-color: rgba(245, 158, 11, .22);
  background: radial-gradient(600px 220px at 20% 10%, rgba(245, 158, 11, .12), transparent 60%), rgba(255, 255, 255, .72);
}

.bt-banner-warn .i {
  background: rgba(245, 158, 11, .14);
  border-color: rgba(245, 158, 11, .22);
  color: rgba(180, 83, 9, .95);
}

.bt-td-title {
  font-weight: 950;
  letter-spacing: .01em;
  color: rgba(15, 23, 42, .86);
}

.bt-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* -----------------------------
   12) Buyer downloads
------------------------------ */
.bt-pagehead {
  margin-bottom: 1rem;
}

.bt-eyebrow {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: .35rem;
}

.bt-ic {
  display: inline-block;
  transform: translateY(-1px);
}

.bt-item {
  display: flex;
  gap: .8rem;
  align-items: center;
}

.bt-item-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .06);
}

.bt-item-title {
  font-weight: 650;
  line-height: 1.15;
}

.bt-item-meta {
  font-size: .92rem;
  opacity: .75;
  margin-top: .15rem;
}

.bt-kv {
  display: grid;
  gap: .15rem;
}

.bt-kv-main {
  font-weight: 650;
}

.bt-kv-sub {
  font-size: .9rem;
  opacity: .75;
}

.bt-dot {
  margin: 0 .35rem;
  opacity: .55;
}

.bt-stack {
  display: grid;
  gap: .75rem;
}

.bt-download-card {
  padding: 1rem;
}

.bt-download-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .65rem;
}

.bt-download-actions {
  display: grid;
  gap: .5rem;
}

/* CSS for home page*/

.bt-street-preview {
  overflow: hidden;
}

.bt-street-scene {
  position: relative;
  border-radius: 1.5rem;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(13,110,253,.08);
  box-shadow: 0 18px 50px rgba(30,64,175,.08);
}

.bt-street-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.bt-street-chip {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(13,110,253,.08);
  color: #0d6efd;
  font-size: .8rem;
  font-weight: 700;
}

.bt-street-sub {
  color: #64748b;
  font-size: .85rem;
}

.bt-street-map {
  position: relative;
  min-height: 360px;
  border-radius: 1.25rem;
  padding: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.92));
  border: 1px solid rgba(0,0,0,.05);
}

.bt-street-road {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 56%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cbd5e1, #94a3b8, #cbd5e1);
  opacity: .7;
}

.bt-street-shop {
  position: absolute;
  width: 140px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.bt-street-shop:hover {
  transform: translateY(-3px);
}

.bt-street-shop--1 {
  left: 4%;
  top: 18%;
}

.bt-street-shop--2 {
  left: 34%;
  top: 8%;
}

.bt-street-shop--3 {
  right: 8%;
  top: 24%;
}

.bt-shop-roof {
  height: 14px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(90deg, #1d4ed8, #2563eb);
  margin: 0 auto -4px auto;
  width: 78%;
}

.bt-shop-body {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 1rem;
  padding: .85rem;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}

.bt-shop-name {
  font-weight: 800;
  font-size: .92rem;
  color: #0f172a;
  margin-bottom: .15rem;
}

.bt-shop-note {
  font-size: .78rem;
  color: #64748b;
  line-height: 1.35;
}

.bt-street-shop--live .bt-shop-body {
  border-color: rgba(22,163,74,.24);
  box-shadow: 0 12px 28px rgba(22,163,74,.14);
}

.bt-shop-glow {
  position: absolute;
  inset: -10px;
  border-radius: 1.2rem;
  background: radial-gradient(circle, rgba(34,197,94,.18), transparent 65%);
  z-index: 1;
  animation: btStreetGlow 2.2s ease-in-out infinite;
}

@keyframes btStreetGlow {
  0%, 100% { opacity: .55; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

.bt-street-preview-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(260px, 88%);
  background: rgba(15,23,42,.92);
  color: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 16px 36px rgba(15,23,42,.22);
}

.bt-street-preview-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .7;
  margin-bottom: .4rem;
}

.bt-street-preview-title {
  font-weight: 800;
  margin-bottom: .35rem;
  font-size: .95rem;
}

.bt-street-preview-text {
  font-size: .82rem;
  line-height: 1.45;
  opacity: .88;
}

@media (max-width: 991.98px) {
  .bt-street-map {
    min-height: 420px;
  }

  .bt-street-shop {
    width: 130px;
  }

  .bt-street-shop--1 {
    left: 4%;
    top: 14%;
  }

  .bt-street-shop--2 {
    left: 30%;
    top: 5%;
  }

  .bt-street-shop--3 {
    right: 4%;
    top: 18%;
  }
}

@media (max-width: 575.98px) {
  .bt-street-map {
    min-height: 470px;
  }

  .bt-street-shop {
    width: 120px;
  }

  .bt-street-preview-card {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}


.bt-plan-badge-wrap {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bt-plan-badge-image {
  max-height: 170px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.14));
  transition: transform .25s ease, filter .25s ease;
}

.bt-plan:hover .bt-plan-badge-image {
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.18));
}


  /* =========================================================
     BIZTOWERS PUBLIC FOOTER V2
     Lighter premium blue-teal treatment
     Replaces previous footer CSS
     ========================================================= */

/* =========================================================
   BIZTOWERS PUBLIC FOOTER V3
   Dark navy + gold premium footer
   Place near the END of public.css
========================================================= */

.bt-public-footer.bt-public-footer--v2 {
  position: relative;
  margin-top: 3rem;
  padding: 1rem 0 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(59,130,246,.10), transparent 26%),
    linear-gradient(180deg, #041227 0%, #071a35 52%, #081c3d 100%);
  border-top: 1px solid rgba(212,175,55,.10);
  overflow: hidden;
}

.bt-public-footer.bt-public-footer--v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
  opacity: .45;
}

/* CTA */
.bt-public-footer--v2 .bt-footer-cta.bt-footer-cta--city {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.16), transparent 28%),
    linear-gradient(135deg, rgba(9,23,49,.96), rgba(8,28,61,.98));
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 24px;
  padding: 1.45rem 1.5rem;
  box-shadow:
    0 18px 40px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.03);
  margin-bottom: 1rem;
}

.bt-public-footer--v2 .bt-footer-cta-kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244, 222, 140, .92);
  margin-bottom: .55rem;
}

.bt-public-footer--v2 .bt-footer-cta-title {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
  color: #f8fafc;
  max-width: 860px;
  margin-bottom: .55rem;
}

.bt-public-footer--v2 .bt-footer-cta-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(226,232,240,.82);
  max-width: 760px;
}

.bt-public-footer--v2 .bt-footer-cta .btn {
  min-height: 50px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .96rem;
}

.bt-public-footer--v2 .bt-footer-cta .btn-primary {
  background: linear-gradient(135deg, #d4af37, #f4dc86);
  border-color: #d4af37;
  color: #111827;
  box-shadow: 0 10px 24px rgba(212,175,55,.18);
}

.bt-public-footer--v2 .bt-footer-cta .btn-primary:hover {
  background: linear-gradient(135deg, #e1bd48, #f8e6a4);
  border-color: #e1bd48;
  color: #0f172a;
}

.bt-public-footer--v2 .bt-footer-cta .btn-outline-secondary {
  border-color: rgba(212,175,55,.22);
  color: #f8fafc;
  background: rgba(255,255,255,.04);
}

.bt-public-footer--v2 .bt-footer-cta .btn-outline-secondary:hover {
  background: rgba(212,175,55,.10);
  color: #fff;
  border-color: rgba(212,175,55,.30);
}

/* Concept strip */
.bt-public-footer--v2 .bt-footer-concept-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin-bottom: 1rem;
}

.bt-public-footer--v2 .bt-footer-concept-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: .95rem 1rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

.bt-public-footer--v2 .bt-footer-concept-item .k {
  font-size: .9rem;
  font-weight: 900;
  color: #f8fafc;
  margin-bottom: .2rem;
}

.bt-public-footer--v2 .bt-footer-concept-item .v {
  font-size: .8rem;
  line-height: 1.5;
  color: rgba(203,213,225,.74);
}

/* Main grid */
.bt-public-footer--v2 .bt-footer-grid.bt-footer-grid--v2 {
  display: grid;
  grid-template-columns: minmax(430px, 1.55fr) repeat(3, minmax(170px, .65fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
  padding: 1.2rem 0 1rem;
}

.bt-public-footer--v2 .bt-footer-brand {
  max-width: 620px;
}

.bt-public-footer--v2 .bt-footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  padding: .25rem;
}

.bt-public-footer--v2 .bt-footer-brand-name {
  font-size: 1rem;
  font-weight: 900;
  color: #f8fafc;
  line-height: 1.1;
}

.bt-public-footer--v2 .bt-footer-brand-sub {
  font-size: .86rem;
  color: rgba(203,213,225,.72);
  line-height: 1.35;
}

.bt-public-footer--v2 .bt-footer-brand-copy {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(226,232,240,.76);
  max-width: 560px;
}

.bt-public-footer--v2 .bt-footer-trust {
  display: grid;
  gap: .45rem;
}

.bt-public-footer--v2 .bt-footer-trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .84rem;
  color: rgba(226,232,240,.72);
}

.bt-public-footer--v2 .bt-footer-trust-item .ic {
  font-size: .95rem;
  line-height: 1;
  color: #f4dc86;
}

/* Social */
.bt-public-footer--v2 .bt-footer-social {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.bt-public-footer--v2 .bt-footer-social-a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(241,245,249,.86);
  background: rgba(255,255,255,.04);
  transition: all .18s ease;
}

.bt-public-footer--v2 .bt-footer-social-a:hover {
  color: #f8fafc;
  border-color: rgba(212,175,55,.28);
  background: rgba(212,175,55,.10);
  box-shadow: 0 10px 20px rgba(212,175,55,.10);
}

/* Footer columns */
.bt-public-footer--v2 .bt-footer-h {
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,222,140,.92);
  margin-bottom: .9rem;
}

.bt-public-footer--v2 .bt-footer-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bt-public-footer--v2 .bt-footer-a {
  display: inline-block;
  text-decoration: none;
  color: rgba(226,232,240,.74);
  font-size: .94rem;
  line-height: 1.45;
  margin-bottom: .55rem;
  transition: all .18s ease;
}

.bt-public-footer--v2 .bt-footer-a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* Bottom bar */
.bt-public-footer--v2 .bt-footer-bottom {
  margin-top: .6rem;
  border-radius: 20px;
  padding: .9rem 1rem;
  background:
    linear-gradient(135deg, rgba(212,175,55,.18), rgba(212,175,55,.08)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.bt-public-footer--v2 .bt-footer-copy {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(248,250,252,.92);
}

.bt-public-footer--v2 .bt-footer-mini {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.bt-public-footer--v2 .bt-footer-mini-a {
  color: rgba(248,250,252,.90);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 700;
}

.bt-public-footer--v2 .bt-footer-mini-a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.bt-public-footer--v2 .bt-footer-mini .sep {
  color: rgba(244,222,140,.64);
  font-size: .8rem;
}

@media (max-width: 1199.98px) {
  .bt-public-footer--v2 .bt-footer-grid.bt-footer-grid--v2 {
    grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(150px, 1fr));
    gap: 1.4rem;
  }

  .bt-public-footer--v2 .bt-footer-brand {
    grid-column: auto;
    max-width: none;
  }

  .bt-public-footer--v2 .bt-footer-concept-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .bt-public-footer--v2 .bt-footer-cta.bt-footer-cta--city {
    padding: 1.1rem 1rem;
    border-radius: 20px;
  }

  .bt-public-footer--v2 .bt-footer-cta-title {
    font-size: 1.55rem;
  }

  .bt-public-footer--v2 .bt-footer-cta-sub {
    font-size: .94rem;
  }

  .bt-public-footer--v2 .bt-footer-concept-strip {
    grid-template-columns: 1fr;
  }

  .bt-public-footer--v2 .bt-footer-grid.bt-footer-grid--v2 {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: .85rem;
  }

  .bt-public-footer--v2 .bt-footer-brand,
  .bt-public-footer--v2 .bt-footer-brand-copy {
    max-width: none;
  }

  .bt-public-footer--v2 .bt-footer-bottom {
    padding: .85rem .9rem;
    border-radius: 18px;
  }
}

.op-empty-state {
    padding: 2rem 1rem;
    text-align: center;
    border: 1px dashed rgba(148,163,184,.24);
    border-radius: 20px;
    background: #ffffff;
}

.op-empty-state-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto .9rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,.08);
    color: #2563eb;
    border: 1px solid rgba(37,99,235,.10);
    font-size: 1.2rem;
}

.op-empty-state-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: .4rem;
}

.op-empty-state-text {
    color: #64748b;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

/* =========================================================
   BIZTOWERS HEADER DROPDOWN VISIBILITY FIX
   Add below the navbar/dropdown rules in public.css
========================================================= */

.bt-dropdown {
    color: #f8fafc;
}

.bt-dropdown .dropdown-header {
    color: #f8fafc !important;
}

.bt-dropdown .bt-soft,
.bt-dropdown .text-muted,
.bt-dropdown .small {
    color: rgba(226, 232, 240, 0.72) !important;
}

.bt-dropdown .dropdown-item {
    color: rgba(241, 245, 249, 0.90) !important;
    font-weight: 700;
}

.bt-dropdown .dropdown-item i,
.bt-dropdown .dropdown-item span {
    color: inherit !important;
}

.bt-dropdown .dropdown-item:hover,
.bt-dropdown .dropdown-item:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.bt-dropdown .dropdown-item.text-danger {
    color: #f87171 !important;
}

.bt-dropdown .dropdown-item.text-danger:hover,
.bt-dropdown .dropdown-item.text-danger:focus {
    color: #fecaca !important;
    background: rgba(239, 68, 68, 0.10) !important;
}

/* badges inside dropdown header */
.bt-dropdown .badge {
    font-weight: 800;
    border-radius: 999px;
    padding: .42rem .72rem;
}

.bt-dropdown .badge.text-bg-secondary {
    background: rgba(255,255,255,0.08) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(255,255,255,0.10);
}

.bt-dropdown .badge.text-bg-primary {
    background: rgba(99,102,241,0.16) !important;
    color: #c7d2fe !important;
    border: 1px solid rgba(99,102,241,0.24);
}

.bt-dropdown .badge.text-bg-danger {
    background: rgba(239,68,68,0.14) !important;
    color: #fecaca !important;
    border: 1px solid rgba(239,68,68,0.22);
}

/* divider visibility */
.bt-dropdown .dropdown-divider {
    border-color: rgba(255,255,255,0.08) !important;
    opacity: 1;
}


/* =========================================================
   BizTowers Social App Shell
   Used by Home, Digital Street, Opportunity Plaza
========================================================= */

.bt-social-layout {
  display: grid;
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.bt-social-main {
  min-width: 0;
}

.bt-social-sidebar {
  position: sticky;
  top: 104px;
  z-index: 5;
}

.bt-social-sidebar-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .075);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
}

.bt-social-profile {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.bt-social-avatar,
.bt-home-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  flex: 0 0 auto;
}

.bt-social-name {
  font-weight: 900;
  color: #0f172a;
}

.bt-social-role {
  font-size: .84rem;
  color: #64748b;
}

.bt-social-menu {
  display: grid;
  gap: .45rem;
}

.bt-social-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .72rem .8rem;
  border-radius: 16px;
  color: #334155;
  font-weight: 850;
  text-decoration: none;
  transition: all .18s ease;
}

.bt-social-menu a:hover,
.bt-social-menu a.is-active {
  background: rgba(13, 110, 253, .08);
  color: #0d6efd;
}

.bt-social-menu-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(15, 23, 42, .055);
}

/* =========================================================
   BizTowers Home Dashboard
========================================================= */

.bt-home-dashboard {
  background:
    radial-gradient(circle at top left, rgba(13, 110, 253, .065), transparent 30%),
    radial-gradient(circle at top right, rgba(34, 197, 94, .055), transparent 28%),
    #f8fafc;
  min-height: calc(100vh - 86px);
  padding: 1.5rem 0 2rem;
}

.bt-home-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 1rem;
  align-items: start;
}

.bt-home-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .075);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
}

.bt-home-panel-body {
  padding: 1rem;
}

.bt-home-hero {
  background: linear-gradient(135deg, #0f172a 0%, #172554 56%, #1d4ed8 100%);
  color: #fff;
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .20);
  position: relative;
  overflow: hidden;
}

.bt-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .13), transparent 23%),
    radial-gradient(circle at 18% 88%, rgba(34, 197, 94, .13), transparent 24%);
  pointer-events: none;
}

.bt-home-hero > * {
  position: relative;
  z-index: 1;
}

.bt-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bt-home-title {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.035em;
  margin: .9rem 0 .65rem;
}

.bt-home-subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.bt-home-action-row,
.bt-home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.bt-home-action {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .7rem 1rem;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .16);
}

.bt-home-action.is-light {
  background: #fff;
  color: #0f172a;
}

.bt-home-action.is-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.bt-home-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .52rem .78rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
  color: #334155;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.bt-home-chip.is-blue {
  background: rgba(13, 110, 253, .08);
  color: #0d6efd;
  border-color: rgba(13, 110, 253, .14);
}

.bt-home-chip.is-green {
  background: rgba(22, 163, 74, .09);
  color: #15803d;
  border-color: rgba(22, 163, 74, .14);
}

.bt-home-chip.is-gold {
  background: rgba(245, 158, 11, .13);
  color: #92400e;
  border-color: rgba(245, 158, 11, .18);
}

.bt-home-composer {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.bt-home-composer-box {
  flex: 1;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  background: #f8fafc;
  padding: .85rem 1rem;
  color: #64748b;
  font-weight: 700;
}

.bt-home-section-title {
  font-size: 1rem;
  font-weight: 950;
  color: #0f172a;
  margin: 0;
}

.bt-home-section-sub {
  color: #64748b;
  font-size: .86rem;
  margin-top: .15rem;
}

.bt-home-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.bt-home-feed-card {
  border: 1px solid rgba(15, 23, 42, .075);
  border-radius: 20px;
  padding: .95rem;
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: all .2s ease;
}

.bt-home-feed-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, .075);
  border-color: rgba(13, 110, 253, .18);
}

.bt-home-card-title {
  font-weight: 900;
  color: #0f172a;
  margin-bottom: .25rem;
}

.bt-home-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f7;
  margin: .55rem 0 .65rem;
}

.bt-home-card-media img,
.bt-home-card-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bt-home-card-text {
  color: #64748b;
  font-size: .86rem;
  line-height: 1.55;
}

.bt-home-card-meta {
  color: #94a3b8;
  font-size: .78rem;
  font-weight: 700;
  margin-top: .55rem;
}

.bt-home-empty {
  border: 1px dashed rgba(15, 23, 42, .16);
  border-radius: 20px;
  padding: 1.25rem;
  color: #64748b;
  background: rgba(248, 250, 252, .75);
}

.bt-home-right-rail {
  position: sticky;
  top: 104px;
}

.bt-home-upgrade {
  background: linear-gradient(135deg, #0f172a, #172554 58%, #1d4ed8);
  color: #fff;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
}

.bt-home-upgrade p {
  color: rgba(255, 255, 255, .76);
  margin-bottom: .85rem;
  font-size: .9rem;
  line-height: 1.55;
}

.bt-home-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.bt-home-stat {
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
  padding: .85rem;
}

.bt-home-stat-value {
  font-size: 1.45rem;
  font-weight: 950;
  color: #0f172a;
  line-height: 1;
}

.bt-home-stat-label {
  color: #64748b;
  font-size: .78rem;
  font-weight: 800;
  margin-top: .35rem;
}

@media (max-width: 1199.98px) {
  .bt-home-main-grid {
    grid-template-columns: 1fr;
  }

  .bt-home-right-rail {
    position: static;
  }
}

@media (max-width: 991.98px) {
  .bt-social-layout {
    grid-template-columns: 1fr;
  }

  .bt-social-sidebar {
    position: static;
  }

  .bt-home-card-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Opportunity Plaza Create / Composer
========================================================= */

.op-create-page {
  min-width: 0;
}

.op-create-hero {
  background: linear-gradient(135deg, #0f172a 0%, #172554 56%, #1d4ed8 100%);
  color: #fff;
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .20);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.op-create-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .13), transparent 24%),
    radial-gradient(circle at 18% 88%, rgba(34, 197, 94, .13), transparent 24%);
  pointer-events: none;
}

.op-create-hero > * {
  position: relative;
  z-index: 1;
}

.op-create-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.op-create-title {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.035em;
  margin: .85rem 0 .55rem;
}

.op-create-subtitle {
  max-width: 780px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  margin: 0;
}

.op-create-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 1rem;
  align-items: start;
}

.op-create-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .075);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .055);
}

.op-create-card-body {
  padding: 1rem;
}

.op-create-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, .075);
}

.op-create-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  flex: 0 0 auto;
}

.op-create-author-name {
  color: #0f172a;
  font-weight: 950;
}

.op-create-author-role {
  color: #64748b;
  font-size: .86rem;
}

.op-create-input {
  border-radius: 16px;
  min-height: 48px;
}

.op-create-textarea {
  border-radius: 20px;
  resize: vertical;
}

.op-create-side {
  position: sticky;
  top: 104px;
}

.op-create-side-title {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
  margin-bottom: .85rem;
}

.op-create-checks {
  display: grid;
  gap: .75rem;
}

.op-create-check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .85rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .075);
  cursor: pointer;
}

.op-create-check input {
  margin-top: .2rem;
}

.op-create-check strong {
  display: block;
  color: #0f172a;
  font-size: .9rem;
}

.op-create-check small {
  display: block;
  color: #64748b;
  line-height: 1.4;
  margin-top: .15rem;
}

.op-create-note {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  background: rgba(13, 110, 253, .07);
  color: #334155;
  border: 1px solid rgba(13, 110, 253, .12);
  border-radius: 18px;
  padding: .85rem;
  font-size: .88rem;
  line-height: 1.45;
}

.op-create-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.op-create-idea {
  border: 1px solid rgba(15, 23, 42, .08);
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: .55rem .8rem;
  font-weight: 850;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .18s ease;
}

.op-create-idea:hover {
  background: rgba(13, 110, 253, .08);
  color: #0d6efd;
  border-color: rgba(13, 110, 253, .14);
}

@media (max-width: 1199.98px) {
  .op-create-grid {
    grid-template-columns: 1fr;
  }

  .op-create-side {
    position: static;
  }
}

/* =========================================================
   Opportunity Plaza Card Engagement
========================================================= */

.op-card-reaction-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .8rem;
    margin-bottom: .55rem;
}

.op-reaction-summary-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .62rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .07);
    color: #334155;
    font-size: .78rem;
    font-weight: 850;
}

.op-reaction-summary-chip strong {
    color: #0f172a;
    font-weight: 950;
}

.op-react-btn.is-active {
    background: rgba(13, 110, 253, .1);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, .2);
}


/* ===== Inline Comments ===== */

.op-card-comments {
    margin-top: .8rem;
    border-top: 1px solid rgba(15,23,42,.06);
    padding-top: .6rem;
}

.op-comment-toggle {
    border: none;
    background: transparent;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
    font-size: .85rem;
}

.op-comment-input-row {
    display: flex;
    gap: .5rem;
    margin-top: .6rem;
}

.op-comments-list {
    margin-top: .7rem;
    display: grid;
    gap: .5rem;
}

.op-comment {
    background: #f8fafc;
    padding: .6rem .7rem;
    border-radius: 12px;
}

.op-comment p {
    margin: 0;
    font-size: .85rem;
    color: #334155;
}

.op-inline-comment-list {
    display: grid;
    gap: .5rem;
}

.op-inline-comment {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 14px;
    padding: .65rem .75rem;
    color: #334155;
    font-size: .88rem;
}

.op-inline-comment strong {
    display: block;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: .2rem;
}

.op-inline-comment {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
}

.op-inline-comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd, #14b8a6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
    overflow: hidden;
}

.op-inline-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-inline-comment-content {
    flex: 1;
}

/* =========================================================
   Social Profile Page Polish
========================================================= */

.bt-profile-social-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-profile-cover {
  border-radius: 30px;
  padding: 1.35rem;
  background: linear-gradient(135deg, #0f172a 0%, #172554 55%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .20);
  overflow: hidden;
}

.bt-profile-cover-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.bt-profile-avatar-xl,
.bt-profile-preview {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 950;
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.25);
}

.bt-profile-avatar-xl img,
.bt-profile-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-profile-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bt-profile-identity h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 950;
  margin: .55rem 0 .25rem;
  letter-spacing: -.04em;
}

.bt-profile-identity p {
  color: rgba(255,255,255,.78);
  margin: 0;
}

.bt-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
}

.bt-profile-badges span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
  font-size: .82rem;
}

.bt-profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.bt-profile-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.075);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15,23,42,.055);
}

.bt-profile-card-body {
  padding: 1rem;
}

.bt-profile-section-title {
  font-size: 1.05rem;
  font-weight: 950;
  color: #0f172a;
  margin: 0 0 .75rem;
}

.bt-profile-muted,
.bt-profile-field-note {
  color: #64748b;
  font-size: .9rem;
}

.bt-profile-meta-list {
  display: grid;
  gap: .7rem;
}

.bt-profile-meta-list div {
  padding: .8rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.07);
}

.bt-profile-meta-list span {
  display: block;
  font-size: .74rem;
  color: #64748b;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.bt-profile-meta-list strong {
  color: #0f172a;
  font-weight: 950;
}

.bt-profile-input {
  min-height: 48px;
  border-radius: 16px;
}

.bt-profile-divider {
  height: 1px;
  background: rgba(15,23,42,.08);
  margin: .75rem 0 1rem;
}

.bt-profile-small-title {
  font-size: 1rem;
  font-weight: 950;
  margin: 0 0 .25rem;
}

@media (max-width: 1199.98px) {
  .bt-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .bt-profile-cover-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bt-profile-avatar-xl {
    margin: 0 auto;
  }

  .bt-profile-badges,
  .bt-profile-cover-actions {
    justify-content: center;
  }
}

.bt-social-avatar,
.bt-avatar-mini {
    overflow: hidden;
}

.bt-social-avatar img,
.bt-avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.bt-avatar-mini {
    flex: 0 0 auto;
}

.bt-profile-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    color: inherit;
    transition: transform .18s ease, color .18s ease;
}

.bt-profile-link:hover {
    color: inherit;
    transform: translateY(-1px);
}

.bt-profile-link img,
.bt-profile-link .bt-avatar,
.bt-profile-link .bt-social-avatar,
.bt-profile-link .bt-profile-avatar-xl {
    transition: box-shadow .18s ease, transform .18s ease;
}

.bt-profile-link:hover img,
.bt-profile-link:hover .bt-avatar,
.bt-profile-link:hover .bt-social-avatar,
.bt-profile-link:hover .bt-profile-avatar-xl {
    box-shadow: 0 12px 30px rgba(37, 99, 235, .18);
}


/* =========================================================
   Notifications Social Page
========================================================= */

.bt-notifications-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-notify-hero {
  border-radius: 30px;
  padding: 1.35rem;
  background: linear-gradient(135deg, #0f172a 0%, #172554 56%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(15,23,42,.20);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bt-notify-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bt-notify-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: -.04em;
  margin: .75rem 0 .35rem;
}

.bt-notify-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  margin: 0;
  line-height: 1.6;
}

.bt-notify-hero-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.bt-notify-filter-card,
.bt-notify-section,
.bt-notify-empty {
  background: #fff;
  border: 1px solid rgba(15,23,42,.075);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15,23,42,.055);
}

.bt-notify-filter-card {
  padding: 1rem;
}

.bt-notify-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.bt-notify-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .62rem .85rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.07);
  color: #334155;
  font-weight: 850;
}

.bt-notify-chip.is-active {
  background: rgba(13,110,253,.09);
  color: #0d6efd;
  border-color: rgba(13,110,253,.18);
}

.bt-notify-chip strong {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0f172a;
  font-size: .76rem;
}

.bt-notify-stack {
  display: grid;
  gap: 1rem;
}

.bt-notify-section {
  overflow: hidden;
}

.bt-notify-section-head {
  display: flex;
  gap: .85rem;
  align-items: center;
  padding: 1rem 1rem .65rem;
}

.bt-notify-section-head h2 {
  font-size: 1.05rem;
  font-weight: 950;
  margin: 0 0 .15rem;
  color: #0f172a;
}

.bt-notify-section-head p {
  color: #64748b;
  margin: 0;
  font-size: .9rem;
}

.bt-notify-section-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bt-notify-section-icon.is-primary {
  background: rgba(13,110,253,.09);
  color: #0d6efd;
}

.bt-notify-section-icon.is-success {
  background: rgba(22,163,74,.09);
  color: #15803d;
}

.bt-notify-section-icon.is-warning {
  background: rgba(245,158,11,.13);
  color: #92400e;
}

.bt-notify-section-icon.is-secondary {
  background: rgba(100,116,139,.10);
  color: #475569;
}

.bt-notify-list {
  display: grid;
  gap: .75rem;
  padding: 0 1rem 1rem;
}

.bt-notify-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .9rem;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.075);
  padding: .9rem;
}

.bt-notify-item.is-new {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-color: rgba(13,110,253,.20);
}

.bt-notify-item.is-read {
  background: #f8fafc;
}

.bt-notify-item-main {
  min-width: 0;
}

.bt-notify-item-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .3rem;
}

.bt-notify-item-title-row strong {
  color: #0f172a;
  font-weight: 950;
}

.bt-notify-new-badge {
  display: inline-flex;
  align-items: center;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(13,110,253,.09);
  color: #0d6efd;
  font-size: .74rem;
  font-weight: 900;
}

.bt-notify-message {
  color: #64748b;
  line-height: 1.55;
  margin-bottom: .55rem;
}

.bt-notify-time {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #94a3b8;
  font-size: .8rem;
  font-weight: 800;
}

.bt-notify-actions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bt-notify-empty {
  padding: 3rem 1rem;
  text-align: center;
}

.bt-notify-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.09);
  color: #0d6efd;
  font-size: 1.4rem;
  margin-bottom: .85rem;
}

.bt-notify-empty h2 {
  font-size: 1.25rem;
  font-weight: 950;
  color: #0f172a;
}

.bt-notify-empty p {
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .bt-notify-item {
    flex-direction: column;
  }

  .bt-notify-actions {
    justify-content: flex-start;
  }
}

/* Premium chronological notifications */
.bt-notifications-page {
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, .08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.bt-notify-timeline {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .10), inset 0 1px 0 rgba(255,255,255,.78);
}

.bt-notify-timeline-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bt-notify-timeline-head h2 {
  margin: 0 0 .15rem;
  color: #0f172a;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 950;
  letter-spacing: -.02em;
}

.bt-notify-timeline-head p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.bt-notify-timeline-head > span {
  flex: 0 0 auto;
  padding: .45rem .78rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: #1d4ed8;
  font-weight: 900;
}

.bt-notify-timeline .bt-notify-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.bt-notify-row {
  cursor: pointer;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  align-items: center;
  min-height: 112px;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(191, 219, 254, .82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .94));
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}

.bt-notify-row.is-new {
  border-color: rgba(37, 99, 235, .30);
  background:
    radial-gradient(circle at 0% 0%, rgba(37, 99, 235, .08), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8fbff);
}

.bt-notify-row.is-read {
  opacity: .74;
  border-color: rgba(148, 163, 184, .18);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .045);
}

.bt-notify-row.is-read .bt-notify-item-title-row strong,
.bt-notify-row.is-read .bt-notify-message {
  color: #64748b;
}

.bt-notify-row .bt-notify-status-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 18px;
  background: rgba(37, 99, 235, .08);
  color: #2563eb;
}

.bt-notify-row .bt-notify-status-icon.is-success {
  background: rgba(16, 185, 129, .10);
  color: #059669;
}

.bt-notify-row .bt-notify-status-icon.is-warning {
  background: rgba(245, 158, 11, .12);
  color: #d97706;
}

.bt-notify-row .bt-notify-status-icon.is-danger {
  background: rgba(239, 68, 68, .10);
  color: #dc2626;
}

.bt-notify-row .bt-notify-item-title-row {
  gap: .6rem;
}

.bt-notify-row .bt-notify-message {
  max-width: 760px;
}

.bt-notify-row .bt-notify-time {
  gap: .4rem;
  flex-wrap: wrap;
}

.bt-notify-row .bt-notify-time span + span::before {
  content: "";
  display: inline-block;
  width: .25rem;
  height: .25rem;
  margin: 0 .15rem .12rem;
  border-radius: 999px;
  background: currentColor;
  opacity: .45;
}

.bt-notify-row .bt-notify-mini-btn--open {
  min-height: 38px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, .18);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .08);
}

@media (max-width: 767.98px) {
  .bt-notify-timeline-head,
  .bt-notify-row {
    grid-template-columns: 1fr;
  }

  .bt-notify-timeline-head {
    align-items: flex-start;
    flex-direction: column;
  }
}



.bt-downloads-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-downloads-hero {
  border-radius: 30px;
  padding: 1.35rem;
  background: linear-gradient(135deg, #0f172a 0%, #172554 56%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(15,23,42,.20);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bt-downloads-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bt-downloads-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 950;
  letter-spacing: -.04em;
  margin: .75rem 0 .35rem;
}

.bt-downloads-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  margin: 0;
  line-height: 1.6;
}

.bt-downloads-hero-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.bt-downloads-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.bt-collection-rail {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding: .15rem .05rem .55rem;
  scrollbar-width: thin;
}

.bt-collection-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  max-width: 260px;
  padding: .55rem .8rem;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15,23,42,.055);
}

.bt-collection-pill:hover {
  color: #1d4ed8;
  border-color: rgba(37,99,235,.22);
  background: #eff6ff;
}

.bt-collection-pill.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  box-shadow: 0 16px 34px rgba(37,99,235,.20);
}

.bt-collection-pill span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bt-collection-pill strong {
  min-width: 26px;
  padding: .08rem .42rem;
  border-radius: 999px;
  background: rgba(15,23,42,.07);
  color: inherit;
  font-size: .74rem;
  text-align: center;
}

.bt-collection-pill.is-active strong {
  background: rgba(255,255,255,.18);
}

.bt-saved-opportunities-page {
  margin: -1rem -1rem 0;
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 4%, rgba(37,99,235,.07), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
  border-radius: 28px;
}

.bt-saved-opportunities-page .bt-social-layout {
  align-items: start;
}

.bt-saved-opportunities-page .bt-social-main {
  min-width: 0;
}

.bt-saved-opportunities-page .bt-downloads-hero {
  border-radius: 26px;
}

.bt-saved-opportunities-page .bt-downloads-card {
  border-radius: 22px;
}

.bt-saved-queue-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bt-saved-mini-stats {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .7rem;
  margin-left: 0;
}

.bt-saved-mini-stat {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-height: 34px;
  padding: .42rem .68rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #475569;
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
}

.bt-saved-mini-stat strong {
  color: #0f172a;
  font-weight: 950;
}

.bt-saved-mini-stat.is-success {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, .18);
  color: #047857;
}

.bt-saved-mini-stat.is-success strong {
  color: #047857;
}

.bt-saved-mini-stat.is-warning {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, .18);
  color: #c2410c;
}

.bt-saved-mini-stat.is-warning strong {
  color: #c2410c;
}

.bt-saved-opportunities-page .op-feed-card {
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bt-saved-opportunities-page .op-feed-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.bt-saved-opportunities-page .op-feed-media {
  display: grid;
  place-items: center;
  margin-inline: -.15rem;
  background:
    linear-gradient(135deg, rgba(248,250,252,.98), rgba(239,246,255,.85));
}

.bt-saved-opportunities-page .op-feed-media img,
.bt-saved-opportunities-page .op-feed-media video {
  width: 100%;
  height: clamp(220px, 24vw, 330px);
  object-fit: contain;
}

.bt-saved-opportunities-page .op-feed-footer {
  margin-top: auto;
}

.bt-saved-opportunities-page .op-feed-actions {
  gap: .48rem;
}

.bt-saved-opportunities-page .op-feed-btn,
.bt-saved-opportunities-page .op-collection-btn,
.bt-saved-opportunities-page .op-quick-comment-login {
  min-height: 38px;
}

.bt-saved-opportunities-page .op-card-comments {
  margin-top: .75rem;
}

.bt-saved-empty-suggestions {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
  text-align: left;
}

.bt-saved-empty-suggestions-intro {
  display: grid;
  gap: .2rem;
  justify-items: center;
  text-align: center;
}

.bt-saved-empty-suggestions-intro span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .38rem .72rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bt-saved-empty-suggestions-intro strong {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 950;
}

.bt-saved-empty-suggestion-block {
  display: grid;
  gap: .8rem;
}

.bt-saved-empty-suggestion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .3rem;
}

.bt-saved-empty-suggestion-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 950;
}

.bt-saved-empty-suggestion-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #475569;
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.bt-saved-opportunities-side {
  position: sticky;
  top: 112px;
}

@media (max-width: 991.98px) {
  .bt-saved-opportunities-page {
    margin: -.75rem -.75rem 0;
    padding: .75rem;
    border-radius: 22px;
  }

  .bt-saved-opportunities-page .op-feed-media img,
  .bt-saved-opportunities-page .op-feed-media video {
    height: clamp(210px, 58vw, 320px);
  }

  .bt-saved-queue-head {
    align-items: stretch;
    flex-direction: column;
  }

  .bt-saved-mini-stats {
    justify-content: flex-start;
    margin-left: 0;
  }

  .bt-saved-opportunities-side {
    position: static;
  }

  .bt-saved-empty-suggestion-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.bt-download-stat,
.bt-downloads-card,
.bt-downloads-empty,
.bt-download-mobile-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.075);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15,23,42,.055);
}

.bt-download-stat {
  padding: 1rem;
}

.bt-download-stat strong {
  display: block;
  color: #0f172a;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
}

.bt-download-stat span {
  display: block;
  color: #64748b;
  font-size: .84rem;
  font-weight: 850;
  margin-top: .35rem;
}

.bt-downloads-card {
  overflow: hidden;
}

.bt-downloads-card-head {
  padding: 1rem;
  border-bottom: 1px solid rgba(15,23,42,.075);
}

.bt-downloads-card-head h2 {
  font-size: 1.05rem;
  font-weight: 950;
  margin: 0 0 .15rem;
  color: #0f172a;
}

.bt-downloads-card-head p {
  color: #64748b;
  margin: 0;
  font-size: .9rem;
}

.bt-download-item {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.bt-download-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(13,110,253,.08);
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.bt-followed-shop-logo {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .07);
}

.bt-followed-shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .2rem;
  background: #fff;
}

.bt-followed-shop-logo span {
  line-height: 1;
  font-size: .9rem;
  font-weight: 950;
  color: #1d4ed8;
}

.bt-download-item-title {
  color: #0f172a;
  font-weight: 950;
}

.bt-download-item-meta,
.bt-download-muted,
.bt-download-kv span {
  color: #64748b;
  font-size: .82rem;
  font-weight: 700;
}

.bt-download-kv strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.bt-downloads-card-foot {
  padding: 1rem;
  border-top: 1px solid rgba(15,23,42,.075);
}

.bt-suggested-shop-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.bt-suggested-shop-chip {
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  padding: .28rem .72rem .28rem .32rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .18);
  background: linear-gradient(180deg, #ffffff, #eff6ff);
  color: #3730a3;
  font-size: .86rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 99, 235, .08);
}

.bt-suggested-shop-chip:hover {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, .30);
  background: #eff6ff;
}

.bt-suggested-shop-logo {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .20);
  color: #1d4ed8;
  font-size: .72rem;
  font-weight: 950;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .08);
}

.bt-suggested-shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .18rem;
  background: #fff;
}

.bt-suggested-shop-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bt-downloads-empty {
  padding: 3rem 1rem;
  text-align: center;
}

.bt-downloads-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.09);
  color: #0d6efd;
  font-size: 1.4rem;
  margin-bottom: .85rem;
}

.bt-downloads-empty h2 {
  font-size: 1.25rem;
  font-weight: 950;
  color: #0f172a;
}

.bt-downloads-empty p {
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
}

.bt-download-mobile-list {
  display: grid;
  gap: .85rem;
}

.bt-download-mobile-card {
  padding: 1rem;
}

.bt-followed-products-panel {
  clear: both;
}

.bt-followed-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.05rem;
}

.bt-followed-product-card {
  min-width: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .09);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.bt-followed-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .2);
  box-shadow: 0 26px 64px rgba(15, 23, 42, .14);
}

.bt-followed-product-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, #eef2ff, #ecfeff);
  color: #2563eb;
  font-size: 1.8rem;
  flex: 0 0 auto;
}

.bt-followed-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bt-followed-product-body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: .48rem;
  padding: 1rem;
}

.bt-followed-product-shop {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-width: 0;
  color: #64748b;
  font-size: .78rem;
  font-weight: 850;
}

.bt-followed-product-shop i {
  color: #2563eb;
}

.bt-followed-product-title {
  color: #0f172a;
  font-size: 1.06rem;
  font-weight: 950;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bt-followed-product-desc {
  min-height: 3.8rem;
  color: #64748b;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bt-followed-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid rgba(15, 23, 42, .06);
}

.bt-followed-product-foot strong {
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 950;
  white-space: nowrap;
}

.bt-followed-product-foot span {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  min-height: 38px;
  padding: .45rem .72rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, .08);
  border: 1px solid rgba(79, 70, 229, .14);
  color: #4f46e5;
  font-size: .82rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .bt-followed-product-card {
    min-height: 400px;
  }

  .bt-followed-product-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

.bt-download-mobile-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
}

.bt-download-mobile-actions {
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  .bt-downloads-stats {
    grid-template-columns: 1fr;
  }

  .bt-download-mobile-top {
    flex-direction: column;
  }
}

.bt-favorites-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-favorites-page .bt-social-main {
  min-width: 0;
}

.bt-favorites-side {
  position: sticky;
  top: 112px;
}

.bt-favorites-side .bt-suggested-shop-list,
.bt-favorite-type-list {
  display: grid;
  gap: .55rem;
}

.bt-favorite-type-list form {
  margin: 0;
}

.bt-favorite-type-list .op-sidebar-chip {
  width: 100%;
  border: 0;
  text-align: left;
}

@media (max-width: 1199.98px) {
  .bt-favorites-side {
    position: static;
  }
}

.bt-my-opportunities-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-my-opportunities-page .bt-social-main {
  min-width: 0;
}

.bt-my-opportunities-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 340px);
  gap: 1rem;
  align-items: stretch;
}

.bt-my-opportunities-hero-grid .bt-home-hero,
.bt-my-opportunities-hero-grid .bt-home-upgrade {
  min-height: 100%;
  margin-bottom: 0 !important;
}

.bt-my-opportunities-hero-grid .bt-home-upgrade {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bt-my-opportunities-page .bt-downloads-hero {
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, .13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(248,250,252,.94));
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
}

.bt-my-opportunities-page .bt-downloads-hero h1 {
  color: #0f172a;
  letter-spacing: 0;
}

.bt-my-opportunities-page .bt-downloads-stats,
.bt-my-opportunities-page .bt-downloads-card {
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .055);
}

.bt-my-opportunity-tabs .btn {
  min-height: 38px;
  padding-inline: .78rem;
  font-size: .82rem;
  font-weight: 850;
  box-shadow: none;
}

.bt-my-opportunity-tab-summary {
  margin-top: .9rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(15, 23, 42, .06);
}

.bt-my-opportunity-tab-summary-label {
  margin-bottom: .48rem;
  color: #64748b;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.bt-my-opportunity-mini-stats {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .45rem;
}

.bt-my-opportunity-mini-stat {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-height: 34px;
  padding: .42rem .68rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #475569;
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
}

.bt-my-opportunity-mini-stat strong {
  color: #0f172a;
  font-weight: 950;
}

.bt-my-opportunity-mini-stat.is-success {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, .18);
  color: #047857;
}

.bt-my-opportunity-mini-stat.is-success strong {
  color: #047857;
}

.bt-my-opportunity-mini-stat.is-info {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, .18);
  color: #1d4ed8;
}

.bt-my-opportunity-mini-stat.is-info strong {
  color: #1d4ed8;
}

.bt-my-opportunity-feed {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.bt-my-opportunity-content-grid {
  --bs-gutter-x: 1rem;
}

.bt-my-opportunity-middle {
  min-width: 0;
}

.bt-my-opportunity-right {
  min-width: 300px;
}

.bt-my-opportunity-side {
  position: sticky;
  top: 112px;
}

.bt-my-opportunities-page .op-feed-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .075);
}

.bt-my-opportunities-page .op-feed-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
}

.bt-my-opportunities-page .op-feed-mode-strip {
  margin-bottom: .72rem;
}

.bt-my-opportunities-page .op-feed-top {
  align-items: flex-start;
}

.bt-my-opportunities-page .op-feed-title {
  margin: .72rem 0 .75rem;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.28;
}

.bt-my-opportunities-page .op-feed-media {
  width: 100%;
  margin-bottom: .85rem;
  border-radius: 20px;
  background: #f8fafc;
}

.bt-my-opportunities-page .op-feed-media img,
.bt-my-opportunities-page .op-feed-media video {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.bt-my-opportunities-page .op-feed-description {
  margin-bottom: .8rem;
}

.bt-my-opportunities-page .op-feed-footer {
  margin-top: auto;
}

.bt-my-opportunities-page .op-feed-actions {
  width: 100%;
  gap: .48rem;
}

.bt-my-opportunities-page .op-feed-btn,
.bt-my-opportunities-page .op-collection-btn,
.bt-my-opportunities-page .op-quick-comment-login {
  min-height: 38px;
  border-radius: 999px;
  font-size: .82rem;
}

.bt-my-opportunities-page .op-discussion-btn {
  flex: 1 1 210px;
  justify-content: center;
}

.bt-my-opportunities-page .op-quick-comment-form,
.bt-my-opportunities-page .op-quick-comment-login {
  flex: 1 0 100%;
}

@media (max-width: 1199.98px) {
  .bt-my-opportunities-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bt-my-opportunity-right {
    min-width: 0;
  }

  .bt-my-opportunity-side {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .bt-my-opportunities-page .op-feed-card-body {
    padding: .82rem;
  }

}

.bt-location-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-location-hero {
  border-radius: 26px;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(13,110,253,.08),
    rgba(34,197,94,.08)
  );
  border: 1px solid rgba(13,110,253,.12);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.bt-location-hero h1 {
  font-size: 1.6rem;
  font-weight: 950;
  margin: .5rem 0 .25rem;
  color: #0f172a;
}

.bt-location-hero p {
  color: #64748b;
  margin: 0;
  max-width: 620px;
}


.bt-location-map-card {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,.075);
  background: #fff;
}

.bt-location-mini-map {
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: #eef2ff;
}

.bt-location-map-empty {
  min-height: 220px;
  border-radius: 20px;
  border: 1px dashed rgba(15,23,42,.18);
  background: #f8fafc;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: #64748b;
}

.bt-location-map-empty i {
  font-size: 2rem;
  color: #0d6efd;
}

.bt-location-map-empty strong {
  display: block;
  color: #0f172a;
  font-weight: 950;
}

.bt-orders-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-order-show-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

.bt-seller-upgrade-page {
  background: var(--bt-bg, #f6f8fc);
  min-height: calc(100vh - 86px);
}

/* user picture on the post area */

.bt-home-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #22c55e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}

.bt-home-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* stylying comments*/

.op-inline-comment {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  padding: .65rem .75rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.07);
}

.op-inline-comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.op-inline-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-inline-comment-content {
  flex: 1;
  min-width: 0;
}

.op-comment-reply-btn {
  border: none;
  background: transparent;
  padding: .25rem 0 0;
  color: #0d6efd;
  font-size: .78rem;
  font-weight: 900;
}

.op-inline-replies {
  margin-top: .5rem;
  display: grid;
  gap: .5rem;
  padding-left: .75rem;
  border-left: 2px solid rgba(13,110,253,.12);
}

.op-inline-comment-form.is-replying {
  padding: .65rem;
  border-radius: 16px;
  background: rgba(13,110,253,.06);
  border: 1px solid rgba(13,110,253,.12);
}

.op-comment-cancel-reply {
  border: none;
  background: transparent;
  color: #64748b;
  font-weight: 900;
  font-size: .78rem;
  margin-top: .45rem;
  padding: 0;
}
.op-inline-comment.is-reply {
  margin-left: 40px;
  opacity: 0.95;
}

.op-comment-time {
  display: inline-block;
  margin-left: .45rem;
  color: #94a3b8;
  font-size: .72rem;
  font-weight: 800;
}

.op-view-more-comments {
  display: inline-flex;
  margin-top: .65rem;
  color: #0d6efd;
  font-size: .82rem;
  font-weight: 900;
}

.op-view-more-comments:hover {
  text-decoration: underline;
}

.op-inline-comment.is-reply {
  margin-left: 34px;
  background: #fff;
}
.op-comment-like-form {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-right: .6rem;
}

.op-comment-reply-btn.is-liked {
  color: #0d6efd;
}

.op-comment-like-count {
  color: #94a3b8;
  font-size: .75rem;
  font-weight: 900;
}
.op-comment-delete-form {
  display: inline-flex;
  margin: 0;
}

.op-comment-delete-form {
  display: inline-flex;
  margin: 0;
}

.op-comments-empty {
  padding: .75rem;
  color: #94a3b8;
  font-size: .85rem;
  font-weight: 600;
}
.op-reply-inline-form {
  margin-top: .55rem;
  padding: .6rem;
  border-radius: 16px;
  background: rgba(13,110,253,.045);
  border: 1px solid rgba(13,110,253,.10);
}

.op-comment-body-text {
  color: #334155;
  line-height: 1.45;
}

/* Facebook-style opportunity comments */
.op-feed-card .op-card-comments {
  margin-top: .8rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(148, 163, 184, .16);
}

.op-feed-card .op-comment-toggle {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  min-height: 34px;
  padding: .28rem .45rem;
  border: 0;
  background: transparent;
  color: #334155;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.op-feed-card .op-comment-toggle::before {
  content: "View comments";
  font-size: .88rem;
}

.op-feed-card .op-comment-toggle.is-open::before {
  content: "Hide comments";
}

.op-feed-card .op-comment-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .16s ease;
}

.op-feed-card .op-comment-toggle.is-open::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.op-feed-card .op-comments-body {
  padding-top: .65rem;
}

.op-feed-card .op-comments-body > .op-inline-comment-form:first-child {
  display: none;
}

.op-feed-card .op-inline-comment-list,
.op-feed-card .op-comments-list {
  display: grid;
  gap: .55rem;
}

.op-feed-card .op-inline-comment {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #334155;
  font-size: .9rem;
}

.op-feed-card .op-inline-comment-avatar,
.op-feed-card .op-quick-comment-avatar,
.op-feed-card .op-popular-comment-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .10);
}

.op-feed-card .op-inline-comment-content {
  flex: 1 1 auto;
  min-width: 0;
  width: fit-content;
  max-width: min(100%, 680px);
}

.op-feed-card .op-inline-comment-content > .bt-profile-link,
.op-feed-card .op-inline-comment-content > strong,
.op-feed-card .op-inline-comment-content > .op-comment-body-text,
.op-feed-card .op-comment-time {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.op-feed-card .op-inline-comment-content > .bt-profile-link,
.op-feed-card .op-inline-comment-content > strong {
  padding: .55rem .78rem .12rem;
  border-radius: 18px 18px 0 0;
  background: #f1f5f9;
  color: #0f172a;
  font-size: .9rem;
  font-weight: 950;
  line-height: 1.2;
  text-decoration: none;
}

.op-feed-card .op-inline-comment-content > .bt-profile-link strong {
  margin: 0;
}

.op-feed-card .op-comment-body-text {
  min-width: 160px;
  margin: 0;
  padding: .12rem .78rem .58rem;
  border-radius: 0 18px 18px 18px;
  background: #f1f5f9;
  color: #334155;
  font-size: .91rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.op-feed-card .op-comment-time {
  margin: .22rem 0 0 .75rem;
  color: #94a3b8;
  font-size: .72rem;
  font-weight: 800;
}

.op-feed-card .op-comment-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin: .22rem 0 0 .75rem;
}

.op-feed-card .op-comment-like-form,
.op-feed-card .op-comment-delete-form {
  display: inline-flex;
  align-items: center;
  gap: .22rem;
  margin: 0;
}

.op-feed-card .op-comment-reply-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: #64748b;
  font-size: .76rem;
  font-weight: 950;
  line-height: 1.25;
}

.op-feed-card .op-comment-reply-btn:hover,
.op-feed-card .op-comment-reply-btn.is-liked {
  color: #1d4ed8;
  text-decoration: underline;
}

.op-feed-card .op-comment-like-count {
  color: #94a3b8;
  font-size: .74rem;
  font-weight: 900;
}

.op-feed-card .op-inline-replies {
  display: grid;
  gap: .5rem;
  margin: .55rem 0 0 1rem;
  padding-left: .9rem;
  border-left: 2px solid rgba(148, 163, 184, .24);
}

.op-feed-card .op-inline-comment.is-reply {
  margin-left: 0;
  opacity: 1;
  background: transparent;
}

.op-feed-card .op-inline-comment.is-reply .op-inline-comment-avatar {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}

.op-feed-card .op-reply-inline-form,
.op-feed-card .op-comment-edit-form {
  margin: .5rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.op-feed-card .op-comment-input-row {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: .35rem;
}

.op-feed-card .op-comment-input-row .form-control {
  min-height: 38px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: none;
}

.op-feed-card .op-comment-input-row .btn {
  min-height: 36px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
}

.op-feed-card .op-quick-comment-form {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  margin: .15rem 0 .1rem;
  padding: .48rem .52rem;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, .16);
  background: #f8fafc;
  box-shadow: none;
}

.op-feed-card .op-quick-comment-input {
  min-height: 40px;
  padding: 0 .35rem;
  border-radius: 999px;
  color: #0f172a;
}

.op-feed-card .op-quick-comment-submit {
  min-height: 38px;
  padding: 0 .88rem;
  border-radius: 999px;
  white-space: nowrap;
}

.op-feed-card .op-popular-comment {
  flex: 1 0 100%;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  width: 100%;
  margin: .15rem 0 .25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.op-feed-card .op-popular-comment-body {
  min-width: 0;
  max-width: min(100%, 680px);
}

.op-feed-card .op-popular-comment-name {
  width: fit-content;
  max-width: 100%;
  padding: .55rem .78rem .12rem;
  border-radius: 18px 18px 0 0;
  background: #f1f5f9;
  color: #0f172a;
  font-size: .9rem;
  font-weight: 950;
}

.op-feed-card .op-popular-comment-text {
  width: fit-content;
  min-width: 160px;
  max-width: 100%;
  margin: 0;
  padding: .12rem .78rem .58rem;
  border-radius: 0 18px 18px 18px;
  background: #f1f5f9;
  color: #334155;
}

.op-feed-card .op-popular-comment-actions {
  margin: .22rem 0 0 .75rem;
}

.op-feed-card .op-comments-empty {
  padding: .85rem .2rem .25rem;
  color: #94a3b8;
  font-size: .86rem;
  font-weight: 800;
}

.op-feed-card .op-view-more-comments {
  display: inline-flex;
  margin-top: .65rem;
  color: #1d4ed8;
  font-size: .82rem;
  font-weight: 950;
  text-decoration: none;
}

.op-feed-card .op-view-more-comments:hover {
  text-decoration: underline;
}

.op-comment-edit-form {
  margin-top: .55rem;
  padding: .6rem;
  border-radius: 16px;
  background: rgba(15,23,42,.035);
  border: 1px solid rgba(15,23,42,.08);
}

/*Buyer opportunity post upgrade css */

.op-composer-card {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 6px 24px rgba(15,23,42,.06);
}

.op-composer-top {
  display: flex;
  gap: .75rem;
}

.op-composer-avatar,
.op-create-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.op-composer-avatar img,
.op-create-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.op-composer-input-wrap {
  flex: 1;
  min-width: 0;
}

.op-composer-textarea {
  border-radius: 16px;
  resize: none;
  min-height: 44px;
  padding: .7rem .95rem;
}

.op-composer-preview {
  margin-top: .75rem;
}

.op-composer-preview img,
.op-composer-preview video {
  width: 100%;
  border-radius: 18px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.op-composer-actions {
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.op-composer-btn {
  cursor: pointer;
  font-weight: 800;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

#opComposerInsertedPost {
  animation: opComposerDrop .28s ease-out;
}

@keyframes opComposerDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ds-street-pulse {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 255, 255, .24), transparent 26%),
    radial-gradient(circle at 92% 92%, rgba(148, 163, 184, .16), transparent 30%),
    linear-gradient(135deg, #26344a 0%, #304258 52%, #385368 100%);
  color: #fff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .12);
}

.ds-street-pulse-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ds-street-pulse-kicker,
.ds-street-pulse-status {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ds-street-pulse h2 {
  margin: .25rem 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 900;
}

.ds-street-pulse-live-dot {
  width: .55rem;
  height: .55rem;
  border-radius: 999px;
  background: #9fb2c8;
  box-shadow: 0 0 0 .35rem rgba(159, 178, 200, .14);
}

.ds-street-pulse-viewport {
  height: 310px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.ds-street-pulse-track {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  will-change: transform;
}

.ds-street-pulse-track.is-looping {
  animation: dsStreetPulseLoop 30s linear infinite;
}

.ds-street-pulse:hover .ds-street-pulse-track.is-looping {
  animation-play-state: paused;
}

.ds-street-pulse-card {
  width: 100%;
  min-height: 108px;
  display: flex;
  gap: .85rem;
  padding: .9rem 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .26),
    inset 0 -1px 0 rgba(255, 255, 255, .08),
    0 12px 24px rgba(2, 6, 23, .12);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.ds-street-pulse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .2), transparent 36%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .18), transparent 32%);
  opacity: .72;
}

.ds-street-pulse-card::after {
  content: "";
  position: absolute;
  inset: auto 1.1rem .8rem 1.1rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
}

.ds-street-pulse-card > * {
  position: relative;
  z-index: 1;
}

.ds-street-pulse-icon {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.ds-street-pulse-meta {
  margin-bottom: .2rem;
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ds-street-pulse-title {
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(255, 255, 255, .08);
}

.ds-street-pulse-card p {
  margin: .38rem 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  line-height: 1.45;
  text-shadow: 0 1px 12px rgba(2, 6, 23, .22);
}

.ds-sidebar-for-you {
  padding: 1rem;
}

.ds-sidebar-for-you h2 {
  color: #0f172a;
  font-weight: 950;
  letter-spacing: 0;
}

.ds-sidebar-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.ds-sidebar-chip {
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .42rem .62rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, .22);
  background: #f8fafc;
  color: #334155;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.2;
}

.ds-sidebar-chip:hover {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, .28);
  background: #eff6ff;
}

.ds-sidebar-chip i {
  flex: 0 0 auto;
  color: #475569;
}

.ds-sidebar-shop-chip {
  padding: .26rem .62rem .26rem .3rem;
  gap: .45rem;
}

.ds-sidebar-shop-logo {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, .20);
  color: #1d4ed8;
  font-size: .7rem;
  font-weight: 950;
  box-shadow: 0 5px 12px rgba(15, 23, 42, .08);
}

.ds-sidebar-shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .16rem;
  background: #fff;
}

.ds-sidebar-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ds-street-direction-compact {
  padding: 1rem;
}

.ds-street-direction-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) minmax(120px, .65fr) minmax(120px, .65fr) minmax(150px, .75fr) auto auto;
  gap: .65rem;
  align-items: center;
}

.ds-street-direction-form .form-control,
.ds-street-direction-form .form-select {
  min-height: 46px;
  border-radius: 18px;
}

.ds-street-live {
  white-space: nowrap;
  color: #334155;
  font-weight: 700;
}

.ds-street-submit .btn {
  min-height: 46px;
  padding-inline: 1rem;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .ds-street-direction-form {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(110px, .55fr)) minmax(140px, .65fr);
  }

  .ds-street-live,
  .ds-street-submit {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ds-street-direction-form {
    grid-template-columns: 1fr;
  }

  .ds-street-live,
  .ds-street-submit {
    grid-column: auto;
  }

  .ds-street-submit .btn {
    width: 100%;
  }
}

@keyframes dsStreetPulseLoop {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  .ds-street-pulse {
    padding: 1rem;
    border-radius: 20px;
  }

  .ds-street-pulse-head {
    flex-direction: column;
  }
}

/* 
Additional css style for products
==========================================
*/
.bt-price-old {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: .92rem;
  font-weight: 700;
  margin-right: .35rem;
}

.bt-price-old-large {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .15rem;
}

.bt-price-current {
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

/* =========================================================
   BIZTOWERS MARKETPLACE MESSAGES
========================================================= */

.bt-message-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 1.4rem;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .14), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(241,245,249,.88));
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.bt-message-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, .1);
    color: #1d4ed8;
    font-size: .82rem;
    font-weight: 900;
    margin-bottom: .75rem;
}

.bt-message-hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 950;
    letter-spacing: -.04em;
    color: #0f172a;
}

.bt-message-hero p {
    margin: .45rem 0 0;
    max-width: 720px;
    color: #64748b;
    font-weight: 650;
}

.bt-message-empty {
    text-align: center;
    border-radius: 28px;
    padding: 3rem 1.5rem;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.bt-message-empty-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 18px 36px rgba(37, 99, 235, .22);
}

.bt-message-empty h2 {
    font-weight: 950;
    letter-spacing: -.03em;
    color: #0f172a;
}

.bt-message-empty p {
    color: #64748b;
    font-weight: 650;
}

.bt-message-list {
    display: grid;
    gap: .85rem;
}

.bt-message-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
    transition: all .22s ease;
}

.bt-message-row:hover {
    transform: translateY(-2px);
    color: inherit;
    border-color: rgba(37, 99, 235, .2);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .1);
}

.bt-message-row.is-unread {
    border-color: rgba(37, 99, 235, .34);
    background:
        linear-gradient(135deg, rgba(37,99,235,.08), rgba(255,255,255,.94));
}

.bt-message-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    color: #2563eb;
    font-size: 1.3rem;
}

.bt-message-row-main {
    min-width: 0;
}

.bt-message-row-top {
    display: flex;
    align-items: center;
    gap: .7rem;
    justify-content: space-between;
}

.bt-message-row-top strong {
    display: block;
    min-width: 0;
    font-size: 1rem;
    font-weight: 950;
    color: #0f172a;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bt-message-meta {
    margin-top: .2rem;
    color: #64748b;
    font-size: .82rem;
    font-weight: 750;
}

.bt-message-row-main p {
    margin: .35rem 0 0;
    color: #475569;
    font-size: .92rem;
    line-height: 1.45;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.bt-message-time {
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.bt-message-unread,
.bt-social-menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 .45rem;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: .72rem;
    font-weight: 950;
}

.bt-social-menu-badge {
    margin-left: auto;
}

.bt-thread-shell {
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.bt-thread-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    background: linear-gradient(135deg, rgba(248,250,252,.96), rgba(239,246,255,.84));
}

.bt-thread-title h1 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    font-weight: 950;
    letter-spacing: -.03em;
    color: #0f172a;
}

.bt-thread-title p {
    margin: .15rem 0 0;
    color: #64748b;
    font-weight: 700;
}

.bt-thread-context-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: center;
    margin: 1rem;
    padding: .9rem;
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.08));
    border: 1px solid rgba(37, 99, 235, .14);
}

.bt-thread-context-card:hover {
    color: inherit;
    border-color: rgba(37, 99, 235, .26);
}

.bt-thread-context-card > span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2563eb;
    font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .08);
}

.bt-thread-context-card strong {
    display: block;
    font-weight: 950;
    color: #0f172a;
}

.bt-thread-context-card p {
    margin: .15rem 0 0;
    color: #64748b;
    font-size: .9rem;
    font-weight: 650;
}

.bt-thread-messages {
    min-height: 360px;
    max-height: 620px;
    overflow-y: auto;
    padding: 1rem;
    display: grid;
    gap: .75rem;
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.04), transparent 24%),
        #f8fafc;
}

.bt-chat-bubble {
    display: flex;
}

.bt-chat-bubble.is-mine {
    justify-content: flex-end;
}

.bt-chat-bubble.is-theirs {
    justify-content: flex-start;
}

.bt-chat-bubble-inner {
    max-width: min(680px, 84%);
    padding: .85rem 1rem;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.bt-chat-bubble.is-mine .bt-chat-bubble-inner {
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #fff;
    border-bottom-right-radius: 8px;
}

.bt-chat-bubble.is-theirs .bt-chat-bubble-inner {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(148, 163, 184, .16);
    border-bottom-left-radius: 8px;
}

.bt-chat-sender {
    font-size: .76rem;
    font-weight: 950;
    margin-bottom: .25rem;
    opacity: .8;
}

.bt-chat-text {
    line-height: 1.55;
    font-weight: 600;
}

.bt-chat-time {
    margin-top: .45rem;
    font-size: .72rem;
    font-weight: 800;
    opacity: .68;
}

.bt-thread-compose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .8rem;
    align-items: end;
    padding: 1rem;
    border-top: 1px solid rgba(148, 163, 184, .14);
    background: rgba(255,255,255,.96);
}

.bt-thread-compose textarea,
.bt-message-start-card textarea {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, .28);
    padding: .9rem 1rem;
    resize: vertical;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.bt-thread-compose textarea:focus,
.bt-message-start-card textarea:focus {
    border-color: rgba(37, 99, 235, .42);
    outline: none;
    box-shadow: 0 0 0 .22rem rgba(37, 99, 235, .1);
}

.bt-thread-status {
    grid-column: 1 / -1;
    min-height: 1rem;
    color: #64748b;
    font-size: .82rem;
    font-weight: 700;
}

.bt-thread-status[data-tone="error"] {
    color: #dc2626;
}

.bt-thread-status[data-tone="muted"] {
    color: #64748b;
}

.bt-message-start-card {
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(148, 163, 184, .18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.bt-message-inline-form {
    display: inline-block;
}

@media (max-width: 768px) {
    .bt-message-row {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .bt-message-time {
        grid-column: 2;
    }

    .bt-thread-compose {
        grid-template-columns: 1fr;
    }

    .bt-chat-bubble-inner {
        max-width: 94%;
    }
}

/* Additional CSS for user profile*/

.bt-profile-avatar-xl {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 2rem;
    font-weight: 950;
    box-shadow: 0 18px 44px rgba(37, 99, 235, .22);
}

.bt-profile-avatar-xl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Warm welcome onboarding */
.bt-welcome-page {
    background: radial-gradient(circle at top left, rgba(14, 165, 233, .12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 58%);
    min-height: 78vh;
    padding: 2.2rem 0 3.5rem;
}

.bt-welcome-hero,
.bt-welcome-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 1.25rem;
    align-items: center;
}

.bt-welcome-intro {
    align-items: end;
    margin-bottom: 1.25rem;
}

.bt-welcome-hero h1,
.bt-welcome-intro h1 {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.04;
    font-weight: 950;
    letter-spacing: 0;
    margin: .5rem 0 1rem;
}

.bt-welcome-intro h1 {
    font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.bt-welcome-hero p,
.bt-welcome-intro p,
.bt-welcome-card p {
    color: #475569;
    font-weight: 650;
    line-height: 1.65;
    margin-bottom: 0;
}

.bt-welcome-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #2563eb;
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bt-welcome-card {
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(255, 255, 255, .88);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    padding: 1.25rem;
}

.bt-welcome-card h2 {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 950;
    letter-spacing: 0;
    margin: .8rem 0 .45rem;
}

.bt-welcome-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.45rem;
}

.bt-welcome-stepper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .5rem;
    margin-bottom: 1.4rem;
}

.bt-welcome-step {
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: rgba(255,255,255,.72);
    font-size: .8rem;
    font-weight: 900;
}

.bt-welcome-step.is-current {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
}

.bt-welcome-step.is-done {
    color: #047857;
    background: #ecfdf5;
    border-color: rgba(16, 185, 129, .26);
}

.bt-welcome-lane-grid,
.bt-welcome-reco-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.bt-welcome-lane-card,
.bt-welcome-goal-card {
    position: relative;
    min-height: 150px;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, .2);
    background: #fff;
    padding: 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.bt-welcome-goal-card {
    min-height: 112px;
    display: flex;
    align-items: end;
}

.bt-welcome-lane-card:hover,
.bt-welcome-goal-card:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, .36);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .09);
}

.bt-welcome-lane-card input,
.bt-welcome-goal-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bt-welcome-lane-card > .bi {
    color: #2563eb;
    font-size: 1.55rem;
}

.bt-welcome-lane-card strong,
.bt-welcome-goal-card strong {
    display: block;
    color: #0f172a;
    font-weight: 950;
    margin-top: .8rem;
}

.bt-welcome-lane-card small {
    display: block;
    color: #64748b;
    font-weight: 650;
    margin-top: .35rem;
    line-height: 1.45;
}

.bt-welcome-check {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    border: 1px solid rgba(148, 163, 184, .28);
    background: #fff;
}

.bt-welcome-lane-card input:checked ~ .bt-welcome-check,
.bt-welcome-goal-card input:checked ~ .bt-welcome-check {
    color: #fff;
    background: #16a34a;
    border-color: #16a34a;
}

.bt-welcome-lane-card:has(input:checked),
.bt-welcome-goal-card:has(input:checked) {
    border-color: rgba(22, 163, 74, .5);
    background: #f0fdf4;
}

.bt-welcome-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.bt-welcome-progress {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.bt-welcome-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb, #16a34a);
}

.bt-welcome-note {
    color: #64748b;
    font-weight: 700;
}

.bt-welcome-mini-list {
    display: grid;
    gap: .55rem;
    margin-top: .85rem;
}

.bt-welcome-mini-list a {
    display: grid;
    gap: .15rem;
    padding: .75rem;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
}

.bt-welcome-mini-list span {
    color: #64748b;
    font-size: .88rem;
    font-weight: 650;
}

.bt-welcome-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .85rem;
}

.bt-welcome-chip-list a {
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    padding: .48rem .8rem;
    font-weight: 850;
    text-decoration: none;
}

.bt-home-welcome-setup {
    border: 1px solid rgba(37, 99, 235, .18);
    background: linear-gradient(135deg, rgba(239, 246, 255, .92), rgba(255, 255, 255, .96));
}

.bt-home-welcome-personalized {
    background: #f8fafc;
}

@media (max-width: 992px) {
    .bt-welcome-hero,
    .bt-welcome-intro,
    .bt-welcome-reco-grid {
        grid-template-columns: 1fr;
    }

    .bt-welcome-lane-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bt-welcome-page {
        padding-top: 1.25rem;
    }

    .bt-welcome-stepper {
        grid-template-columns: repeat(5, 1fr);
        gap: .3rem;
    }

    .bt-welcome-step {
        height: 34px;
        font-size: .68rem;
    }

    .bt-welcome-lane-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   BizTowers Login Premium Refresh
========================================================= */
.bt-login-page {
    padding-top: clamp(1rem, 2.4vw, 2rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.bt-login-page .bt-auth-home-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.bt-login-page .bt-auth-home-shell {
    min-height: auto;
    align-items: center;
}

.bt-login-page .bt-auth-home-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 420px);
    gap: clamp(1.25rem, 3vw, 2rem);
}

.bt-login-page .bt-auth-left {
    min-width: 0;
}

.bt-login-page .bt-auth-title {
    margin-bottom: .8rem;
    color: var(--bt-ink);
    font-size: clamp(2.2rem, 4.8vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.bt-login-page .bt-auth-title span {
    color: var(--bt-primary);
}

.bt-login-page .bt-auth-sub {
    max-width: 630px;
    margin-bottom: 1rem;
    color: var(--bt-muted);
    font-size: clamp(.98rem, 1.5vw, 1.08rem);
    line-height: 1.58;
}

.bt-login-page .bt-auth-brand-pill {
    width: fit-content;
    margin-bottom: .9rem;
    border-color: rgba(37, 99, 235, .18);
    background: linear-gradient(135deg, rgba(239, 246, 255, .96), rgba(255, 251, 235, .9));
    color: var(--bt-primary);
    box-shadow: var(--bt-shadow-sm);
}

.bt-login-page .bt-auth-hero-card {
    padding: .65rem;
    border: 1px solid rgba(37, 99, 235, .14);
    border-radius: var(--bt-radius-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .88));
    box-shadow: var(--bt-shadow-lg);
}

.bt-login-page .bt-auth-hero-card img {
    max-height: 330px;
    object-fit: cover;
    object-position: center;
    border-radius: calc(var(--bt-radius-xl) - 8px);
}

.bt-login-page .bt-auth-mini {
    margin-top: .9rem;
    gap: .55rem;
}

.bt-login-page .bt-auth-mini-item {
    min-height: 40px;
    padding: .55rem .75rem;
    border: 1px solid rgba(37, 99, 235, .12);
    background: var(--bt-surface);
    color: var(--bt-ink);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.bt-login-page .bt-auth-right {
    display: grid;
    gap: .85rem;
    min-width: 0;
}

.bt-login-page .bt-auth-street-card,
.bt-login-page .bt-auth-card {
    border-radius: var(--bt-radius-xl);
    border: 1px solid var(--bt-line);
}

.bt-login-page .bt-auth-street-card {
    margin-bottom: 0;
    padding: 1rem;
    background:
        radial-gradient(circle at 88% 8%, rgba(37, 99, 235, .22), transparent 34%),
        linear-gradient(135deg, #081225, #122747 58%, #0f2740);
    color: #fff;
    box-shadow: var(--bt-shadow-md);
}

.bt-login-page .bt-auth-street-kicker {
    margin-bottom: .35rem;
    color: var(--bt-gold-2);
}

.bt-login-page .bt-auth-street-title {
    margin-bottom: .25rem;
    color: #fff;
    font-size: 1rem;
}

.bt-login-page .bt-auth-street-text {
    margin-bottom: .65rem;
    color: rgba(255, 255, 255, .76);
    font-size: .88rem;
    line-height: 1.45;
}

.bt-login-page .bt-auth-street-list {
    grid-template-columns: 1fr;
    gap: .35rem;
}

.bt-login-page .bt-auth-street-list li {
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
}

.bt-login-page .bt-auth-street-list i {
    color: var(--bt-gold-2);
}

.bt-login-page .bt-auth-card {
    padding: clamp(1.1rem, 2vw, 1.45rem);
    background:
        radial-gradient(circle at 92% 0%, rgba(37, 99, 235, .09), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(248, 250, 252, .97));
    box-shadow: var(--bt-shadow-lg);
}

.bt-login-page .bt-auth-card-title {
    color: var(--bt-ink);
    font-size: 1.32rem;
    line-height: 1.15;
}

.bt-login-page .bt-auth-card-sub {
    margin-top: .25rem;
    color: var(--bt-muted);
    font-size: .92rem;
    line-height: 1.45;
}

.bt-login-page .bt-auth-form .form-label {
    margin-bottom: .4rem;
    color: var(--bt-ink);
    font-weight: 800;
}

.bt-login-page .bt-auth-form .form-control {
    min-height: 48px;
    border: 1px solid var(--bt-line);
    border-radius: var(--bt-radius-md);
    background: var(--bt-surface);
    color: var(--bt-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

.bt-login-page .bt-auth-form .form-control:focus {
    border-color: rgba(37, 99, 235, .42);
    box-shadow: 0 0 0 .22rem rgba(37, 99, 235, .12);
}

.bt-login-page .bt-auth-login-btn {
    min-height: 50px;
    border: 0;
    border-radius: var(--bt-radius-md);
    background: linear-gradient(135deg, var(--bt-primary), var(--bt-accent));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(37, 99, 235, .25);
}

.bt-login-page .bt-auth-login-btn:hover,
.bt-login-page .bt-auth-login-btn:focus {
    background: linear-gradient(135deg, var(--bt-primary-700), var(--bt-primary));
    color: #fff;
    transform: translateY(-1px);
}

.bt-login-page .bt-auth-create-btn {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--bt-radius-md);
    font-weight: 900;
}

.bt-login-page .bt-auth-divider {
    margin: 1rem 0;
}

.bt-login-page .alert {
    border-radius: var(--bt-radius-md);
}

@media (max-width: 991.98px) {
    .bt-login-page {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .bt-login-page .bt-auth-home-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bt-login-page .bt-auth-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .bt-login-page .bt-auth-hero-card img {
        max-height: 260px;
    }

    .bt-login-page .bt-auth-right {
        gap: .75rem;
    }
}

@media (max-width: 575.98px) {
    .bt-login-page .bt-auth-street-card,
    .bt-login-page .bt-auth-card {
        padding: 1rem;
        border-radius: var(--bt-radius-lg);
    }

    .bt-login-page .bt-auth-mini {
        gap: .4rem;
    }

    .bt-login-page .bt-auth-card .d-flex {
        align-items: flex-start !important;
    }
}


/* CHAT UI hero section*/

.bt-chat-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.14), transparent 28%),
        linear-gradient(135deg, #071225, #102a5c 58%, #1d4ed8);
    box-shadow: 0 22px 52px rgba(15, 23, 42, .16);
}

.bt-chat-hero-main {
    min-width: 0;
}

.bt-chat-hero h1 {
    margin: .45rem 0 .35rem;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 950;
    letter-spacing: -.04em;
}

.bt-chat-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,.76);
    line-height: 1.55;
}

.bt-chat-hero-actions {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .bt-chat-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .bt-chat-hero-actions {
        justify-content: flex-start;
    }
}
/* End CHAT UI hero section*/

/* Public user profile */
.bt-user-profile-page {
    --bt-profile-ink: #0f172a;
    --bt-profile-muted: #64748b;
    --bt-profile-line: rgba(15, 23, 42, .08);
    --bt-profile-soft: rgba(241, 245, 249, .82);
}

.bt-public-profile-hero,
.bt-public-profile-panel,
.bt-public-profile-section {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bt-profile-line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.bt-public-profile-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 1rem;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.bt-public-profile-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--bt-profile-accent) 20%, transparent), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(239,246,255,.75));
    pointer-events: none;
}

.bt-public-profile-hero-main,
.bt-public-profile-stats,
.bt-public-profile-panel,
.bt-public-profile-section {
    z-index: 1;
}

.bt-public-profile-hero-main {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.bt-public-profile-avatar {
    width: 124px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 5px solid color-mix(in srgb, var(--bt-profile-accent) 28%, #ffffff);
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--bt-profile-accent), #0f172a);
    box-shadow: 0 16px 36px rgba(37, 99, 235, .18);
    font-size: 2.4rem;
    font-weight: 950;
}

.bt-public-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-public-profile-copy {
    min-width: 0;
}

.bt-public-profile-kicker,
.bt-public-profile-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    width: fit-content;
    padding: .38rem .72rem;
    border: 1px solid color-mix(in srgb, var(--bt-profile-accent) 18%, rgba(15,23,42,.08));
    border-radius: 999px;
    color: color-mix(in srgb, var(--bt-profile-accent) 80%, #0f172a);
    background: color-mix(in srgb, var(--bt-profile-accent) 9%, #ffffff);
    font-size: .76rem;
    font-weight: 950;
}

.bt-public-profile-copy h1 {
    margin: .55rem 0 .45rem;
    color: var(--bt-profile-ink);
    font-size: clamp(2rem, 4.8vw, 4rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: 0;
}

.bt-public-profile-copy p,
.bt-public-profile-panel p,
.bt-public-profile-section-head p {
    color: var(--bt-profile-muted);
    line-height: 1.58;
}

.bt-public-profile-copy p {
    max-width: 780px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.bt-public-profile-meta,
.bt-public-profile-actions,
.bt-public-profile-pills,
.bt-public-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.bt-public-profile-meta span,
.bt-public-profile-pills span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    min-height: 34px;
    padding: .42rem .68rem;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    color: #334155;
    background: rgba(255,255,255,.76);
    font-size: .82rem;
    font-weight: 850;
}

.bt-public-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 42px;
    padding: .62rem 1rem;
    border: 1px solid rgba(37,99,235,.18);
    border-radius: 999px;
    color: #1d4ed8;
    background: rgba(255,255,255,.82);
    font-weight: 900;
    text-decoration: none;
}

.bt-public-profile-btn.is-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--bt-profile-accent), #1d4ed8);
    box-shadow: 0 12px 26px color-mix(in srgb, var(--bt-profile-accent) 24%, transparent);
}

.bt-public-profile-btn:hover {
    color: #0f172a;
    transform: translateY(-1px);
}

.bt-public-profile-btn.is-primary:hover {
    color: #fff;
}

.bt-public-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .72rem;
    align-self: center;
}

.bt-public-profile-stats span {
    min-height: 100px;
    padding: 1rem;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
}

.bt-public-profile-stats strong,
.bt-public-profile-stats em {
    display: block;
}

.bt-public-profile-stats strong {
    color: var(--bt-profile-ink);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.bt-public-profile-stats em {
    margin-top: .35rem;
    color: var(--bt-profile-muted);
    font-style: normal;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bt-public-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.bt-public-profile-panel,
.bt-public-profile-section {
    padding: clamp(1rem, 1.8vw, 1.25rem);
}

.bt-public-profile-panel-head,
.bt-public-profile-section-head {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    margin-bottom: .9rem;
}

.bt-public-profile-panel-head > span {
    flex: 0 0 auto;
    width: 48px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #1d4ed8;
    background: #eaf2ff;
    font-size: 1.2rem;
}

.bt-public-profile-panel h2,
.bt-public-profile-section h2 {
    margin: 0;
    color: var(--bt-profile-ink);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 950;
}

.bt-public-profile-panel-head p,
.bt-public-profile-section-head p {
    margin: .18rem 0 0;
    font-size: .9rem;
}

.bt-public-profile-about {
    margin-bottom: .9rem;
}

.bt-public-profile-checklist {
    display: grid;
    gap: .55rem;
}

.bt-public-profile-checklist span {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-height: 40px;
    padding: .55rem .7rem;
    border-radius: 16px;
    color: #334155;
    background: var(--bt-profile-soft);
    font-weight: 850;
}

.bt-public-profile-checklist i {
    color: #16a34a;
}

.bt-public-shop-grid,
.bt-public-market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.bt-public-shop-card,
.bt-public-product-card,
.bt-public-signal-card {
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15,23,42,.055);
}

.bt-public-shop-cover {
    height: 86px;
    background:
        radial-gradient(circle at 72% 20%, rgba(37,99,235,.16), transparent 34%),
        linear-gradient(135deg, #0f172a, #1d4ed8);
    background-size: cover;
    background-position: center;
}

.bt-public-shop-body {
    padding: 1rem;
}

.bt-public-shop-top {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: .8rem;
    align-items: center;
    margin-top: -36px;
}

.bt-public-shop-logo {
    width: 60px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 18px;
    color: #1d4ed8;
    background: #eef5ff;
    box-shadow: 0 10px 22px rgba(15,23,42,.12);
}

.bt-public-shop-logo img,
.bt-public-favorite-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-public-shop-card h3 {
    margin: 2.2rem 0 .2rem;
    color: var(--bt-profile-ink);
    font-size: 1.1rem;
    font-weight: 950;
}

.bt-public-shop-card p {
    margin: 0;
    color: var(--bt-profile-muted);
    font-size: .9rem;
}

.bt-public-card-actions {
    margin-top: .9rem;
}

.bt-public-card-actions a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #1d4ed8;
    font-weight: 900;
    text-decoration: none;
}

.bt-public-product-card,
.bt-public-signal-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: .85rem;
    padding: .8rem;
    color: inherit;
    text-decoration: none;
}

.bt-public-product-image {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    color: #94a3b8;
    background: #eef2f7;
}

.bt-public-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-public-product-card em,
.bt-public-signal-card em,
.bt-public-favorite-list em {
    display: block;
    color: var(--bt-profile-muted);
    font-style: normal;
    font-size: .78rem;
    font-weight: 850;
}

.bt-public-product-card strong,
.bt-public-signal-card strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--bt-profile-ink);
    font-size: 1.02rem;
    font-weight: 950;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bt-public-product-card small {
    display: block;
    margin-top: .45rem;
    color: #1d4ed8;
    font-size: .9rem;
    font-weight: 950;
}

.bt-public-signal-card {
    grid-template-columns: 52px minmax(0, 1fr);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.bt-public-signal-card > span {
    width: 52px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #1d4ed8;
    background: #eaf2ff;
    font-size: 1.1rem;
}

.bt-public-signal-card small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: .3rem;
    color: var(--bt-profile-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bt-public-review-list,
.bt-public-favorite-list {
    display: grid;
    gap: .72rem;
}

.bt-public-review-list blockquote {
    margin: 0;
    padding: .85rem;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    background: rgba(248,250,252,.78);
}

.bt-public-review-list strong {
    display: block;
    color: var(--bt-profile-ink);
    font-weight: 950;
}

.bt-public-review-list p {
    margin: .35rem 0;
    font-size: .9rem;
}

.bt-public-review-list cite {
    color: #1d4ed8;
    font-style: normal;
    font-size: .8rem;
    font-weight: 900;
}

.bt-public-favorite-list a {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: .65rem;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.bt-public-favorite-list span {
    width: 44px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    color: #1d4ed8;
    background: #eaf2ff;
}

.bt-public-favorite-list strong {
    display: block;
    color: var(--bt-profile-ink);
    font-weight: 950;
}

.bt-public-profile-muted {
    color: var(--bt-profile-muted);
}

@media (max-width: 1199.98px) {
    .bt-public-profile-hero,
    .bt-public-profile-grid,
    .bt-public-shop-grid,
    .bt-public-market-grid {
        grid-template-columns: 1fr;
    }

    .bt-public-profile-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .bt-public-profile-hero-main {
        grid-template-columns: 1fr;
    }

    .bt-public-profile-avatar {
        width: 104px;
        border-radius: 24px;
    }

    .bt-public-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bt-public-product-card,
    .bt-public-signal-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .bt-public-profile-hero,
    .bt-public-profile-panel,
    .bt-public-profile-section {
        border-radius: 22px;
    }

    .bt-public-profile-stats span {
        min-height: 82px;
    }

    .bt-public-profile-stats strong {
        font-size: 1.55rem;
    }
}

/* Public user profile premium pass */
.bt-user-profile-page {
    --bt-profile-ink: #08111f;
    --bt-profile-muted: #60708a;
    --bt-profile-line: rgba(15, 23, 42, .10);
    --bt-profile-soft: #f4f7fb;
    background:
        linear-gradient(180deg, #f7f9fc 0%, #eef3f9 44%, #f8fafc 100%);
    margin: -1.5rem -1rem -1.5rem;
    min-height: calc(100vh - 86px);
}

.bt-user-profile-page > .container-fluid {
    max-width: 1780px;
    margin-inline: auto;
    padding-top: 2rem !important;
    padding-bottom: 2.25rem !important;
}

.bt-user-profile-page .bt-social-layout {
    grid-template-columns: minmax(218px, 250px) minmax(0, 1fr);
    gap: 1.35rem;
}

.bt-user-profile-page .bt-social-sidebar {
    top: 112px;
}

.bt-user-profile-page .bt-social-sidebar-card {
    border-color: rgba(15, 23, 42, .08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.bt-user-profile-page .bt-social-menu a {
    border-radius: 12px;
}

.bt-public-profile-hero,
.bt-public-profile-panel,
.bt-public-profile-section {
    border: 1px solid rgba(15, 23, 42, .085);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 56px rgba(15, 23, 42, .075);
}

.bt-public-profile-hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
    gap: clamp(1rem, 2.2vw, 2rem);
    padding: clamp(1.1rem, 2.3vw, 2rem);
    min-height: 0;
}

.bt-public-profile-hero-bg {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82) 0%, rgba(248, 250, 252, .9) 48%, rgba(236, 253, 245, .58) 100%),
        linear-gradient(90deg, color-mix(in srgb, var(--bt-profile-accent) 9%, transparent), transparent 58%);
}

.bt-public-profile-hero::after,
.bt-public-profile-panel::after,
.bt-public-profile-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.45), transparent 48%);
}

.bt-public-profile-hero > *,
.bt-public-profile-panel > *,
.bt-public-profile-section > * {
    position: relative;
    z-index: 1;
}

.bt-public-profile-hero-main {
    grid-template-columns: clamp(210px, 17vw, 250px) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
}

.bt-public-profile-avatar {
    width: 100%;
    height: clamp(230px, 18vw, 285px);
    min-height: 0;
    aspect-ratio: auto;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 18px;
    box-shadow:
        0 22px 44px rgba(15, 23, 42, .16),
        0 0 0 8px rgba(255, 255, 255, .72);
}

.bt-public-profile-kicker,
.bt-public-profile-eyebrow {
    min-height: 32px;
    padding: .38rem .72rem;
    border-color: color-mix(in srgb, var(--bt-profile-accent) 28%, rgba(15,23,42,.12));
    background: color-mix(in srgb, var(--bt-profile-accent) 8%, #ffffff);
    letter-spacing: 0;
}

.bt-public-profile-copy h1 {
    max-width: 720px;
    margin: .58rem 0 .48rem;
    font-size: clamp(2rem, 2.9vw, 3.35rem);
    line-height: 1;
}

.bt-public-profile-copy p {
    max-width: 760px;
    margin: .7rem 0 1.1rem;
    color: #5a6b85;
    font-size: clamp(.98rem, 1.2vw, 1.08rem);
}

.bt-public-profile-meta {
    gap: .45rem;
}

.bt-public-profile-meta span,
.bt-public-profile-pills span {
    min-width: 0;
    border-color: rgba(15, 23, 42, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .85) inset;
    color: #2f3d52;
    white-space: normal;
}

.bt-public-profile-actions {
    gap: .6rem;
}

.bt-public-profile-actions form {
    margin: 0;
}

.bt-public-profile-btn {
    min-height: 44px;
    border-radius: 12px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bt-public-profile-btn:not(.is-primary) {
    background: #ffffff;
}

.bt-public-profile-btn:hover {
    border-color: color-mix(in srgb, var(--bt-profile-accent) 30%, rgba(15,23,42,.12));
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.bt-public-profile-stats {
    gap: .8rem;
}

.bt-public-profile-stats span {
    min-height: 118px;
    padding: 1.1rem;
    border-color: rgba(15, 23, 42, .085);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.78));
    box-shadow: 0 12px 30px rgba(15, 23, 42, .055);
}

.bt-public-profile-stats strong {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    letter-spacing: 0;
}

.bt-public-profile-stats em {
    color: #52627a;
    letter-spacing: 0;
}

.bt-public-profile-grid {
    gap: 1rem;
}

.bt-public-profile-panel,
.bt-public-profile-section {
    padding: clamp(1.05rem, 2vw, 1.65rem);
}

.bt-public-profile-panel--discovery {
    grid-column: 1 / -1;
}

.bt-public-profile-panel-head,
.bt-public-profile-section-head {
    align-items: center;
    margin-bottom: 1rem;
}

.bt-public-profile-panel-head > span {
    width: 46px;
    border-radius: 14px;
    color: color-mix(in srgb, var(--bt-profile-accent) 86%, #0f172a);
    background: color-mix(in srgb, var(--bt-profile-accent) 10%, #f8fafc);
}

.bt-public-profile-panel h2,
.bt-public-profile-section h2 {
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    line-height: 1.08;
}

.bt-public-profile-about {
    color: #53647d;
    font-size: 1rem;
}

.bt-public-profile-checklist {
    gap: .65rem;
}

.bt-public-profile-checklist span {
    border: 1px solid rgba(15, 23, 42, .055);
    border-radius: 12px;
    background: #f4f7fb;
    color: #26354a;
}

.bt-public-shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 520px));
}

.bt-public-market-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.bt-public-shop-card,
.bt-public-product-card,
.bt-public-signal-card,
.bt-public-review-list blockquote {
    border-color: rgba(15, 23, 42, .085);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bt-public-shop-card:hover,
.bt-public-product-card:hover,
.bt-public-signal-card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--bt-profile-accent) 26%, rgba(15,23,42,.12));
    box-shadow: 0 20px 46px rgba(15, 23, 42, .09);
}

.bt-public-shop-cover {
    height: 124px;
    background:
        linear-gradient(135deg, #111827, #1d4ed8 62%, #0f766e);
    background-size: cover;
    background-position: center;
}

.bt-public-shop-body {
    padding: 1.15rem;
}

.bt-public-shop-top {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: .9rem;
    margin-top: -45px;
}

.bt-public-shop-logo {
    width: 68px;
    border-width: 5px;
    border-radius: 16px;
}

.bt-public-shop-card h3 {
    margin: 2.75rem 0 .16rem;
    font-size: 1.18rem;
    line-height: 1.12;
}

.bt-public-shop-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bt-public-card-actions a {
    color: color-mix(in srgb, var(--bt-profile-accent) 88%, #1d4ed8);
}

.bt-public-product-card,
.bt-public-signal-card {
    grid-template-columns: 126px minmax(0, 1fr);
    align-items: center;
    min-height: 150px;
    padding: .85rem;
}

.bt-public-product-card > span:last-child,
.bt-public-signal-card > span:last-child {
    min-width: 0;
}

.bt-public-product-image {
    border-radius: 14px;
}

.bt-public-product-card strong,
.bt-public-signal-card strong,
.bt-public-favorite-list strong {
    overflow-wrap: anywhere;
}

.bt-public-product-card small {
    color: color-mix(in srgb, var(--bt-profile-accent) 88%, #1d4ed8);
}

.bt-public-signal-card {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.bt-public-signal-card > span {
    width: 54px;
    border-radius: 14px;
    color: color-mix(in srgb, var(--bt-profile-accent) 86%, #0f172a);
    background: color-mix(in srgb, var(--bt-profile-accent) 10%, #f8fafc);
}

.bt-public-review-list blockquote {
    background: #f8fafc;
}

.bt-public-favorite-list a {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: .75rem;
    padding: .68rem;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 14px;
    background: #ffffff;
}

.bt-public-favorite-list span {
    width: 52px;
    border-radius: 12px;
}

.bt-public-favorite-list strong,
.bt-public-favorite-list em {
    grid-column: 2;
    min-width: 0;
}

.bt-public-favorite-list em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bt-public-profile-panel--discovery .bt-public-favorite-list {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: .85rem;
}

@media (max-width: 1399.98px) {
    .bt-user-profile-page .bt-social-layout {
        grid-template-columns: minmax(206px, 230px) minmax(0, 1fr);
    }

    .bt-public-profile-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .bt-public-profile-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .bt-user-profile-page {
        margin-inline: -.75rem;
    }

    .bt-user-profile-page .bt-social-layout {
        grid-template-columns: 1fr;
    }

    .bt-user-profile-page .bt-social-sidebar {
        position: static;
    }

    .bt-public-market-grid {
        grid-template-columns: 1fr;
    }

    .bt-public-profile-panel--discovery .bt-public-favorite-list {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 767.98px) {
    .bt-user-profile-page {
        margin: -1rem -.75rem;
    }

    .bt-public-profile-hero-main {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .bt-public-profile-avatar {
        width: min(100%, 220px);
        height: auto;
        min-height: 260px;
        aspect-ratio: 4 / 5;
        border-radius: 16px;
    }

    .bt-public-profile-copy h1 {
        font-size: clamp(1.85rem, 9vw, 2.75rem);
    }

    .bt-public-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bt-public-product-card,
    .bt-public-signal-card {
        grid-template-columns: 96px minmax(0, 1fr);
        min-height: 120px;
    }

    .bt-public-profile-panel--discovery .bt-public-favorite-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .bt-public-profile-hero,
    .bt-public-profile-panel,
    .bt-public-profile-section {
        border-radius: 14px;
    }

    .bt-public-profile-stats span {
        min-height: 96px;
        padding: .9rem;
    }

    .bt-public-product-card,
    .bt-public-signal-card {
        grid-template-columns: 1fr;
    }
}
/* 
More CSS for public display of trophies and achevements from competitions

----------------------------------------------------------------------------
 */
 
 .bt-achievement {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.bt-achievement-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 1.25rem;
    background: #fff7ed;
    color: #c2410c;
}

.bt-achievement-title {
    font-weight: 950;
    color: #0f172a;
    line-height: 1.2;
}

.bt-achievement-desc {
    margin-top: .25rem;
    font-size: .78rem;
    color: #64748b;
    line-height: 1.35;
}

.bt-achievement-meta {
    margin-top: .5rem;
    width: max-content;
    padding: .22rem .55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, .05);
    color: #475569;
    font-size: .72rem;
    font-weight: 900;
}

.bt-achievement--gold .bt-achievement-icon {
    background: #fffbeb;
    color: #b45309;
}

.bt-achievement--silver .bt-achievement-icon {
    background: #f8fafc;
    color: #64748b;
}

.bt-achievement--rose .bt-achievement-icon {
    background: #fff1f2;
    color: #be123c;
}

.bt-achievement--purple .bt-achievement-icon {
    background: #f5f3ff;
    color: #7c3aed;
}

.bt-achievement--blue .bt-achievement-icon {
    background: #eff6ff;
    color: #2563eb;
}

.bt-achievement--green .bt-achievement-icon {
    background: #ecfdf5;
    color: #047857;
}

.bt-business-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    width: max-content;
    max-width: 100%;
    padding: .28rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff7ed;
    color: #9a3412;
    font-size: .76rem;
    font-weight: 950;
    line-height: 1.15;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
}

.bt-business-badge i {
    font-size: .9rem;
    line-height: 1;
}

.bt-business-badge span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.bt-business-badge--gold {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    color: #92400e;
    border-color: rgba(217, 119, 6, .22);
}

.bt-business-badge--silver {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #475569;
    border-color: rgba(100, 116, 139, .22);
}

.bt-business-badge--purple {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: #6d28d9;
    border-color: rgba(124, 58, 237, .22);
}

.bt-business-badge--rose {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    color: #be123c;
    border-color: rgba(225, 29, 72, .2);
}

.bt-business-badge--blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1d4ed8;
    border-color: rgba(37, 99, 235, .2);
}

.bt-business-badge--green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #047857;
    border-color: rgba(5, 150, 105, .2);
}

/* Favorite Shops: recommended Business Type discovery rail */
.bt-business-type-discovery {
  min-width: 0;
  max-width: 100%;
}

.bt-business-type-discovery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .65rem;
}

.bt-business-type-discovery__header h3 {
  margin: 0;
  color: #475569;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.bt-business-type-discovery__header span {
  color: #94a3b8;
  font-size: 0;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.bt-business-type-discovery__header span::before {
  content: "Scroll to explore \2192";
  font-size: .68rem;
}

.bt-business-type-discovery__rail {
  display: flex;
  gap: 1.125rem;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .15rem 1.25rem .75rem .1rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-inline-start: .1rem;
  scroll-padding-inline-end: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: #2563eb #e8edf5;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.bt-business-type-discovery__rail::-webkit-scrollbar {
  height: 5px;
}

.bt-business-type-discovery__rail::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #e8edf5;
}

.bt-business-type-discovery__rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #2563eb;
}

.bt-business-type-discovery__rail::-webkit-scrollbar-thumb:hover {
  background: #1d4ed8;
}

.bt-business-type-discovery__rail:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .24);
  outline-offset: 3px;
  border-radius: 16px;
}

.bt-business-type-discovery__card {
  --bt-type-accent: #1d4ed8;
  flex: 0 0 232px;
  width: 232px;
  min-width: 0;
  display: grid;
  grid-template-rows: 108px minmax(0, 1fr);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .065);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bt-business-type-discovery__card:hover {
  transform: translateY(-3px);
  border-color: var(--bt-type-accent);
  color: #0f172a;
  box-shadow: 0 17px 34px rgba(15, 23, 42, .11);
}

.bt-business-type-discovery__card:focus-visible {
  outline: 3px solid var(--bt-type-accent);
  outline-offset: 3px;
  color: #0f172a;
}

.bt-business-type-discovery__media {
  position: relative;
  display: block;
  height: 108px;
  overflow: hidden;
  background: var(--bt-type-accent);
}

.bt-business-type-discovery__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, .17));
}

.bt-business-type-discovery__media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}

.bt-business-type-discovery__media img[hidden] {
  display: none;
}

.bt-business-type-discovery__card:hover .bt-business-type-discovery__media img {
  transform: scale(1.035);
}

.bt-business-type-discovery__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .22), transparent 29%),
    radial-gradient(circle at 84% 88%, rgba(255, 255, 255, .13), transparent 31%),
    linear-gradient(135deg, rgba(15, 23, 42, .72), transparent 72%),
    var(--bt-type-accent);
}

.bt-business-type-discovery__fallback::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 17px;
  transform: rotate(-4deg);
}

.bt-business-type-discovery__fallback i {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  filter: drop-shadow(0 8px 15px rgba(15, 23, 42, .24));
}

.bt-business-type-discovery__fallback b {
  position: absolute;
  z-index: 0;
  right: .55rem;
  bottom: .1rem;
  color: rgba(255, 255, 255, .11);
  font-size: 3.1rem;
  font-weight: 950;
  line-height: 1;
}

.bt-business-type-discovery__body {
  min-width: 0;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  padding: .82rem .85rem .78rem;
  border-top: 3px solid var(--bt-type-accent);
}

.bt-business-type-discovery__title {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #0f172a;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.25;
}

.bt-business-type-discovery__preview {
  display: -webkit-box;
  min-height: 2.7em;
  margin-top: .45rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #64748b;
  font-size: .76rem;
  line-height: 1.4;
}

.bt-business-type-discovery__footer {
  display: grid;
  gap: .52rem;
  margin-top: auto;
  padding-top: .75rem;
}

.bt-business-type-discovery__metrics {
  color: #64748b;
  font-size: .69rem;
  font-weight: 750;
  white-space: nowrap;
}

.bt-business-type-discovery__metrics i {
  margin-inline: .16rem;
  color: #cbd5e1;
  font-style: normal;
}

.bt-business-type-discovery__explore {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--bt-type-accent);
  font-size: .73rem;
  font-weight: 900;
}

.bt-business-type-discovery__explore i {
  transition: transform .2s ease;
}

.bt-business-type-discovery__card:hover .bt-business-type-discovery__explore i,
.bt-business-type-discovery__card:focus-visible .bt-business-type-discovery__explore i {
  transform: translateX(3px);
}

@media (max-width: 575.98px) {
  .bt-business-type-discovery__rail {
    gap: 1.125rem;
    margin-inline: -.15rem;
    padding-inline: .15rem 1.25rem;
    scroll-padding-inline-start: .15rem;
    scroll-padding-inline-end: 1.25rem;
  }

  .bt-business-type-discovery__card {
    flex-basis: min(78vw, 240px);
    width: min(78vw, 240px);
  }
}

@media (hover: none), (pointer: coarse) {
  .bt-business-type-discovery__header span::before {
    content: "Swipe to explore \2192";
  }
}

@media (prefers-reduced-motion: reduce) {
  .bt-business-type-discovery__rail {
    scroll-behavior: auto;
  }

  .bt-business-type-discovery__card,
  .bt-business-type-discovery__media img,
  .bt-business-type-discovery__explore i {
    transition: none;
  }

  .bt-business-type-discovery__card:hover,
  .bt-business-type-discovery__card:hover .bt-business-type-discovery__media img,
  .bt-business-type-discovery__card:hover .bt-business-type-discovery__explore i,
  .bt-business-type-discovery__card:focus-visible .bt-business-type-discovery__explore i {
    transform: none;
  }
}
