/* ==========================================
   panier.css – Page Panier
   ECT Sécurité
========================================== */

/* --- Section panier --- */
.panier {
    padding: 70px 20px;
    text-align: center;
}

/* Réutilise la grille de materiel */
.materiel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    margin-top: 20px;
}

.materiel-item {
    background: #1a1a1a;
    border: 2px solid #c8a951;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    color: #f5f5f5;
    text-align: left;
    width: 100%;
}

.materiel-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
    height: 160px;
    object-fit: cover;
}

.materiel-item h3 {
    color: #c8a951;
    margin-bottom: 8px;
}

.materiel-item p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.materiel-item .btn {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    background: #c0392b;
}

.materiel-item .btn:hover {
    background: #a93226;
}

/* Total */
#total {
    margin-top: 40px;
    font-size: 1.6rem;
    color: #c8a951;
}

/* Message panier vide */
#panier-container>p {
    font-size: 1.1rem;
    color: #aaa;
    margin-top: 20px;
}

/* Bouton paiement */
.btn-paiement {
    margin-top: 25px;
    display: inline-block;
}

/* Mode clair */
.light-mode .materiel-item {
    background: #fff;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .panier {
        padding: 50px 20px;
    }
}