/* Price Alert Popup – price-alert-popup.css */

.pap-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pap-overlay-bg, rgba(0,0,0,.7));
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pap-popup {
    background-color: var(--pap-popup-bg, #f5f5f5);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    text-align: center;
}

/* Close button */
.pap-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 35px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pap-close:hover { color: #d9534f; }

/* Content */
.pap-content { font-family: Arial, sans-serif; }

.pap-icon { font-size: 50px; margin-bottom: 10px; }

.pap-content h2 {
    color: var(--pap-heading-color, #1e3a5f);
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
}

.pap-main-text {
    color: var(--pap-main-text-color, #d9534f);
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin: 20px 0;
}

.pap-sub-text {
    color: var(--pap-sub-text-color, #1e3a5f);
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin: 20px 0;
}

.pap-footer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pap-footer-icon { font-size: 30px; }

.pap-footer-text {
    color: var(--pap-footer-text-color, #1e3a5f);
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 600px) {
    .pap-popup    { padding: 30px 20px; }
    .pap-main-text{ font-size: 28px; }
    .pap-sub-text { font-size: 20px; }
}
