#wcmp-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,.62);
    box-sizing: border-box;
}
#wcmp-overlay.wcmp-open { display: flex; }
.wcmp-no-scroll { overflow: hidden !important; }

.wcmp-modal {
    position: relative;
    width: min(560px, 100%);
    max-height: min(80vh, 720px);
    overflow: auto;
    background: #fff;
    border-radius: 14px;
    padding: 34px 32px 30px;
    box-sizing: border-box;
    box-shadow: 0 18px 60px rgba(0,0,0,.28);
    font-family: inherit;
}
.wcmp-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 38px;
    cursor: pointer;
    color: #555;
}
.wcmp-close:hover { color: #111; }
.wcmp-title {
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
    padding-right: 28px;
    margin-bottom: 16px;
}
.wcmp-body {
    font-size: 16px;
    line-height: 1.65;
}
.wcmp-body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
    .wcmp-modal { padding: 30px 20px 24px; border-radius: 10px; }
    .wcmp-title { font-size: 21px; }
}
