    .cart-container { max-width: 900px; margin: 40px auto; padding: 20px; font-family: 'Segoe UI', sans-serif; }
    
    h1 { color: #333; margin-bottom: 30px; }

    /* Tableau moderne */
    .cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    .cart-table th { background-color: #f8f9fa; padding: 15px; text-align: left; border-bottom: 2px solid #eee; }
    .cart-table td { padding: 15px; border-bottom: 1px solid #eee; }
    
    /* Boutons et effets */
    .delete-btn { color: #ff4d4d; transition: 0.3s; font-size: 1.2em; }
    .delete-btn:hover { color: #cc0000; }
    
.btn-checkout { 
    display: inline-block; 
    background: #2A9631; /* Vert profond */
    color: white; 
    padding: 12px 25px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: bold; 
    margin-top: 20px; 
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-checkout:hover { 
    background: #E0D577; /* Doré */
}
    .total-section { margin-top: 20px; text-align: right; font-size: 1.5em; }
	body {
        margin: 0;
        padding-top: 100px; /* Ajustez cette valeur à la hauteur exacte de votre header */
        font-family: 'Segoe UI', sans-serif;
    }

    /* 2. Style du conteneur */
    .cart-container { 
        max-width: 900px; 
        margin: 0 auto; 
        padding: 20px; 
    }
	/* Style du Modal */
#orderModal {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Style moderne des champs de formulaire */
.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #0A3925;
    outline: none;
    box-shadow: 0 0 5px rgba(10, 57, 37, 0.2);
}
/* Bouton principal */
.btn-submit {
    width: 100%;
    background: #2A9631; /* Vert profond */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-submit:hover { 
    background: #E0D577; /* Doré */
}