/* ================================
   PROMO GLOBAL – EXIT / BANNER
================================ */

.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.exit-modal {
    background: #fff;
    border-radius: 28px;
    max-width: 520px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.exit-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: 0;
    background: none;
    font-size: 28px;
    color: #fff;
    z-index: 2;
    opacity: .85;
}

.exit-close:hover {
    opacity: 1;
}

.exit-header {
    padding: 3rem 2rem 2.5rem;
    background: linear-gradient(135deg,
            var(--color-primary),
            var(--color-primary-light));
}

.exit-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.exit-icon svg {
    width: 30px;
    height: 30px;
}

.exit-body {
    padding: 2.5rem 2rem 2rem;
}

.exit-list {
    list-style: none;
    padding: 0;
    max-width: 360px;
}

.exit-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .95rem;
}

.exit-no {
    border: none;
    background: none;
    font-size: .85rem;
    color: #6b7280;
}

.exit-no:hover {
    text-decoration: underline;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 767.98px) {

    .exit-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .exit-modal {
        max-width: 100%;
        border-radius: 22px 22px 0 0;
        animation: slideUp .35s ease;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .exit-header {
        padding: 2rem 1.5rem 1.75rem;
    }

    .exit-header h3 {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .exit-header p {
        font-size: .95rem;
    }

    .exit-icon {
        width: 52px;
        height: 52px;
        margin-bottom: .75rem;
    }

    .exit-icon svg {
        width: 24px;
        height: 24px;
    }

    .exit-body {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .exit-body .btn {
        font-size: 1.05rem;
        padding: 14px 16px;
        border-radius: 14px;
    }

    .exit-list {
        max-width: 100%;
        margin-bottom: 1.25rem;
    }

    .exit-list li {
        font-size: .9rem;
        margin-bottom: 8px;
    }

    .exit-close {
        font-size: 32px;
        top: 10px;
        right: 14px;
        color: #fff;
        opacity: 1;
    }

    .exit-overlay {
        cursor: pointer;
    }

    .exit-modal {
        cursor: default;
    }
}