/**
 * FakeIntercom - Vanilla CSS version
 * Styled to match the real Intercom launcher (40px, bottom-right)
 * Shows when marketing consent is rejected
 */

.fake-intercom-container {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 9999;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

    .fake-intercom-container.active {
        display: block;
    }

.fake-intercom-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #003349;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .fake-intercom-icon:focus {
        outline: none;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), 0 4px 24px rgba(0, 0, 0, 0.12);
    }

    .fake-intercom-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    .fake-intercom-icon:hover {
        transform: scale(1.08);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 6px 32px rgba(0, 0, 0, 0.15);
    }

    .fake-intercom-icon:active {
        transform: scale(1.02);
    }

.fake-intercom-popover {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: none;
    animation: fakeIntercomSlideUp .25s ease-out;
}

    .fake-intercom-popover.active {
        display: block;
    }

@@keyframes fakeIntercomSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fake-intercom-header {
    padding: 20px 24px;
    background: #003349;
    color: #fff;
    position: relative;
}

    .fake-intercom-header strong {
        display: block;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
        margin: 0;
        letter-spacing: -0.02em;
    }

.fake-intercom-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: .7;
    padding: 4px;
    transition: opacity .2s ease;
}

    .fake-intercom-close:hover {
        opacity: 1;
    }

    .fake-intercom-close:focus {
        outline: none;
    }

.fake-intercom-content {
    padding: 24px;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.5;
}

    .fake-intercom-content p {
        margin: 0 0 20px;        
        font-weight: 400;
    }

        .fake-intercom-content p strong {
            color: #1a1a1a;
            font-weight: 600;
        }

.fake-intercom-btn {
    display: inline-block;
    padding: 2px 16px 5px 16px;
    background: #fff;
    color: #003349;
    border: 2px solid #003349;
    outline: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
    letter-spacing: -0.01em;
    height: 34px;
    width: 120px;
}

    .fake-intercom-btn:hover {
        background: #003349;
        color: #fff;
    }

    .fake-intercom-btn:active {
        transform: scale(0.98);
    }

    .fake-intercom-btn:focus {
      outline: none;
    }
