/* Conteneur principal du panier */
.panier-container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Titre */
.panier-title {
    margin-bottom: 30px;
    color: #d4af37;
    font-family: 'Cinzel', serif;
}

/* Tableau */
.panier-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
}

/* --- MODIFICATION ICI : Couleur de fond de l'en-tête --- */
.panier-table th {
    background-color: var(--rune-background, #0F2030); /* Fond sombre demandé */
    color: white; /* Texte en blanc pour le contraste */
    padding: 15px;
    text-align: left;
    border-bottom: 5px solid #ddd;
}

.panier-table td {
    padding: 15px;
    border-bottom: 5px solid #eee;
    vertical-align: middle;
}

/* Contrôles de quantité (+ / -) */
.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-qty {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-qty:hover {
    background-color: #ced4da;
}

/* Totaux */
.total-label {
    text-align: right;
    font-weight: bold;
    font-size: 1.1em;
}

.total-amount {
    font-weight: bold;
    font-size: 1.2em;
    color: #d4af37; /* Couleur Or */
}

/* Actions (Boutons bas de page) */
.panier-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn-continue {
    color: #d4af37;
    text-decoration: none;
}

.btn-continue:hover {
    text-decoration: underline;
}

.btn-validate {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-validate:hover {
    transform: scale(1.05);
}