/* === FBAH soft-prompt === */
.fbah-soft-prompt {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999999;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(79, 70, 229, .28);
    transform: translateY(140%);
    transition: transform .35s cubic-bezier(.22, .68, .35, 1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff !important;
    line-height: 1.4;
    box-sizing: border-box;
}
.fbah-soft-prompt * { box-sizing: border-box; }

.fbah-soft-prompt[data-shown="1"] {
    transform: translateY(0);
}

.fbah-soft-prompt__inner {
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.fbah-soft-prompt__icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    max-width: 22px !important;
    flex: 0 0 22px;
    color: #fff;
    margin-top: 1px;
    display: block;
}

.fbah-soft-prompt__text {
    flex: 1 1 200px;
    min-width: 0;
}

.fbah-soft-prompt__title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.fbah-soft-prompt__body {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .92);
}

.fbah-soft-prompt__actions {
    flex: 1 1 100%;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 4px;
}

.fbah-soft-prompt__btn {
    padding: 7px 14px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1;
    transition: opacity .15s, transform .1s;
}
.fbah-soft-prompt__btn:active { transform: scale(.96); }

.fbah-soft-prompt__btn--no {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
}
.fbah-soft-prompt__btn--no:hover { background: rgba(255, 255, 255, .12); }

.fbah-soft-prompt__btn--yes {
    background: #fff;
    color: #4f46e5;
}
.fbah-soft-prompt__btn--yes:hover { opacity: .92; }

@media (max-width: 480px) {
    .fbah-soft-prompt {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }
    .fbah-soft-prompt__inner { padding: 12px 14px; gap: 10px; }
    .fbah-soft-prompt__title { font-size: 13px; }
    .fbah-soft-prompt__body { font-size: 12px; }
    .fbah-soft-prompt__btn { padding: 6px 12px; font-size: 12px; }
}
