/* ==========================================
   produit-veste.css – Page Produit Veste
   ECT Sécurité
========================================== */

/* --- Section produit --- */
.produit {
    padding: 70px 50px;
    text-align: center;
}

/* Grille produit (une seule carte centrée) */
.materiel-grid {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.materiel-item {
    background: #1a1a1a;
    border: 2px solid #c8a951;
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    color: #f5f5f5;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.materiel-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(200, 169, 81, 0.4);
}

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

.materiel-item h3 {
    color: #c8a951;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.materiel-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Prix */
.prix-produit {
    font-size: 1.4rem;
    color: #c8a951;
    font-weight: bold;
    margin: 15px 0;
}

/* Bouton commander */
.materiel-item .btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

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

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

    .materiel-item {
        max-width: 100%;
    }
}