/* Pro Popups — Frontend Styles */

.pp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ppFadeIn 0.25s ease;
}

@keyframes ppFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pp-modal {
    background: #fff;
    border-radius: 8px;
    padding: 32px 36px;
    max-width: 560px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: ppSlideUp 0.25s ease;
}

@keyframes ppSlideUp {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.pp-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-close:hover { background: #ddd; }

.pp-title {
    margin: 0 0 14px;
    font-size: 1.3em;
    padding-right: 32px;
}

.pp-content { font-size: 0.95em; line-height: 1.6; color: #333; }
.pp-content p:last-child { margin-bottom: 0; }

.pp-trigger-btn {
    display: inline-block;
    padding: 9px 20px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background 0.15s;
}

.pp-trigger-btn:hover { background: #135e96; }
