.etafe-popup-overlay {
    position: fixed !important;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: feFadeIn 0.25s ease forwards;
    cursor: pointer;
    .etafe-popup {
        background: var(--etafeWhiteColor);
        width: 100%;
        max-width: 420px;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        text-align: center;
        animation: feScaleIn 0.25s ease forwards;
        cursor: default;
        position: relative;
        .etafe-btn-close {
            background: var(--etafePrimaryColor);
            color: var(--etafePrimaryFgColor);
            width: 30px;
            height: 30px;
            display: flex;
            border: 1px solid var(--etafePrimaryColor);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
            position: absolute;
            top: 15px;
            inset-inline-end: 15px;
            line-height: 1.1;
        }
        h3 {
            margin: 0 0 15px;
            font-size: 22px;
            font-weight: 600;
            color: var(--etafeTitleColor);
        }
        p {
            margin: 0 0 20px;
            color: var(--etafeBodyColor);
            font-size: 16px;
        }
        .etafe-popup-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
            .etafe-btn-upgrade {
                background: var(--etafePrimaryColor);
                color: var(--etafePrimaryFgColor);
                padding: 8px 16px;
                border-radius: 4px;
                text-decoration: none;
                font-size: 13px;
                font-weight: 500;
                transition: background 0.2s ease;

                &:hover {
                    background: var(--etafeSecondaryColor);
                    color: var(--etafeSecondaryFgColor);
                }
            }
        }
    }
}

@keyframes feFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes feScaleIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}