.pd-stripe-wrap {
    margin: 0;
}

.pd-stripe-cta {
    display: inline-block;
    background: #D4741A;
    color: #fff;
    border: none;
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s ease;
    width: 100%;
    max-width: 360px;
    line-height: 1.4;
    font-family: inherit;
    box-shadow: 0 2px 0 rgba(0,0,0,0.05);
}

.pd-stripe-cta:hover {
    background: #b85f10;
}

.pd-stripe-cta:focus {
    outline: 2px solid #1B2D52;
    outline-offset: 2px;
}

.pd-stripe-modal[hidden] {
    display: none;
}

.pd-stripe-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pd-stripe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 45, 82, 0.6);
    cursor: pointer;
}

.pd-stripe-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 540px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 28px 24px 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    -webkit-overflow-scrolling: touch;
}

.pd-stripe-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 26px;
    color: #555;
    cursor: pointer;
    line-height: 1;
    border-radius: 50%;
    font-family: inherit;
}

.pd-stripe-close:hover {
    background: rgba(0,0,0,0.05);
    color: #000;
}

.pd-stripe-h {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: #1B2D52;
    border-bottom: 2px solid #D4741A;
    padding-bottom: 10px;
    letter-spacing: 0.02em;
}

.pd-stripe-meta {
    margin: 0 0 18px;
    padding: 14px 16px;
    background: #faf6f0;
    border-radius: 8px;
}

.pd-stripe-name {
    margin: 0 0 6px;
    font-size: 14px;
    color: #1B2D52;
    font-weight: 600;
    line-height: 1.5;
}

.pd-stripe-price {
    margin: 0;
    font-size: 22px;
    color: #1B2D52;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pd-stripe-mount {
    min-height: 280px;
}

.pd-stripe-loading,
.pd-stripe-error {
    text-align: center;
    padding: 32px 12px;
    font-size: 14px;
    color: #666;
}

.pd-stripe-error {
    color: #c0392b;
}

.pd-stripe-note {
    margin: 16px 0 0;
    font-size: 12px;
    color: #888;
    line-height: 1.7;
    text-align: center;
}

.pd-stripe-noscroll {
    overflow: hidden;
}

.pd-thanks-deny,
.pd-thanks-pending {
    padding: 24px;
    background: #faf6f0;
    border-radius: 8px;
    color: #1B2D52;
    font-size: 15px;
    line-height: 1.7;
}

.pd-thanks-pending {
    background: #fff8ee;
}

@media (max-width: 480px) {
    .pd-stripe-modal {
        padding: 0;
        align-items: stretch;
    }
    .pd-stripe-card {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        padding: 24px 16px 16px;
    }
    .pd-stripe-h {
        font-size: 18px;
    }
    .pd-stripe-price {
        font-size: 20px;
    }
    .pd-stripe-cta {
        padding: 16px 20px;
        font-size: 15px;
    }
}