/* /assets/css/build-booth.css — Chat 26N */

.bb-page { min-height: 60vh; padding: 2rem 0; }
.bb-container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

.bb-header { text-align: center; margin-bottom: 2rem; }
.bb-header h1 { font-size: 2.2rem; margin: 0 0 0.4rem; color: var(--text); }
.bb-subtitle { color: var(--text-2); max-width: 640px; margin: 0 auto; }

/* Gate (not logged in / no company email) */
.bb-gate {
    max-width: 540px; margin: 2rem auto; padding: 2rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; text-align: center;
}
.bb-gate h2 { margin-top: 0; font-size: 1.35rem; }
.bb-gate p { color: var(--text-2); margin-bottom: 1.25rem; }
.bb-gate-actions { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.bb-btn {
    display: inline-block; padding: 0.6rem 1.3rem; font-size: 0.95rem;
    font-weight: 600; border-radius: 8px; cursor: pointer; border: 1px solid transparent;
    text-decoration: none; transition: all 0.15s;
}
.bb-btn-primary { background: var(--accent, #60a5fa); color: #fff; border-color: var(--accent, #60a5fa); }
.bb-btn-primary:hover { background: var(--accent-hover, #3b82f6); }
.bb-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.bb-btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.bb-btn-secondary:hover { background: var(--bg-subtle); }

/* Layout */
.bb-layout {
    display: grid; grid-template-columns: 1fr 320px; gap: 2rem;
    align-items: start;
}

/* Steps */
.bb-step {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.5rem; margin-bottom: 1.25rem;
    transition: opacity 0.2s;
}
.bb-step.bb-step-locked { opacity: 0.45; pointer-events: none; }
.bb-step-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.bb-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--accent); color: #fff; font-weight: 700;
}
.bb-step-head h2 { margin: 0; font-size: 1.25rem; }
.bb-step-optional {
    font-size: 0.78rem; color: var(--text-3); font-weight: 500;
    padding: 0.2rem 0.6rem; background: var(--bg-subtle); border-radius: 12px;
}
.bb-step-note { color: var(--text-2); font-size: 0.88rem; margin: 0 0 1rem; }

/* Tier cards */
.bb-tier-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.9rem;
}
.bb-tier-card {
    background: var(--bg-subtle); border: 2px solid var(--border);
    border-radius: 10px; padding: 1.1rem; cursor: pointer;
    transition: all 0.15s; display: flex; flex-direction: column;
}
.bb-tier-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.bb-tier-card.selected { border-color: var(--accent); background: rgba(96,165,250,0.08); box-shadow: 0 4px 16px rgba(96,165,250,0.15); }
.bb-tier-title { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.bb-tier-price {
    font-size: 1.6rem; font-weight: 800; color: var(--accent);
    margin: 0.35rem 0 0.6rem; font-variant-numeric: tabular-nums;
}
.bb-tier-per { font-size: 0.85rem; color: var(--text-3); font-weight: 500; }
.bb-tier-breakdown {
    list-style: none; padding: 0; margin: 0 0 1rem; font-size: 0.82rem;
    color: var(--text-2);
}
.bb-tier-breakdown li { padding: 0.2rem 0; }
.bb-tier-btn {
    margin-top: auto; padding: 0.55rem; width: 100%;
    background: var(--accent); color: #fff; border: none;
    border-radius: 6px; font-weight: 600; cursor: pointer;
}
.bb-tier-card.selected .bb-tier-btn { background: #10b981; }
.bb-tier-card.selected .bb-tier-btn::before { content: '✓ '; }
.bb-tier-enterprise .bb-tier-price { font-size: 1.3rem; color: var(--text-2); }
.bb-tier-btn-quote { background: var(--text-2); }

/* Packs */
.bb-pack-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem; margin-bottom: 1rem;
}
.bb-pack-card {
    background: var(--bg-subtle); border: 2px solid var(--border);
    border-radius: 10px; padding: 1rem 0.6rem; cursor: pointer;
    text-align: center; transition: all 0.15s;
}
.bb-pack-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.bb-pack-card.selected { border-color: var(--accent); background: rgba(96,165,250,0.08); }
.bb-pack-qty { font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; }
.bb-pack-label { font-size: 0.75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin: 0.25rem 0 0.5rem; }
.bb-pack-price { font-size: 1rem; font-weight: 700; color: var(--accent); }
.bb-pack-per { font-size: 0.72rem; color: var(--text-3); margin-top: 0.2rem; }

.bb-skip-row { text-align: center; margin-top: 0.5rem; }
.bb-skip-btn {
    background: transparent; color: var(--text-2); border: 1px dashed var(--border);
    padding: 0.5rem 1rem; border-radius: 6px; cursor: pointer; font-size: 0.88rem;
}
.bb-skip-btn:hover { color: var(--text); border-color: var(--text-2); }
.bb-skip-warning {
    margin-top: 1rem; padding: 0.8rem 1rem;
    background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.4);
    border-radius: 8px; color: #d97706; font-size: 0.88rem;
}
.bb-skip-warning a { color: #b45309; font-weight: 600; text-decoration: underline; }

/* Addons */
.bb-addon-group { margin-bottom: 1.25rem; }
.bb-addon-group h3 { font-size: 0.95rem; color: var(--text); margin: 0 0 0.5rem; }
.bb-addon-list { display: flex; flex-direction: column; gap: 0.4rem; }
.bb-addon-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.75rem 0.9rem; background: var(--bg-subtle);
    border: 1px solid var(--border); border-radius: 8px;
    cursor: pointer; transition: all 0.15s;
}
.bb-addon-item:hover { border-color: var(--accent); }
.bb-addon-item input[type=checkbox] {
    width: 20px; height: 20px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0;
}
.bb-addon-info { flex: 1; }
.bb-addon-name { font-weight: 600; color: var(--text); }
.bb-addon-desc { font-size: 0.8rem; color: var(--text-3); margin-top: 0.15rem; }
.bb-addon-price { font-size: 0.9rem; color: var(--text-2); text-align: right; flex-shrink: 0; }
.bb-addon-price .annual { color: var(--accent); font-weight: 700; display: block; }
.bb-addon-price .monthly { font-size: 0.75rem; color: var(--text-3); display: block; }
.bb-addon-item.disabled { opacity: 0.5; cursor: not-allowed; }
.bb-addon-item.disabled::after {
    content: 'Requires higher tier';
    font-size: 0.72rem; color: var(--text-3);
    position: absolute; right: 0.9rem; bottom: 0.4rem;
}
.bb-addon-item.disabled { position: relative; }

/* Review banner */
.bb-review-banner {
    background: linear-gradient(135deg, rgba(96,165,250,0.12), rgba(167,139,250,0.12));
    border: 1px solid rgba(96,165,250,0.3);
    border-radius: 12px; padding: 1.5rem; display: flex;
    align-items: center; justify-content: space-between; gap: 1rem;
    flex-wrap: wrap;
}
.bb-review-banner h2 { margin: 0; font-size: 1.35rem; }
.bb-review-banner p { margin: 0.2rem 0 0; color: var(--text-2); }
.bb-review-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* Summary sidebar */
.bb-summary-col { position: relative; }
.bb-summary-sticky {
    position: sticky; top: 20px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 1.25rem;
}
.bb-summary-sticky h3 { margin: 0 0 0.8rem; font-size: 1.05rem; }
.bb-summary-empty { color: var(--text-3); font-size: 0.88rem; font-style: italic; }
.bb-summary-lines { list-style: none; padding: 0; margin: 0; }
.bb-summary-lines li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.5rem 0; border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.bb-summary-lines li span { color: var(--text-2); padding-right: 0.5rem; }
.bb-summary-lines li strong { color: var(--text); font-variant-numeric: tabular-nums; white-space: nowrap; }
.bb-summary-lines li.muted span, .bb-summary-lines li.muted strong { color: var(--text-3); font-style: italic; }
.bb-summary-total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.8rem 0 0.4rem; margin-top: 0.4rem;
    border-top: 2px solid var(--border); font-size: 1rem;
}
.bb-summary-total strong {
    font-size: 1.3rem; color: var(--accent); font-variant-numeric: tabular-nums;
}

/* Enterprise modal */
.bb-modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    padding: 1rem;
}
.bb-modal {
    background: var(--surface); color: var(--text);
    border-radius: 12px; width: 100%; max-width: 520px;
    max-height: 95vh; overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.bb-modal-head {
    padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border);
}
.bb-modal-head h2 { margin: 0; font-size: 1.15rem; }
.bb-modal-head button {
    background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-2);
}
.bb-modal form { padding: 1.25rem 1.5rem; }
.bb-modal form p { color: var(--text-2); margin: 0 0 1rem; font-size: 0.9rem; }
.bb-modal form label {
    display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-2);
    margin-bottom: 0.6rem;
}
.bb-modal form input, .bb-modal form select, .bb-modal form textarea {
    width: 100%; padding: 0.5rem 0.75rem; font-size: 0.95rem; box-sizing: border-box;
    background: var(--bg-subtle); color: var(--text);
    border: 1px solid var(--border); border-radius: 6px;
    margin-top: 0.25rem; font-family: inherit;
}
.bb-modal form input:focus, .bb-modal form select:focus, .bb-modal form textarea:focus {
    outline: none; border-color: var(--accent);
}
.bb-modal-foot {
    display: flex; justify-content: flex-end; gap: 0.6rem; padding-top: 1rem;
    border-top: 1px solid var(--border); margin-top: 1rem;
}

/* Mobile */
@media (max-width: 900px) {
    .bb-layout { grid-template-columns: 1fr; }
    .bb-summary-sticky { position: static; }
    .bb-tier-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .bb-tier-grid { grid-template-columns: 1fr; }
    .bb-header h1 { font-size: 1.6rem; }
    .bb-review-banner { flex-direction: column; align-items: stretch; }
}

/* ===== Chat 26N additions ===== */

/* Helper button */
.bb-helper-row {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    flex-wrap: wrap; margin-bottom: 1rem;
}
.bb-helper-row .bb-step-note { margin: 0; flex: 1; min-width: 250px; }
.bb-help-btn {
    padding: 0.55rem 1.1rem; font-size: 0.88rem; font-weight: 600;
    background: rgba(96,165,250,0.12); color: var(--accent, #60a5fa);
    border: 1px solid rgba(96,165,250,0.4); border-radius: 8px;
    cursor: pointer; white-space: nowrap;
}
.bb-help-btn:hover { background: rgba(96,165,250,0.2); }

/* Recommendation note banner */
.bb-recommendation-note {
    padding: 0.8rem 1rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(96,165,250,0.12));
    border: 1px solid rgba(16,185,129,0.35); border-radius: 8px;
    font-size: 0.9rem; color: var(--text);
}
.bb-recommendation-note a { color: var(--text-3); font-size: 0.82rem; margin-left: 0.5rem; }

/* Tier card: differentiator list */
.bb-tier-breakdown-small {
    font-size: 0.78rem; color: var(--text-3);
    margin-bottom: 0.8rem; padding-bottom: 0.6rem;
    border-bottom: 1px dashed var(--border);
}
.bb-tier-features {
    list-style: none; padding: 0; margin: 0 0 1rem;
    font-size: 0.82rem; color: var(--text-2);
}
.bb-tier-features li {
    padding: 0.2rem 0 0.2rem 1.1rem; position: relative;
}
.bb-tier-features li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent, #60a5fa); font-weight: 700;
}
.bb-tier-card.bb-recommended {
    box-shadow: 0 4px 24px rgba(16,185,129,0.3);
    border-color: #10b981 !important;
}
.bb-tier-card .bb-recommend-badge {
    position: absolute; top: -10px; right: 1rem;
    background: #10b981; color: #fff;
    padding: 0.25rem 0.7rem; border-radius: 12px;
    font-size: 0.72rem; font-weight: 700;
}
.bb-tier-card { position: relative; }

/* Helper modal Q layout */
.bb-modal-wide { max-width: 640px; }
.bb-q { margin-bottom: 1.2rem; }
.bb-q > label:first-child {
    display: block; font-weight: 700; font-size: 0.95rem;
    color: var(--text); margin-bottom: 0.5rem;
}
.bb-q-options { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bb-q-options-vertical { flex-direction: column; }
.bb-q-options label {
    display: flex; align-items: center; gap: 0.55rem;
    padding: 0.6rem 0.9rem; background: var(--bg-subtle);
    border: 1px solid var(--border); border-radius: 6px;
    cursor: pointer; font-size: 0.88rem; margin: 0 !important; font-weight: 500 !important;
    transition: all 0.15s; flex: 0 0 auto;
    line-height: 1.3;
}
.bb-q-options label input[type=radio] {
    margin: 0; flex-shrink: 0; width: 16px; height: 16px;
}
.bb-q-options-vertical label { justify-content: flex-start; text-align: left; }
.bb-q-options-vertical label { flex: 1 1 100%; }
.bb-q-options label:hover { border-color: var(--accent); }
.bb-q-options label:has(input:checked) {
    background: rgba(96,165,250,0.12);
    border-color: var(--accent); color: var(--text);
}
.bb-q-options label input { accent-color: var(--accent); margin-right: 0.3rem; }

/* Sticky summary — account for navbar height (~70px) and add breathing room */
.bb-summary-sticky {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

/* Feature sections within tier card */
.bb-feature-section { margin-bottom: 0.8rem; }
.bb-feature-label {
    font-size: 0.75rem; font-weight: 700; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem;
}
.bb-feature-section:last-of-type { margin-bottom: 1rem; }
.bb-feature-section .bb-tier-features { margin: 0; }

/* Sticky summary fix — force it to actually stick */
.bb-layout { align-items: flex-start; }
.bb-summary-col { position: sticky; top: 90px; align-self: flex-start; }
.bb-summary-sticky {
    position: static;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

/* Pack card holder — shows price only after tier is picked */
.bb-pack-price-holder { min-height: 38px; display: flex; flex-direction: column; justify-content: center; }
.bb-pack-price-placeholder {
    font-size: 0.72rem; color: var(--text-3); font-style: italic;
}
.bb-included {
    color: #10b981 !important; font-weight: 600;
}
.bb-included::before { content: '' !important; }

/* Hall position cards */
.bb-hall-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.8rem; margin-bottom: 1rem;
}
.bb-hall-card {
    background: var(--bg-subtle); border: 2px solid var(--border);
    border-radius: 10px; padding: 1rem; cursor: pointer;
    display: flex; flex-direction: column; gap: 0.5rem;
    transition: all 0.15s;
}
.bb-hall-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.bb-hall-card.selected { border-color: var(--accent); background: rgba(96,165,250,0.08); box-shadow: 0 4px 14px rgba(96,165,250,0.18); }
.bb-hall-card.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

.bb-hall-premium {
    background: linear-gradient(145deg, rgba(251,191,36,0.08), var(--bg-subtle));
    border-color: rgba(251,191,36,0.35);
}
.bb-hall-premium:hover { border-color: #f59e0b; }

.bb-hall-head { display: flex; justify-content: space-between; align-items: baseline; }
.bb-hall-name { font-weight: 700; color: var(--text); font-size: 0.98rem; }
.bb-hall-traffic {
    font-size: 0.72rem; background: rgba(16,185,129,0.15); color: #059669;
    padding: 0.15rem 0.45rem; border-radius: 10px; font-weight: 600;
}
.bb-hall-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.4; flex: 1; }
.bb-hall-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px dashed var(--border); }
.bb-hall-price { font-weight: 700; color: var(--accent); font-size: 1rem; }
.bb-hall-price-free { font-weight: 600; color: var(--text-3); font-size: 0.88rem; }
.bb-hall-cap { font-size: 0.72rem; color: var(--text-3); }
.bb-hall-note-small { font-size: 0.78rem; color: var(--text-3); margin: 0.5rem 0 0; }

/* Auto-assigned default banner */
.bb-hall-default {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem; margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(96,165,250,0.08));
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 10px;
}
.bb-hall-default-icon { font-size: 1.8rem; flex-shrink: 0; }
.bb-hall-default-info { flex: 1; }
.bb-hall-default-label {
    font-size: 0.72rem; color: var(--text-3);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem;
}
.bb-hall-default-name { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.bb-hall-default-desc { font-size: 0.82rem; color: var(--text-2); margin-top: 0.2rem; }
.bb-hall-default-meta { text-align: right; flex-shrink: 0; }
.bb-hall-default-traffic {
    font-size: 0.75rem; background: rgba(16,185,129,0.2); color: #059669;
    padding: 0.2rem 0.55rem; border-radius: 10px; font-weight: 600; display: inline-block;
    margin-bottom: 0.3rem;
}
.bb-hall-default-price { font-weight: 700; color: #10b981; }

/* Upgrades label */
.bb-hall-upgrades-label {
    font-size: 0.85rem; font-weight: 600; color: var(--text-2);
    margin: 0 0 0.6rem; display: flex; align-items: center; gap: 0.5rem;
}
.bb-premium-badge {
    font-size: 0.68rem; padding: 0.15rem 0.55rem;
    background: rgba(251,191,36,0.2); color: #b45309;
    border-radius: 10px; font-weight: 700; letter-spacing: 0.03em;
}

/* Lock overlay on disabled upgrade cards */
.bb-hall-card.bb-hall-premium { position: relative; }
.bb-hall-lock-overlay {
    display: none;
    position: absolute; inset: 0;
    background: rgba(15,23,42,0.82);
    color: #fff; font-weight: 600;
    align-items: center; justify-content: center;
    border-radius: 10px; backdrop-filter: blur(2px);
}
.bb-hall-card.disabled .bb-hall-lock-overlay { display: flex; }
.bb-hall-card.disabled { pointer-events: auto; cursor: not-allowed; }

/* ==========================================
   Step 5 — Boost Visibility (banners)
   Chat 26N Pass C
   ========================================== */
.bb-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}
.bb-banner-card {
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.15s;
}
.bb-banner-card:hover { border-color: var(--accent); }
.bb-banner-card.selected { border-color: #10b981; background: rgba(16,185,129,0.06); }
.bb-banner-tier-tag {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    color: #fff;
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.55rem;
    border-radius: 10px;
}
.bb-banner-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    padding-right: 4rem;
}
.bb-banner-meta { font-size: 0.76rem; color: var(--text-3); }
.bb-banner-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.3rem;
    flex-wrap: wrap;
}
.bb-banner-billing {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.15rem;
}
.bb-banner-billing input[type=radio] { display: none; }
.bb-banner-billing label {
    padding: 0.25rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    border-radius: 4px;
}
.bb-banner-billing input[type=radio]:checked + label {
    background: var(--accent);
    color: #fff;
}
.bb-banner-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
    font-variant-numeric: tabular-nums;
    flex: 1;
}
.bb-banner-price span {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
}
.bb-banner-btn {
    padding: 0.4rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.bb-banner-btn.added { background: #10b981; }
.bb-banner-btn.added::before { content: '✓ '; }
.bb-banner-footer {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px dashed var(--border);
    text-align: center;
}
.bb-link-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.92rem;
}
.bb-link-btn:hover { text-decoration: underline; }

/* Step 5 — banner hero callout */
.bb-banner-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.10), rgba(251,191,36,0.18));
    border: 1.5px solid rgba(245,158,11,0.35);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 0.8rem 0 1.25rem;
    position: relative;
}
.bb-banner-hero-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.bb-banner-hero-text { flex: 1; min-width: 0; }
.bb-banner-hero-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.bb-banner-hero-sub {
    font-size: 0.86rem;
    color: var(--text-2);
}
.bb-banner-hero-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 3px 10px rgba(245,158,11,0.35);
    animation: bb-pulse 2.5s ease-in-out infinite;
}
@keyframes bb-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

@media (max-width: 700px) {
    .bb-banner-hero { flex-wrap: wrap; }
    .bb-banner-hero-badge { order: -1; }
}

/* Step 5 — single "Browse banners" CTA (Option A) */
.bb-banner-cta-wrap {
    margin-top: 0.8rem;
    text-align: center;
}
.bb-banner-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245,158,11,0.35);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.bb-banner-browse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245,158,11,0.45);
    color: #fff;
}
.bb-browse-arrow { font-size: 1.2rem; }
.bb-banner-cta-sub {
    margin-top: 0.6rem;
    color: var(--text-3);
    font-size: 0.84rem;
}

/* Summary remove (×) button */
.bb-sum-remove {
    background: transparent;
    border: none;
    color: var(--text-3);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.5rem;
    cursor: pointer;
    padding: 0 0.3rem;
    border-radius: 4px;
    transition: all 0.15s;
    vertical-align: middle;
}
.bb-sum-remove:hover {
    color: #dc2626;
    background: rgba(220,38,38,0.1);
}

/* Sticky-summary CTA button */
.bb-summary-checkout-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover, #3b82f6));
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(96,165,250,0.35);
    transition: all 0.2s;
}
.bb-summary-checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(96,165,250,0.45);
}
.bb-summary-checkout-btn:disabled {
    background: var(--border);
    color: var(--text-3);
    cursor: not-allowed;
    box-shadow: none;
}
.bb-summary-note {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: var(--text-3);
    text-align: center;
    font-style: italic;
}

/* Compare all tiers link */
.bb-compare-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-2);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    margin-left: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    transition: all 0.15s;
}
.bb-compare-link:hover {
    background: var(--bg-subtle);
    color: var(--accent);
}
