/* Paddle Connector – frontend.css */

.pdc-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--pdc-accent, #2563eb);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    white-space: nowrap;
}

.pdc-buy-btn:hover {
    background: var(--pdc-accent-dark, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.36);
    color: #fff;
    text-decoration: none;
}

.pdc-buy-btn:active {
    transform: translateY(0);
}

.pdc-btn-price {
    opacity: 0.85;
    font-weight: 600;
    font-size: 0.9em;
}

/* Sandbox indicator — shown only in sandbox mode */
.pdc-sandbox-badge {
    display: inline-block;
    background: #fef9c3;
    color: #854d0e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 6px;
    vertical-align: middle;
}
