#pmhpro-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

#pmhpro-popup {
    display: flex;
    flex-direction: row;
    background: var(--pmh-bg, #1a1a2e);
    max-width: 660px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#pmhpro-close {
    position: absolute;
    top: 10px; right: 14px;
    background: none;
    border: none;
    color: var(--pmh-text, #fff);
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    opacity: 0.8;
}

#pmhpro-left {
    width: 42%;
    flex-shrink: 0;
}

#pmhpro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

#pmhpro-right {
    flex: 1;
    padding: 28px 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

#pmhpro-right h2 {
    color: var(--pmh-accent, #e94560);
    font-size: 20px;
    margin: 0;
    line-height: 1.3;
}

#pmhpro-right p {
    color: var(--pmh-text, #fff);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

#pmhpro-email {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    box-sizing: border-box;
}

#pmhpro-right label {
    color: var(--pmh-text, #fff);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    opacity: 0.85;
}

#pmhpro-right label a {
    color: var(--pmh-accent, #e94560);
}

#pmhpro-submit {
    background: var(--pmh-btn, #e94560);
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#pmhpro-msg {
    font-size: 13px;
    font-weight: 700;
    min-height: 18px;
}

#pmhpro-dismiss {
    color: var(--pmh-text, #fff);
    font-size: 11px;
    opacity: 0.5;
    text-decoration: none;
}

@media (max-width: 540px) {
    #pmhpro-popup { flex-direction: column; }
    #pmhpro-left { width: 100%; height: 180px; }
}
