/**
 * ============================================
 * PAYMENT.CSS - Pages de paiement
 * ============================================
 * 
 * Fichier consolidé contenant :
 * - payment-success.css (paiement réussi)
 * - payment-cancel.css (paiement annulé)
 * - payment-error.css (erreur paiement)
 * 
 * @version 2.0.0
 * @date 02/02/2026
 */

/* ============================================
   PAYMENT SUCCESS
   ============================================ */

.success-container {
    max-width: 800px;
    margin: 120px auto 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.success-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.order-details {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.order-details h3 {
    margin-top: 0;
    color: #333;
}

.order-info {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.order-info:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #45a049;
}

.btn-secondary {
    background: #2196F3;
}

.btn-secondary:hover {
    background: #0b7dda;
}

/* ============================================
   PAYMENT CANCEL
   ============================================ */

.cancel-container {
    max-width: 800px;
    margin: 120px auto 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.cancel-icon {
    font-size: 80px;
    color: #ff9800;
    margin-bottom: 20px;
}

.cancel-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.cancel-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    color: #856404;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    background: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #0b7dda;
}

.btn-secondary {
    background: #9e9e9e;
}

.btn-secondary:hover {
    background: #757575;
}

/* ============================================
   PAYMENT ERROR
   ============================================ */

.error-icon {
    font-size: 80px;
    color: #f44336;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-box {
    background: #ffebee;
    border: 1px solid #f44336;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    color: #c62828;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    background: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.btn:hover {
    background: #0b7dda;
}

.btn-secondary {
    background: #9e9e9e;
}

.btn-secondary:hover {
    background: #757575;
}
