/* Style général */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}
.menu-header img {
  max-width: 100px;
  max-height: 100px;
}


/* Style des boîtes côte à côte */
.boites {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.boites a {
  width: 30%;
}

.boites img {
  width: 100%;
  height: auto;
}

/* Style des meilleurs produits */
.meilleurs-produits {
  margin-bottom: 20px;
}

.produits-ligne {
  display: flex;
  justify-content: space-between;
}

.produit {
  width: 23%;
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

.produit img {
  width: 100%;
  height: auto;
}

.produit h3 {
  margin-top: 10px;
  margin-bottom: 5px;
}

.produit p {
  margin-bottom: 5px;
}

.produit a {
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.produit a:hover {
  text-decoration: underline;
}
.fiche-produit {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
}

.fiche-produit img {
  flex: 1;
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  margin-right: 20px;
}

.fiche-produit .contenu-produit {
  flex: 1;
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
}

.fiche-produit h1 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: left;
}

.fiche-produit p {
  margin: 0;
}

.fiche-produit button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  cursor: pointer;
}

.fiche-produit button:hover {
  background-color: #45a049;
}
.menu-header {
  display: flex;
}
.menu-header ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0px;

}
.menu-header li {
  padding-left : 10px;
  padding-right : 10px;

}


.ligne-produits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.coll_produit {
 flex-basis: 25%;
  max-width: 20%;
  background-color: #f7f7f7;
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
}

.coll_produit img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}

.coll_produit h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.coll_produit p {
  margin-bottom: 5px;
}

.coll_produit a {
  display: inline-block;
  padding: 5px 10px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
}

.coll_produit a:hover {
  background-color: #45a049;
}

 @media only screen and (max-width: 800px) {
.fiche-produit {
    display:block!important;
}
.fiche-produit p {
    font-size:18px;
}
.coll_produit {
  flex-basis: 50%;
  max-width: 40%;
}
     
 }
