.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
 
  padding-left: 30vw; 
  padding-right: 30vw;
}

@media (max-width: 750px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding-left: 10%;
    padding-right: 10%;
  }
}

.product {
  text-align: center;
  background-color: transparent;
  border: 1px solid #ee3339;
  border-radius: 10px ;
  padding: 10px; 
}

.image-slider {
  position: relative;
  width: 100%;
}

.swiper-container {
  width: 35vh;
  max-width: 400px; 
  height: 35vh; 
  max-height: 400px; 
  margin: 0 auto;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  color: #ee3339;
}

.description {
  margin-top: 10px; 
}

h1 {
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  font-size: 2em;
  margin-bottom: 1px;
  color: #ee3339;
}

h2 {
  font-family: 'Vollkorn', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1em;
  color: #ee3339;
  padding: 0%;
  margin: 0%;
  margin-top: 0%;
  margin-bottom: 1vw;
}

p {
  font-family: 'Vollkorn', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5em;
  color: #ee3339;
  margin-top: 0%;
  margin-bottom: 40px;
}

.submit-button {

  padding: 0.5vh 1vh;

  background-color: #ee3339;
  color: #f2eadc;
  font-family: 'Vollkorn', serif;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
  cursor: pointer;
  text-decoration: none;
  
}

.submit-button:hover {
  background-color: #f2eadc;
  border: 2px solid #ee3339;
  color: #ee3339;
}

.reseaux {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.reseaux img {
  width: 20px;
  height: 20px;
}

/* Suppression des ombres portées */
.product {
  box-shadow: none;
  padding-bottom: 20px;
}

.image-slider {
  box-shadow: none;
}

