/* Fondo del overlay */
#ppa-modal-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenido del popup */
#ppa-modal-content {
    background: #000; /* Fondo negro */
    color: #fff;      /* Texto blanco */
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

#ppa-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.ppa-producto img {
    max-width: 100%;
    margin: 15px 0;
    border-radius: 8px;
}

.ppa-boton {
    display: inline-block;
    background: #b30000; /* Rojo fuerte */
    color: white;
    padding: 10px 18px;
    margin: 10px 5px 0;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
    cursor: pointer;
}

.ppa-boton:hover {
    background: #8b0000; /* Rojo más oscuro */
}

