body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #121212, #333);
    color: white;
    margin: 0;
    padding: 0;
}

canvas#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: transparent;
}

.main-produits {
    padding-top: 100px; /* espace pour ne pas passer sous le menu */
    padding-bottom: 80px; /* espace pour ne pas passer sous le footer */
}

.produits {
    text-align: center;
    padding: 40px 20px 20px;
}

.produits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
}

.produit-card {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: white;
    text-decoration: none;
}

.produit-card:hover {
    transform: scale(1.05);
}

.produit-card img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.prix-fourchette {
    font-size: 1.2em;
    color: cyan;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .produits-container {
        flex-direction: column;
        align-items: center;
    }

    .produit-card {
        width: 90%;
    }

    .produit-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .produit-card img {
        height: 150px;
    }

    .prix-fourchette {
        font-size: 1em;
    }
}
