body{
    color:black;
}

.panier-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 500px;
}

.panier-titre {
    text-align: center;
    margin-bottom: 25px;
    font-size: 30px;
}

.panier-table {
    border-collapse: collapse;
    width: 750px;
    background: white;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;   
}

.panier-header th {
    background: #BC002D;
    color: white;
    padding: 14px;
    text-align: center;
    font-weight: bold;
}

.panier-ligne td {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.panier-ligne:nth-child(even) {
    background: #f2f2f2;
}

.panier-ligne:hover {
    background: #e6e6ff;
    transition: 0.2s;
}

.form-quantite {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.input-quantite {
    width: 60px;
    padding: 5px;
    text-align: center;
}

.btn {
    padding: 6px 10px;
    border: none;
    background: #BC002D;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background: #BC002D;
}


.panier-total {
    margin-top: 20px;
    font-size: 22px;
    font-weight: bold;
}

.panier-commande {
    margin-top: 15px;
}

.btn-commander {
    padding: 12px 24px;
    background: #BC002D;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}

.btn-commander:hover {
    background: #BC002D;
}
.panier-commande form {
    margin-bottom: 15px;
}

.panier-commande {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.info-livraison {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bloc-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 260px;
}

.bloc-info h3 {
    margin-bottom: 10px;
    color: #BC002D;
}


.boutons-ligne {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

/* Bloc compte + adresse côte à côte */

.info-client {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bloc-client {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 260px;
}

.bloc-client h3 {
    color: #BC002D;
    margin-bottom: 15px;
}

.btn-secondary {
    background: #555;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.form-quantite{
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-moins,.btn-plus{
    width:32px;
    height:32px;
    border:none;
    border-radius:6px;
    background:#BC002D;
    color:white;
    font-size:20px;
    cursor:pointer;
}

.quantite-valeur{
    font-weight:bold;
    font-size:18px;
    min-width:20px;
    text-align:center;
}