.pbm-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.pbm-modal.is-open {
    display: flex;
}

.pbm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.pbm-dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    box-sizing: border-box;
    border-radius: 12px;
    background: #fff;
    color: #191919;
    padding: 28px 24px 22px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    text-align: left;
}

.pbm-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 28px;
    line-height: 32px;
    cursor: pointer;
}

.pbm-kicker {
    color: #ff6700;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pbm-dialog h2 {
    margin: 0 36px 10px 0;
    color: #111;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.pbm-copy {
    margin: 0 0 20px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.65;
}

.pbm-actions {
    display: flex;
    gap: 10px;
}

.pbm-primary,
.pbm-secondary {
    flex: 1;
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.pbm-primary {
    background: #ff6700;
    color: #fff;
}

.pbm-secondary {
    background: #f4f4f4;
    color: #333;
    border-color: #e3e3e3;
}

@media (max-width: 420px) {
    .pbm-dialog {
        padding: 24px 18px 18px;
    }

    .pbm-actions {
        flex-direction: column;
    }
}
