

#news_container{
  margin-top: 5%;
  flex-direction: column;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colonnes égales */
  gap: 3%; /* espace entre les cases */
  padding: 3%;
  padding: 0% 5% 0% 5%;
  margin-top: 2%;
}

.item {
  padding: 0.5%;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.img_bout{
  width: 100%;
  height: auto;
  cursor: pointer;
}
.price{
  margin-top: 2%;
}
.div_bout{
  margin-top: 1%;
}
#presentation_bout{
  width: 60%;
  margin-top: 1%;
}
#in_news{
  margin-left: 5%;
}
.see_product{
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  color:#DA6416;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.img_bout:hover ~ .see_product{
  opacity: 1;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem;
  -webkit-overflow-scrolling: touch; /* pour iOS */
}

.item_resp {
  padding: 0.5%;
  text-align: center;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.scroll-container{
  display: none;
}

@media (max-width: 768px) {
  #presentation_bout{
    width: 100%;
  }
  .img_bout{
    height:45vh;
    width: auto;
  }
  .item{
    padding-bottom: 10%;
  }
  .grid-container{
    display: none;
  }
  #is_resp_sep{
    height: 10vh;
  }
  .scroll-container{
    display: flex;
  }
}



