/* Pop-up full-screen */
#ppr-overlay{
    position:fixed; inset:0;
    background:rgba(0,0,0,.7);
    display:flex; align-items:center; justify-content:center;
    z-index:100000;
}
/* Caja central */
.ppr-box{
    max-width:28rem; width:90%;
    background:#fff; color:#222;
    border-radius:12px; padding:2rem 1.5rem; text-align:center;
    box-shadow:0 4px 20px rgba(0,0,0,.35);
    font-family:inherit;
}
.ppr-box h2{margin-top:0;font-size:1.5rem;}
.ppr-buttons{display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1.5rem;}
.ppr-btn{
    flex:1 1 45%; 
    padding:.75rem 1rem;
    font-size:1rem; 
    font-weight:600; 
    border-radius:8px; 
    cursor:pointer;
    background:#A61850;          /* antes #0066ff */
    color:#fff;                  /* sin cambios */
    border:2px solid #A61850;    /* añade borde para que combine con el hover */
}
.ppr-btn.outline{
    background:#A61850;          /* antes #fff */
    color:#fff;                  /* antes #0066ff */
    border:2px solid #A61850;    /* antes #0066ff */
}
.ppr-btn:hover,
.ppr-btn:focus{
    background:#fff;
    color:#A61850;
}
@media (max-width:480px){
    .ppr-btn{flex:1 1 100%;}
}
