/* PBN Studio Payment Styles */
#pbn-pay-modal * {
    box-sizing: border-box;
}
#pbn-pay-box {
    animation: pbnPaySlideUp 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes pbnPaySlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
#pbn-pay-retry:hover {
    background: #2563eb !important;
}
#pbn-pay-close:hover {
    background: #e5e7eb !important;
    color: #1f2937 !important;
}
