/* CSS Document */

/* LISTE CATALOGUE */
.item-marque {background-color: #000; color: #fff; padding: 15px; text-align: center;}


.item-marque h4 {color: #fff;}
.item-vignette {margin-bottom: 7px;}
.item-vignette a:hover {text-decoration: none;}
.item-vignette:hover .item-marque {background-color: #27A737;}

.fiche-produit h1 {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 2px solid #000;
  margin-bottom: 1.2rem;
  padding-bottom: .3rem;
}

.fiche-technique p {
  margin: .2rem 0;
  line-height: 1.5;
}

.fiche-technique strong {
  font-weight: 600;
  color: #000;
}

.gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}

.gallery ul li {
  width: calc(33.333% - 6px);
}

.gallery ul li figure {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 1 / 1; /* carré parfait */
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* remplit tout le bloc */
  display: block; /* supprime l'espace blanc sous l'image */
  transition: transform 0.3s ease;
}

.gallery ul li img:hover {
  transform: scale(1.05);
}

/* Bloc produit */
.liste-produit .item-vignette {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* L'image du produit */
.liste-produit .item-vignette figure {
  overflow: hidden;
  margin: 0;
}

.liste-produit .item-vignette img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  display: block;
  object-fit: cover;
}

/* Effet au survol */
.liste-produit .item-vignette:hover img {
  transform: scale(1.07);
}

.liste-produit .item-vignette:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}




link[href^="assets/css/veello-theme/bundle-cc6ca84e.css"]{z-index:0}