/* AutoSud Payment — payment.css */
.summary-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.summary-row:last-child { border-bottom: none; }
.summary-icon { font-size: 16px; width: 24px; flex-shrink: 0; }
.summary-value { font-weight: 600; font-size: 14px; color: #e0e0e0; margin-left: auto; text-align: right; }
.summary-label { font-size: 13px; color: #888; }

/* ── Boutons de paiement ────────────────────────────────────────────────────── */
.asp-pay-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 10px;
    background: #1A1A1A;
    border: 1.5px solid #2A2A2A;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: border-color .2s, background .2s, transform .1s;
    cursor: pointer;
    box-sizing: border-box;
}
.asp-pay-btn:hover {
    background: #222;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}
.asp-wave-btn:hover  { border-color: #1E90FF; }
.asp-om-btn:hover    { border-color: #FF6600; }

.asp-pay-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.asp-pay-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.asp-pay-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}
.asp-pay-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.asp-pay-amount {
    font-weight: 800;
    font-size: 14px;
    color: #FFD700;
    white-space: nowrap;
}
.asp-pay-arrow {
    font-size: 20px;
    color: #555;
    margin-left: 4px;
}
