/* Strictly mobile only */
@media (min-width: 768px) {
    .pcp-overlay { display: none !important; }
}

.pcp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    padding: 20px;
}

.pcp-overlay.pcp-show {
    display: flex;
    animation: pcpFade .25s ease;
}

.pcp-popup {
    position: relative;
    width: min(520px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 42px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    animation: pcpPop .3s ease;
}

.pcp-popup h2 {
    margin: 0 0 14px;
    font-size: 27px;
    line-height: 1.3;
    color: #222;
}

.pcp-popup p {
    margin: 0 0 25px;
    font-size: 16px;
    line-height: 1.65;
    color: #555;
}

.pcp-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: underline;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    transition: .2s;
}

.pcp-button:hover {
    transform: translateY(-2px);
    opacity: .94;
}

.pcp-close {
    position: absolute;
    right: 13px;
    top: 8px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #666;
}

.pcp-card {
    background: #fff;
    border: 1px solid #dcdcde;
    padding: 25px;
    margin-top: 20px;
    border-radius: 8px;
    max-width: 1000px;
}

@keyframes pcpFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pcpPop {
    from { opacity: 0; transform: scale(.94) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 480px) {
    .pcp-popup { padding: 38px 22px 28px; }
    .pcp-popup h2 { font-size: 23px; }
    .pcp-button { font-size: 16px; }
}
