/**
 * Stripe Vortrag Checkout – Styling v1.1.1
 */
.svc-wrapper {
    margin: 1.5em 0;
}

.svc-wrapper .svc-button,
.svc-wrapper a.svc-button {
    display: inline-block;
    padding: 0.85em 1.8em;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    background: #9b1c2b !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.1s ease;
    line-height: 1.4;
}

.svc-wrapper .svc-button:hover,
.svc-wrapper a.svc-button:hover {
    background: #7a1622 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.svc-wrapper .svc-button:active,
.svc-wrapper a.svc-button:active {
    transform: translateY(0);
}

.svc-wrapper .svc-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.svc-checkout-mount {
    margin-top: 1em;
    min-height: 400px;
}

.svc-loading {
    text-align: center;
    padding: 3em 1em;
    color: #666;
    font-size: 0.95em;
}

.svc-loading::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #e0e0e0;
    border-top-color: #9b1c2b;
    border-radius: 50%;
    animation: svc-spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 0.6em;
    margin-bottom: 0.2em;
}

@keyframes svc-spin {
    to { transform: rotate(360deg); }
}

.svc-error {
    padding: 0.75em 1em;
    background: #fdecec;
    border-left: 4px solid #b32d2e;
    border-radius: 3px;
}