/* ============================================================
   FAQ Chat Bubble — Front v2
   Specificity strategy:
   · All bare-element selectors (input, button, svg, a…) are
     scoped under .fcb-widget to beat Hello Elementor's reset
     without a single !important.
   · @layer fcb declares a low-priority layer for base resets
     so our own component rules always win inside the widget.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── 1. Declare our layer (lowest priority outside, highest inside) */
@layer fcb {

/* ── 2. Hard reset for EVERY element inside the widget ─────────── */
.fcb-widget,
.fcb-widget *,
.fcb-widget *::before,
.fcb-widget *::after {
    all: revert-layer;          /* undo layer-level styles         */
    box-sizing: border-box;
    font-family: var(--fcb-font, 'DM Sans', ui-sans-serif, system-ui, sans-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── 3. CSS custom properties & widget root ────────────────────── */
.fcb-widget {
    --fcb-primary:      #1267d8;
    --fcb-primary-dark: #0a50b0;
    --fcb-primary-rgb:  18, 103, 216;
    --fcb-text:         #0f1623;
    --fcb-text-2:       #4a5568;
    --fcb-muted:        #8796ae;
    --fcb-line:         rgba(0,0,0,.07);
    --fcb-surface:      #ffffff;
    --fcb-soft:         #f7f9fc;
    --fcb-bubble-r:     26px;
    --fcb-panel-r:      20px;
    --fcb-font:         'DM Sans', ui-sans-serif, system-ui, sans-serif;

    position: fixed;
    bottom: 90px;
    z-index: 99999;
    font-family: var(--fcb-font);
    line-height: normal;
    color: var(--fcb-text);
}

.fcb-position-right { right: 28px; }
.fcb-position-left  { left:  28px; }

/* ── 4. SVG baseline (reset fills/strokes so inline SVGs behave) */
.fcb-widget svg {
    display: block;
    overflow: visible;
    fill: none;
    stroke: none;
    vertical-align: middle;
}

/* ── 5. Bubble trigger ─────────────────────────────────────────── */
.fcb-widget .fcb-bubble {
    display: inline-flex !important;
    align-items: center;
    gap: 11px;
    min-height: 56px !important;
    border: 0 !important;
    border-radius: var(--fcb-bubble-r) !important;
    padding: 10px 22px 10px 10px !important;
    margin: 0 !important;
    color: #fff !important;
    background: var(--fcb-primary) !important;
    box-shadow:
        0 4px 6px -1px  rgba(var(--fcb-primary-rgb), .3),
        0 12px 28px -4px rgba(var(--fcb-primary-rgb), .45),
        inset 0 1px 0   rgba(255,255,255,.18) !important;
    cursor: pointer !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: -.015em;
    text-decoration: none;
    transition: transform .22s cubic-bezier(.34,1.56,.64,1),
                box-shadow .22s ease !important;
    position: relative;
    overflow: hidden !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.fcb-widget .fcb-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
    pointer-events: none;
}

.fcb-widget .fcb-bubble:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 6px 10px -2px  rgba(var(--fcb-primary-rgb), .35),
        0 18px 40px -6px rgba(var(--fcb-primary-rgb), .5),
        inset 0 1px 0    rgba(255,255,255,.22);
}

.fcb-widget .fcb-bubble:active { transform: translateY(0) scale(.98); }

.fcb-widget .fcb-bubble:focus-visible,
.fcb-widget .fcb-close:focus-visible,
.fcb-widget .fcb-question:focus-visible,
.fcb-widget .fcb-back:focus-visible {
    outline: 2.5px solid rgba(var(--fcb-primary-rgb), .5);
    outline-offset: 3px;
}

/* Bubble icon circle */
.fcb-widget .fcb-bubble-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.fcb-widget .fcb-bubble:hover .fcb-bubble-icon {
    transform: rotate(-8deg) scale(1.08);
}

.fcb-widget .fcb-bubble-icon svg {
    width: 17px;
    height: 17px;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── 6. Chat panel ─────────────────────────────────────────────── */
.fcb-widget .fcb-chat-panel {
    display: block;               /* override any hidden-attr reset  */
    position: absolute;
    bottom: 72px;
    width: min(400px, calc(100vw - 32px));
    background: var(--fcb-surface);
    border-radius: var(--fcb-panel-r);
    border: 1px solid var(--fcb-line);
    box-shadow:
        0 0 0 1px rgba(0,0,0,.04),
        0 8px 16px -4px rgba(0,0,0,.08),
        0 32px 80px -8px rgba(0,0,0,.2);
    overflow: hidden;
    transform-origin: bottom right;
    animation: fcb-panel-in .28s cubic-bezier(.34,1.3,.64,1) both;
    color: var(--fcb-text);
}

.fcb-widget .fcb-chat-panel[hidden] { display: none; }

.fcb-position-right .fcb-widget .fcb-chat-panel,
.fcb-widget.fcb-position-right .fcb-chat-panel { right: 0; }

.fcb-position-left .fcb-widget .fcb-chat-panel,
.fcb-widget.fcb-position-left .fcb-chat-panel  { left: 0; transform-origin: bottom left; }

/* ── 7. Header ─────────────────────────────────────────────────── */
.fcb-widget .fcb-chat-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 18px 18px 18px 20px;
    background: var(--fcb-primary);
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 0;
}

.fcb-widget .fcb-chat-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}

.fcb-widget .fcb-chat-header::after {
    content: '';
    position: absolute;
    top: 20px; right: 20px;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}

/* ── 8. Avatars ────────────────────────────────────────────────── */
.fcb-widget .fcb-agent-avatar {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,.2);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,.25);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.fcb-widget .fcb-agent-avatar svg {
    width: 22px; height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fcb-widget .fcb-mini-avatar {
    width: 30px; height: 30px;
    border-radius: 9px;
    background: var(--fcb-primary);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.fcb-widget .fcb-mini-avatar svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── 9. Header text ────────────────────────────────────────────── */
.fcb-widget .fcb-chat-header-info {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.fcb-widget .fcb-chat-header strong {
    display: block;
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: -.02em;
}

.fcb-widget .fcb-chat-header-sub {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: rgba(255,255,255,.75);
    font-size: 12.5px;
    font-weight: 400;
}

.fcb-widget .fcb-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 2px rgba(74,222,128,.25);
    flex-shrink: 0;
    animation: fcb-pulse 2.4s ease infinite;
    display: inline-block;
}

/* ── 10. Close button ──────────────────────────────────────────── */
.fcb-widget .fcb-close {
    position: relative;
    z-index: 1;
    width: 32px; height: 32px;
    border: 0;
    border-radius: 9px;
    background: rgba(255,255,255,.14);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    transition: background .18s ease, transform .18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.fcb-widget .fcb-close:hover {
    background: rgba(255,255,255,.24);
    transform: scale(1.05);
}

.fcb-widget .fcb-close svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
}

/* ── 11. Body ──────────────────────────────────────────────────── */
.fcb-widget .fcb-chat-body {
    max-height: min(520px, calc(100vh - 180px));
    overflow-y: auto;
    padding: 18px;
    background: var(--fcb-soft);
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.12) transparent;
}

.fcb-widget .fcb-chat-body::-webkit-scrollbar        { width: 4px; }
.fcb-widget .fcb-chat-body::-webkit-scrollbar-track  { background: transparent; }
.fcb-widget .fcb-chat-body::-webkit-scrollbar-thumb  { background: rgba(0,0,0,.12); border-radius: 4px; }

.fcb-widget .fcb-view { animation: fcb-view-in .2s ease both; }
.fcb-widget .fcb-view[hidden] { display: none; }

/* ── 12. Agent message row ─────────────────────────────────────── */
.fcb-widget .fcb-agent-row {
    display: grid;
    grid-template-columns: 30px minmax(0,1fr);
    gap: 10px;
    align-items: end;
    margin-bottom: 14px;
}

.fcb-widget .fcb-agent-message,
.fcb-widget .fcb-user-message {
    border-radius: 14px;
    padding: 12px 15px;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.fcb-widget .fcb-agent-message {
    background: #fff;
    color: var(--fcb-text);
    border: 1px solid var(--fcb-line);
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 10px rgba(0,0,0,.03);
    white-space: pre-line;
    border-bottom-left-radius: 4px;
}

.fcb-widget .fcb-user-message {
    width: fit-content;
    max-width: 84%;
    margin: 0 0 14px auto;
    background: var(--fcb-primary);
    color: #fff;
    font-weight: 500;
    box-shadow:
        0 2px 6px  rgba(var(--fcb-primary-rgb), .25),
        0 8px 20px rgba(var(--fcb-primary-rgb), .2);
    border-bottom-right-radius: 4px;
}

/* ── 13. Links as buttons ──────────────────────────────────────── */
.fcb-widget .fcb-agent-message a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 9px;
    background: rgba(var(--fcb-primary-rgb), .08);
    color: var(--fcb-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -.01em;
    border: 1.5px solid rgba(var(--fcb-primary-rgb), .15);
    transition: background .18s ease, border-color .18s ease,
                transform .18s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
}

.fcb-widget .fcb-agent-message a::after {
    content: '';
    display: inline-block;
    width: 13px; height: 13px;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}

.fcb-widget .fcb-agent-message a[target="_blank"]::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
}

.fcb-widget .fcb-agent-message a:hover {
    background: rgba(var(--fcb-primary-rgb), .13);
    border-color: rgba(var(--fcb-primary-rgb), .35);
    transform: translateY(-1px);
}

.fcb-widget .fcb-agent-message a:hover::after { transform: translateX(3px); }
.fcb-widget .fcb-agent-message a + a { margin-left: 6px; }

/* ── 14. Question list ─────────────────────────────────────────── */
.fcb-widget .fcb-question-list {
    display: grid;
    gap: 8px;
    margin-top: 2px;
    padding: 0;
    list-style: none;
}

.fcb-widget .fcb-question {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    width: 100% !important;
    min-height: 50px;
    border: 1.5px solid transparent !important;
    border-radius: 13px !important;
    padding: 12px 14px !important;
    margin: 0 !important;
    background: #fff !important;
    color: var(--fcb-text) !important;
    cursor: pointer !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    letter-spacing: -.01em;
    text-align: left !important;
    box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 10px rgba(0,0,0,.03) !important;
    transition:
        border-color .2s ease,
        transform .2s cubic-bezier(.34,1.56,.64,1),
        box-shadow .2s ease !important;
    -webkit-appearance: none;
    appearance: none;
}

.fcb-widget .fcb-question-text { flex: 1; overflow-wrap: anywhere; }

.fcb-widget .fcb-question-arrow {
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(var(--fcb-primary-rgb), .07);
    color: var(--fcb-primary);
    flex-shrink: 0;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .2s ease;
}

.fcb-widget .fcb-question-arrow svg {
    width: 13px; height: 13px !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.fcb-widget .fcb-question:hover {
    border-color: rgba(var(--fcb-primary-rgb), .3) !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,.06), 0 10px 24px rgba(0,0,0,.07) !important;
}

.fcb-widget .fcb-question:hover .fcb-question-arrow {
    transform: translateX(2px) !important;
    background: rgba(var(--fcb-primary-rgb), .13) !important;
}

.fcb-widget .fcb-question:active { transform: translateY(0) !important; }

/* ── 15. Back button ───────────────────────────────────────────── */
.fcb-widget .fcb-back {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    margin: 0 0 14px !important;
    border: 0;
    background: transparent;
    color: var(--fcb-primary) !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: -.01em;
    padding: 4px 8px 4px 2px !important;
    border-radius: 7px !important;
    transition: background .18s ease, transform .18s ease;
    -webkit-appearance: none !important;
    appearance: none;
}

.fcb-widget .fcb-back:hover {
    background: rgba(var(--fcb-primary-rgb), .07);
    transform: translateX(-2px);
}

.fcb-widget .fcb-back svg {
    width: 14px; height: 14px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ── 16. Typing indicator ──────────────────────────────────────── */
.fcb-widget .fcb-typing {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    margin: 0 0 14px 40px;
    background: #fff;
    border: 1px solid var(--fcb-line);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    padding: 13px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.fcb-widget .fcb-typing[hidden] { display: none; }

.fcb-widget .fcb-typing span {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--fcb-muted);
    animation: fcb-dot 1.1s infinite ease-in-out;
    padding: 0; margin: 0;
}

.fcb-widget .fcb-typing span:nth-child(2) { animation-delay: .15s; }
.fcb-widget .fcb-typing span:nth-child(3) { animation-delay: .30s; }

/* ── 17. Footer ────────────────────────────────────────────────── */
.fcb-widget .fcb-chat-footer {
    padding: 10px 18px 14px;
    text-align: center;
    background: var(--fcb-soft);
    border-top: 1px solid var(--fcb-line);
}

.fcb-widget .fcb-chat-footer span {
    font-size: 11px;
    color: var(--fcb-muted);
    letter-spacing: .01em;
}

/* ── 18. Inline forms ──────────────────────────────────────────── */
.fcb-widget .fcb-inline-form {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.fcb-widget .fcb-form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fcb-widget .fcb-form-field label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--fcb-text-2);
    letter-spacing: .02em;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    cursor: default;
    background: transparent;
    border: 0;
}

.fcb-widget .fcb-form-field input,
.fcb-widget .fcb-form-field textarea,
.fcb-widget .fcb-form-field select {
    display: block;
    width: 100%;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--fcb-text);
    background: var(--fcb-soft);
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 10px 13px;
    margin: 0;
    outline: none;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    -webkit-appearance: none;
    appearance: none;
    resize: none;
    line-height: 1.5;
    /* Undo common theme resets */
    min-height: unset;
    max-width: 100%;
    float: none;
}

.fcb-widget .fcb-form-field input:focus,
.fcb-widget .fcb-form-field textarea:focus,
.fcb-widget .fcb-form-field select:focus {
    border-color: var(--fcb-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--fcb-primary-rgb), .1);
    outline: none;
}

.fcb-widget .fcb-form-field input::placeholder,
.fcb-widget .fcb-form-field textarea::placeholder {
    color: var(--fcb-muted);
    font-weight: 400;
    opacity: 1; /* Firefox sets .54 by default */
}

.fcb-widget .fcb-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 2px;
    padding: 11px 18px;
    border: 0;
    border-radius: 10px;
    background: var(--fcb-primary);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(var(--fcb-primary-rgb), .3);
    transition: background .18s ease,
                transform .2s cubic-bezier(.34,1.56,.64,1),
                box-shadow .18s ease;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    text-decoration: none;
    /* Undo WP / Elementor button resets */
    min-height: unset;
    text-transform: none;
    text-shadow: none;
}

.fcb-widget .fcb-form-submit::after {
    content: '';
    width: 14px; height: 14px;
    background-color: #fff;
    flex-shrink: 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E");
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    transition: transform .18s cubic-bezier(.34,1.56,.64,1);
}

.fcb-widget .fcb-form-submit:hover {
    background: var(--fcb-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(var(--fcb-primary-rgb), .4);
}

.fcb-widget .fcb-form-submit:hover::after { transform: translateX(2px) rotate(-5deg); }
.fcb-widget .fcb-form-submit:active { transform: translateY(0) scale(.98); }

/* Success state */
.fcb-widget .fcb-form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 15px;
    background: rgba(74,222,128,.1);
    border: 1.5px solid rgba(74,222,128,.3);
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: #166534;
    animation: fcb-view-in .2s ease both;
}

.fcb-widget .fcb-form-success::before {
    content: '';
    width: 18px; height: 18px;
    background-color: #16a34a;
    flex-shrink: 0;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* ── 19. Keyframes ─────────────────────────────────────────────── */
@keyframes fcb-panel-in {
    from { opacity: 0; transform: translateY(14px) scale(.95); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes fcb-view-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fcb-dot {
    0%, 80%, 100% { opacity: .3; transform: translateY(0); }
    40%           { opacity: 1;  transform: translateY(-4px); }
}
@keyframes fcb-pulse {
    0%,100% { box-shadow: 0 0 0 2px rgba(74,222,128,.25); }
    50%     { box-shadow: 0 0 0 5px rgba(74,222,128,.1); }
}

/* ── 20. Responsive ────────────────────────────────────────────── */
@media (max-width: 480px) {
    .fcb-widget {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }
    .fcb-widget .fcb-bubble { float: right; }
    .fcb-widget.fcb-position-left .fcb-bubble { float: left; }
    .fcb-widget .fcb-chat-panel,
    .fcb-widget.fcb-position-right .fcb-chat-panel,
    .fcb-widget.fcb-position-left  .fcb-chat-panel {
        right: 0; left: 0;
        width: 100%;
        border-radius: var(--fcb-panel-r) var(--fcb-panel-r) 0 0;
        bottom: 80px;
    }
}

} /* end @layer fcb */
