
/* Product Mailer popup: full-screen centered modal */

#pmcpc-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* When JS sets style="display:block", show as flex */
#pmcpc-popup[style*="block"] {
    display: flex !important;
}

/* Popup content box */
#pmcpc-popup .pmcpc-popup-box {
    position: relative;
    max-width: 420px;
    width: 90%;
    background: #f6f1e6;
    padding: 24px 24px 28px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

/* Close button */
#pmcpc-popup .pmcpc-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

/* Inputs full width */
#pmcpc-popup input[type="email"],
#pmcpc-popup input[type="text"] {
    width: 100%;
    max-width: 100%;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    #pmcpc-popup .pmcpc-popup-box {
        padding: 18px 16px 22px;
    }
}
