/* Compléments spécifiques au module paiement (base : /assets/site.css) */
.field { margin: 1rem 0; }

.field label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--accent);
}

.field input {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 140, 168, 0.4);
    background: var(--bg);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

.field input:focus {
    outline: 2px solid var(--accent);
    border-color: var(--accent);
}

.submit-section { margin-top: 1.5rem; text-align: center; }

.alert {
    display: none;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(255, 99, 99, 0.15);
    border: 1px solid #ff6363;
    color: #ffb3b3;
}

/* Le checkout Stripe embarqué a besoin d'un fond clair pour rester lisible. */
#checkout {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 0.5rem;
    margin: 1rem 0;
}

.payment-summary { color: var(--gold); font-weight: 700; }

.payment-back { text-align: center; margin-top: 1rem; }

.return-box { text-align: center; }

.return-box .icon { font-size: 3rem; margin-top: 2rem; }
