.ap-exit-banner {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999999;
    max-width: 320px;
    padding: 20px 24px 22px 22px;
    border-radius: 16px;
    background: var(--ap-exit-bg, rgba(255, 255, 255, 0.55));
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ap-exit-banner.ap-exit-banner--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ap-exit-banner__close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    padding: 6px;
}

.ap-exit-banner__close:hover {
    color: rgba(0, 0, 0, 0.75);
}

.ap-exit-banner__title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    padding-right: 16px;
}

.ap-exit-banner__text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.75);
}

.ap-exit-banner__phone {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ap-exit-banner__btn {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}

.ap-exit-banner__btn:hover {
    background: rgba(0, 0, 0, 1);
}

/* На мобильных не показываем вообще — доп. подстраховка к тому, что JS
   сам не инициализирует показ (нет курсора для exit-intent). */
@media (max-width: 768px) {
    .ap-exit-banner {
        display: none !important;
    }
}
