/* BufordCare Chatbot — Frontend Styles */
/* Matches the exact design language from the original HTML */

:root {
    --bcc-navy: #0D1B2A;
    --bcc-teal: #1B7A6E;
    --bcc-teal-light: #2AA89A;
    --bcc-teal-pale: #E6F5F3;
    --bcc-cream: #F9F7F4;
    --bcc-white: #FFFFFF;
    --bcc-gray-50: #F4F3F0;
    --bcc-gray-100: #E8E6E1;
    --bcc-gray-200: #CCC9C1;
    --bcc-gray-400: #9A9690;
    --bcc-gray-600: #6B6762;
    --bcc-gray-800: #3D3B38;
    --bcc-accent: #C5753A;
    --bcc-accent-pale: #FDF0E6;
    --bcc-danger: #C0392B;
    --bcc-danger-pale: #FEF0EE;
    --bcc-gold: #B8860B;
    --bcc-gold-pale: #FFFBEA;
    --bcc-font-display: 'DM Serif Display', Georgia, serif;
    --bcc-font-body: 'DM Sans', system-ui, sans-serif;
    --bcc-r-sm: 6px;
    --bcc-r-md: 12px;
    --bcc-r-lg: 18px;
    --bcc-sh-sm: 0 1px 3px rgba(0,0,0,.08);
    --bcc-sh-md: 0 4px 16px rgba(0,0,0,.10);
    --bcc-sh-lg: 0 8px 32px rgba(0,0,0,.18);
}

/* ── FAB BUTTON ── */
.bcc-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--bcc-teal);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: var(--bcc-sh-lg);
    z-index: 999998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.bcc-fab:hover {
    background: var(--bcc-teal-light);
    transform: scale(1.05);
}
.bcc-fab svg { width: 44px; height: 44px; transition: all 0.3s ease; stroke-width: 1.4; }
.bcc-fab .bcc-fab-close { width: 26px !important; height: 26px !important; stroke-width: 2.6; display: none; }
.bcc-fab.active .bcc-fab-icon { display: none; }
.bcc-fab.active .bcc-fab-close { display: block; }

/* ── FAB BUBBLE (popup prompt) ── */
.bcc-fab-bubble {
    position: fixed;
    bottom: 94px;
    right: 24px;
    background: var(--bcc-white);
    border: 1px solid var(--bcc-gray-100);
    border-radius: var(--bcc-r-md);
    padding: 13px 18px;
    box-shadow: var(--bcc-sh-md);
    z-index: 999997;
    font-family: var(--bcc-font-body);
    font-size: 14px;
    color: var(--bcc-navy);
    max-width: 280px;
    animation: bccBubbleIn 0.4s ease;
    cursor: pointer;
}
.bcc-fab-bubble-text { line-height: 1.5; }
.bcc-fab-bubble-close {
    display: none;
}
.bcc-fab-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 28px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bcc-white);
}
@keyframes bccBubbleIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── WIDGET CONTAINER ── */
.bcc-widget {
    font-family: var(--bcc-font-body);
    color: var(--bcc-navy);
    background: var(--bcc-white);
    border-radius: var(--bcc-r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--bcc-sh-lg);
}
.bcc-widget * { box-sizing: border-box; margin: 0; padding: 0; }

/* Floating mode */
.bcc-widget-floating {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 400px;
    max-height: calc(100vh - 120px);
    z-index: 999999;
    animation: bccSlideUp 0.3s ease;
}
@keyframes bccSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Inline / shortcode mode */
.bcc-widget-inline {
    width: 100%;
    max-width: 450px;
    height: 650px;
    margin: 0 auto;
    border: 1px solid var(--bcc-gray-100);
}

/* ── HEADER ── */
.bcc-widget-header {
    background: var(--bcc-navy);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.bcc-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bcc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bcc-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}
.bcc-avatar::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ADE80;
    border: 2px solid var(--bcc-navy);
}
.bcc-header-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.bcc-header-status {
    font-size: 11px;
    color: rgba(255,255,255,.5);
}
.bcc-header-actions {
    display: flex;
    gap: 6px;
}
.bcc-header-btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,.25) !important;
    color: rgba(255,255,255,.8) !important;
    background: transparent !important;
    cursor: pointer;
    transition: all 0.15s;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0;
    box-sizing: border-box !important;
    line-height: 1 !important;
    text-align: center !important;
}
.bcc-header-btn:hover {
    border-color: rgba(255,255,255,.55) !important;
    color: #fff !important;
    background: rgba(255,255,255,.12) !important;
}
.bcc-header-btn svg {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    flex-shrink: 0;
    stroke: rgba(255,255,255,.8);
    fill: none;
    pointer-events: none;
}
.bcc-header-btn:hover svg {
    stroke: #fff;
}
/* Minimize text dash */
.bcc-minimize {
    font-size: 18px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

/* ── PROGRESS BAR ── */
.bcc-progress-bar {
    height: 3px;
    background: var(--bcc-gray-100);
    flex-shrink: 0;
}
.bcc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bcc-teal), var(--bcc-teal-light));
    transition: width 0.4s ease;
    border-radius: 0 2px 2px 0;
}

/* Flow tabs removed */

/* ── MESSAGES AREA ── */
.bcc-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    scroll-behavior: smooth;
}
.bcc-messages::-webkit-scrollbar { width: 3px; }
.bcc-messages::-webkit-scrollbar-thumb { background: var(--bcc-gray-200); border-radius: 3px; }

/* ── MESSAGE BUBBLES ── */
.bcc-msg {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    animation: bccFadeUp 0.2s ease;
}
@keyframes bccFadeUp {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.bcc-msg.bot { flex-direction: row; }
.bcc-msg.user { flex-direction: row-reverse; }
.bcc-msg-av {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bcc-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.bcc-bubble {
    max-width: 84%;
    padding: 9px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.55;
}
.bcc-msg.bot .bcc-bubble {
    background: var(--bcc-gray-50);
    border-radius: 4px 16px 16px 16px;
    color: var(--bcc-navy);
}
.bcc-msg.user .bcc-bubble {
    background: var(--bcc-teal);
    border-radius: 16px 4px 16px 16px;
    color: #fff;
}
.bcc-bubble strong { font-weight: 600; }
.bcc-bubble a { color: var(--bcc-teal); }
.bcc-msg.user .bcc-bubble a { color: #fff; text-decoration: underline; }

/* ── TYPING INDICATOR ── */
.bcc-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 8px 12px;
}
.bcc-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bcc-gray-400);
    animation: bccBounce 0.9s infinite;
}
.bcc-typing span:nth-child(2) { animation-delay: 0.2s; }
.bcc-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bccBounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
}

/* ── QUICK REPLY BUTTONS ── */
.bcc-qr-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-left: 31px;
    padding-right: 4px;
}
.bcc-qr {
    font-size: 12.5px;
    font-weight: 550;
    padding: 5px 12px 5px 10px;
    border: 0.75px solid rgba(27,122,110,0.45);
    color: var(--bcc-teal);
    border-radius: 9px;
    background: var(--bcc-teal-pale);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.1s;
    font-family: var(--bcc-font-body);
    line-height: 1.25;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    white-space: nowrap;
}
.bcc-qr-icon {
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.bcc-qr-label {
    font-size: 12.5px;
    font-weight: 550;
    line-height: 1.25;
}
.bcc-qr:active { transform: scale(0.97); }
.bcc-qr:hover {
    background: var(--bcc-teal);
    color: #fff;
    border-color: var(--bcc-teal);
    box-shadow: 0 2px 6px rgba(27,122,110,.22);
}
.bcc-qr.sel { background: var(--bcc-teal); color: #fff; opacity: 0.55; cursor: default; pointer-events: none; }
.bcc-qr.gold { border-color: var(--bcc-accent); color: var(--bcc-accent); }
.bcc-qr.gold:hover { background: var(--bcc-accent); color: #fff; }
.bcc-qr.danger { border-color: var(--bcc-danger); color: var(--bcc-danger); }
.bcc-qr.danger:hover { background: var(--bcc-danger); color: #fff; }

/* ══ SYMPTOM CHECK — Direct-to-msgsEl layout, !important throughout to beat Medicora theme ══ */

/* Instruction line — direct child of .bcc-messages */
.bcc-sym-instr {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 2px 4px 4px 31px !important;
    padding: 0 !important;
    font-size: 11.5px !important;
    color: var(--bcc-gray-600) !important;
    font-family: var(--bcc-font-body) !important;
    font-style: italic !important;
    line-height: 1.45 !important;
    width: auto !important;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
}

/* Each symptom row — direct child of .bcc-messages (no wrapper div) */
.bcc-sym-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: calc(100% - 35px) !important;
    margin: 0 4px 0 31px !important;
    padding: 10px 12px 10px 10px !important;
    background: #fff !important;
    border: none !important;
    border-bottom: 1px solid var(--bcc-gray-100) !important;
    border-left: 3px solid transparent !important;
    border-right: 1px solid var(--bcc-gray-100) !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    text-align: left !important;
    font-family: var(--bcc-font-body) !important;
    box-sizing: border-box !important;
    transition: background 0.13s, border-color 0.13s !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    flex-shrink: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
}
/* First row: top border + rounded top corners */
.bcc-sym-first {
    border-top: 1px solid var(--bcc-gray-100) !important;
    border-radius: 8px 8px 0 0 !important;
}
/* Last row: no bottom separator + rounded bottom corners */
.bcc-sym-last {
    border-bottom: 1px solid var(--bcc-gray-100) !important;
    border-radius: 0 0 8px 8px !important;
}
.bcc-sym-row:hover {
    background: var(--bcc-gray-50) !important;
}
/* Selected state */
.bcc-sym-row.bcc-sym-on {
    background: var(--bcc-teal-pale) !important;
    border-left-color: var(--bcc-teal) !important;
}
.bcc-sym-row.bcc-sym-emergency.bcc-sym-on {
    background: var(--bcc-danger-pale) !important;
    border-left-color: var(--bcc-danger) !important;
}

/* Icon cell */
.bcc-sym-icon {
    font-size: 16px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    width: 22px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Label text */
.bcc-sym-label {
    flex: 1 !important;
    font-size: 13px !important;
    font-weight: 550 !important;
    color: var(--bcc-navy) !important;
    font-family: var(--bcc-font-body) !important;
    line-height: 1.3 !important;
    text-align: left !important;
    display: block !important;
}
.bcc-sym-row.bcc-sym-emergency .bcc-sym-label {
    color: var(--bcc-danger) !important;
}
.bcc-sym-row.bcc-sym-on .bcc-sym-label {
    color: var(--bcc-teal) !important;
    font-weight: 600 !important;
}
.bcc-sym-row.bcc-sym-emergency.bcc-sym-on .bcc-sym-label {
    color: var(--bcc-danger) !important;
}

/* Checkmark — hidden until selected */
.bcc-sym-tick {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--bcc-teal) !important;
    flex-shrink: 0 !important;
    visibility: hidden !important;
    width: 14px !important;
    text-align: center !important;
}
.bcc-sym-row.bcc-sym-on .bcc-sym-tick {
    visibility: visible !important;
}
.bcc-sym-row.bcc-sym-emergency.bcc-sym-on .bcc-sym-tick {
    color: var(--bcc-danger) !important;
}

/* Hint / count text — direct child of .bcc-messages */
.bcc-sym-hint {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 11px !important;
    color: var(--bcc-gray-400) !important;
    font-family: var(--bcc-font-body) !important;
    text-align: center !important;
    padding: 5px 0 3px !important;
    margin: 0 4px 3px 31px !important;
    width: calc(100% - 35px) !important;
    box-sizing: border-box !important;
    transition: color 0.15s !important;
    background: transparent !important;
    border: none !important;
}
.bcc-sym-hint-on {
    color: var(--bcc-teal) !important;
    font-weight: 600 !important;
}
.bcc-sym-hint-warn {
    color: var(--bcc-danger) !important;
    font-weight: 500 !important;
}

/* Get Recommendation button — direct child of .bcc-messages */
.bcc-sym-go-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: calc(100% - 35px) !important;
    padding: 10px 16px !important;
    margin: 0 4px 8px 31px !important;
    background: var(--bcc-teal) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    font-family: var(--bcc-font-body) !important;
    cursor: pointer !important;
    text-align: center !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-sizing: border-box !important;
    transition: background 0.15s !important;
    height: auto !important;
    line-height: 1.4 !important;
}
.bcc-sym-go-btn:hover { background: var(--bcc-teal-light) !important; }
.bcc-sym-go-btn:active { opacity: 0.9 !important; }
.bcc-sym-go-btn:disabled { opacity: 0.55 !important; cursor: not-allowed !important; }

/* ── FAQ — Two-state category navigator ── */

/* Outer container (appended once, mutated in-place) */
.bcc-faq-container {
    width: 100%;
    margin-left: 0;
    font-family: var(--bcc-font-body);
}

/* Each "screen" fills the container — only one visible at a time */
.bcc-faq-screen {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── State 1: Category buttons ── */
.bcc-faq-cat-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 2px 0 4px;
}
.bcc-faq-cat-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--bcc-font-body);
    color: var(--bcc-navy);
    background: var(--bcc-gray-50);
    border: 1px solid var(--bcc-gray-100);
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    position: relative;
}
.bcc-faq-cat-btn::after {
    content: '›';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--bcc-gray-400);
    font-weight: 300;
}
.bcc-faq-cat-btn:hover {
    background: var(--bcc-teal-pale);
    border-color: rgba(27,122,110,0.3);
    color: var(--bcc-teal);
}
.bcc-faq-cat-btn:hover::after { color: var(--bcc-teal); }

/* ── State 2: Q&A list ── */
.bcc-faq-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bcc-gray-100);
}
.bcc-faq-back,
.bcc-faq-home {
    font-size: 11.5px;
    font-weight: 500;
    font-family: var(--bcc-font-body);
    padding: 5px 11px;
    border-radius: 7px;
    border: 1px solid var(--bcc-gray-200);
    background: var(--bcc-white);
    color: var(--bcc-gray-600);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.bcc-faq-back:hover { border-color: var(--bcc-teal); color: var(--bcc-teal); background: var(--bcc-teal-pale); }
.bcc-faq-home:hover { border-color: var(--bcc-navy); color: var(--bcc-navy); background: var(--bcc-gray-50); }

.bcc-faq-cat-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--bcc-teal);
    margin-bottom: 10px;
}

.bcc-faq-qa-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bcc-faq-qa {
    padding: 11px 0;
    border-bottom: 1px solid var(--bcc-gray-100);
}
.bcc-faq-qa:last-child { border-bottom: none; }

.bcc-faq-question {
    font-size: 13px;
    font-weight: 600;
    color: var(--bcc-navy);
    margin-bottom: 5px;
    line-height: 1.4;
}
.bcc-faq-answer {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--bcc-gray-600);
    line-height: 1.65;
}

/* ── CHAT FORM ── */
.bcc-chat-form {
    padding: 10px 12px;
    background: var(--bcc-gray-50);
    border-radius: var(--bcc-r-md);
    margin-left: 31px;
    border: 1px solid var(--bcc-gray-100);
}
.bcc-chat-form .bcc-form-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--bcc-navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bcc-chat-form label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--bcc-gray-600);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bcc-chat-form input,
.bcc-chat-form select,
.bcc-chat-form textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    font-family: var(--bcc-font-body);
    border: 1px solid var(--bcc-gray-200);
    border-radius: var(--bcc-r-sm);
    background: #fff;
    color: var(--bcc-navy);
    margin-bottom: 8px;
    outline: none;
    transition: border-color 0.15s;
}
.bcc-chat-form textarea { resize: none; height: 60px; }
.bcc-chat-form input:focus,
.bcc-chat-form select:focus,
.bcc-chat-form textarea:focus {
    border-color: var(--bcc-teal);
}
.bcc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.bcc-chat-form .bcc-sbtn {
    width: 100%;
    padding: 10px;
    background: var(--bcc-teal);
    color: #fff;
    border: none;
    border-radius: var(--bcc-r-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 2px;
    font-family: var(--bcc-font-body);
}
.bcc-chat-form .bcc-sbtn:hover { background: var(--bcc-teal-light); }
.bcc-chat-form .bcc-sbtn:disabled { opacity: 0.5; cursor: not-allowed; }
.bcc-chat-form .bcc-skip {
    width: 100%;
    padding: 6px;
    background: transparent;
    color: var(--bcc-gray-400);
    border: none;
    font-size: 12px;
    cursor: pointer;
    margin-top: 3px;
    font-family: var(--bcc-font-body);
}

/* ── TIMESTAMP ── */
.bcc-timestamp {
    text-align: center;
    font-size: 10px;
    color: var(--bcc-gray-400);
    margin: 2px 0;
}

/* ══ RESPONSIVE ══ */

/* Small heights */
@media (max-height: 750px) {
    .bcc-widget-floating {
        bottom: 80px;
        max-height: calc(100vh - 100px);
    }
    .bcc-widget-header { padding: 10px 14px; }
    .bcc-avatar { width: 32px; height: 32px; font-size: 11px; }
}
@media (max-height: 600px) {
    .bcc-widget-floating {
        bottom: 12px;
        right: 12px;
        max-height: calc(100vh - 24px);
        border-radius: var(--bcc-r-md);
    }
    .bcc-fab { bottom: 12px; right: 12px; width: 54px; height: 54px; }
    .bcc-fab svg { width: 36px; height: 36px; }
    .bcc-fab-bubble { bottom: 72px; right: 12px; }
}

/* Small widths */
@media (max-width: 480px) {
    .bcc-widget-floating {
        width: calc(100vw - 16px);
        right: 8px;
        bottom: 80px;
        max-height: calc(100vh - 96px);
    }
    .bcc-fab { bottom: 16px; right: 16px; width: 60px; height: 60px; }
    .bcc-fab-bubble { right: 16px; bottom: 80px; max-width: 240px; font-size: 13px; }
    .bcc-bubble { max-width: 90%; font-size: 12px; }
    .bcc-qr { font-size: 11.5px; padding: 4px 10px 4px 8px; gap: 6px; }
    .bcc-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
    .bcc-widget-floating {
        width: 100vw;
        right: 0;
        bottom: 0;
        max-height: 100vh;
        border-radius: 0;
    }
    .bcc-fab { width: 54px; height: 54px; bottom: 12px; right: 12px; }
    .bcc-fab-bubble { display: none !important; }
    .bcc-messages { padding: 10px 8px; }
    .bcc-qr-wrap { padding-left: 0; }
}

/* ── POWERED BY FOOTER ── */
.bcc-widget-footer {
    flex-shrink: 0;
    padding: 6px 12px;
    text-align: center;
    border-top: 1px solid var(--bcc-gray-100);
    background: var(--bcc-white);
}
.bcc-widget-footer a {
    font-size: 10px;
    font-weight: 500;
    color: var(--bcc-gray-400);
    text-decoration: none;
    letter-spacing: 0.03em;
    font-family: var(--bcc-font-body);
    transition: color 0.15s;
}
.bcc-widget-footer a:hover { color: var(--bcc-teal); }
