
/* ============================================================
   === MODES DE PAIEMENT FORMULAIRE F1 (P7-BIS) ===
   ============================================================ */

.paiement-section {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.paiement-titre {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #26231E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.paiement-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    width: 100%;
    box-sizing: border-box;
}

.paiement-option {
    cursor: pointer;
    flex: 0 0 calc(50% - 5px);
    min-width: 120px;
    box-sizing: border-box;
}

.paiement-option input { display: none; }

.paiement-card {
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    cursor: pointer;
}

.paiement-option input:checked + .paiement-card {
    border-color: #C0392B;
    background: rgba(192, 57, 43, 0.04);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.paiement-card:hover { border-color: #C0392B; }

.paiement-icon { font-size: 24px; line-height: 1; }

.paiement-nom {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #26231E;
}

.paiement-desc {
    font-size: 11px;
    color: #4A4A4A;
    line-height: 1.4;
}

.paiement-note {
    background: #F5F5F5;
    border-left: 3px solid #1a2a4a;
    padding: 10px 14px;
    font-size: 13px;
    color: #4A4A4A;
    border-radius: 0 2px 2px 0;
    display: none;
    margin-top: 6px;
    line-height: 1.5;
}

.paiement-note.visible { display: block; }

@media (max-width: 480px) {
    .paiement-options { grid-template-columns: 1fr; }
}
