/* Add here all your CSS customizations */

/* ── Section Paiement Sécurisé ── */
.payment-section {
    background-color: #1c1c1c;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.payment-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.payment-label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}
.payment-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 7px;
    font-size: 11px;
    line-height: 1.3;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    transition: transform 0.2s ease;
}
.payment-badge:hover { transform: translateY(-2px); }
.orange-money  { background: #f60; }
.moov-money    { background: #003087; }
.mtn-money     { background: #ffcb00; color: #1a1a1a; }
.wave-money    { background: #1dbfaf; }
.visa-card     { background: #1a1f71; padding: 6px 14px; border-radius: 6px; }
.visa-text     { font-size: 19px; font-weight: 900; font-style: italic; color: #fff; font-family: 'Times New Roman', serif; letter-spacing: 1px; }
.mastercard    { background: #252525; padding: 6px 12px; border-radius: 6px; }
.mc-circles    { display: flex; position: relative; width: 36px; height: 22px; }
.mc-left, .mc-right { position: absolute; width: 22px; height: 22px; border-radius: 50%; }
.mc-left       { background: #eb001b; left: 0; }
.mc-right      { background: #f79e1b; right: 0; }
@media (max-width: 600px) {
    .payment-inner  { flex-direction: column; gap: 12px; }
    .payment-label  { justify-content: center; }
}
