

.entete_rubrique {
  text-align: center;
  font-size:0.8em;
  padding-top: 5px;
  color:white;
  
}

H1 {
  font-size: 3.5em;
  text-align: center;
  color: white;
  margin-top: 15px;
}


.texte_rubrique {
  max-width:1200px;
  margin:auto;
  color:white;
}

.contenu-liste-rubriques {
    max-width:1200px;
    width:100%;
    margin:auto;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;

}

.liste_produits {
  width:100%;
  
}

.block_produit {
  width:30%;
  padding:10px;
  margin-top:30px;
}

.image_liste {
  background-color: #f9f9f9;
  border-radius: 13px;
  width:300px;
  height:300px;
  margin: auto;
  position: relative;
}

.image_liste IMG {
    mix-blend-mode: darken;
    width:100%;
    object-fit: cover;
    border-radius: 13px;
}

.bandeau_nouveau_liste {
  transform: rotate(347deg);
  position: absolute;
  background: rgb(237 9 9);
  color: white;
  padding: 3px 16px;
  box-sizing: border-box;
  top: 3px;
  text-transform: uppercase;
  left: -5px;
  font-size: 12px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 4px;
}

.lib_article {
  font-weight:600;
  text-align:center;
  font-size:16px;
  margin-top:15px;
}

.descriptif {
  font-size:12px;
  text-align:justify;
  width:80%;
  margin:auto;
  display : -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.conteneur_modeles_liste {
  width:80%;
  margin:auto;
  margin-top:10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
  justify-content: center;
}

.prix-liste-produits {
    text-align: center;
    width: 100%;
    font-size:20px;
    font-weight: 600;
    margin-top: 10px;
}

.pvc {
  color:dimgray;
  font-weight:400;
  font-size:0.7em;
}

.liste-btn-voir {
    width: 100%;
    margin-top: 15px;
    text-align: center;
}

.btn-voir {
    background: none;
    border:2px solid black;
    text-transform: uppercase;
    padding:5px 50px;
    font-size:15px;
    letter-spacing: 2px;
    color: black;
    border-radius: 5px;
    transition: color 0.4s linear;
    position:relative;
}

.btn-voir:hover {
    color:#fff;
}

.btn-voir::before {
    content:"";
    position: absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: #000;
    z-index:-1;
    transition: transform 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
}

.btn1::before {
    transform: scaleX(0);
}

.btn1:hover::before {
    transform: scaleX(1);
}

.container_lst_scat {
    max-width:1200px;
    width:100%;
    margin:auto;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    
}

.lst_scat {
  border:0px solid #464646;
  border-radius:20px;
  padding: 8px 15px;
  font-size:0.9em;
  text-decoration: none;
  color:black;
  transition: 0.5s;
  background-color: #fff;
  margin-bottom:20px;
  margin-top:20px;
}

.lst_scat:hover {
  background-color: #000;
  color:white;
}

.pastille {
  width:28px; 
  height:28px; 
  border-radius:28px; 
  margin:2px;
  border:1px solid #9E9E9E;
  cursor:pointer;
}

.pastille:hover {
  width:30px; 
  height:30px; 
  border-radius:30px; 
  margin:1px;
  border:1px solid #9E9E9E;
}

.liste4-block-prix-promo {
  align-items: center;
  background-color: firebrick;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.6em;
  color: #fff;
  padding: 5px 8px; 
  vertical-align: middle;
}

.liste4-block-prix-promo img {
  width:20px;
  vertical-align: middle;
}

@media only screen and (max-width:1024px) {
  .entete_rubrique {
    text-align: center;
    font-size:0.8em;
    padding-top: 50px;
    color:white;
    
  }

  .image_liste {
    background-color: #f9f9f9;
    border-radius: 13px;
    width: 100%;
    height: 100%;
    margin: auto;
}


}

@media only screen and (max-width:640px) {

.contenu-liste-rubriques {
  width:95%;
  margin:auto;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}

.block_produit {
  width:auto;
}

H1 {
  text-align: center;
  font-size:1.5em;
}

.container_lst_scat {
  gap:15px;
  justify-content: center;
  font-size:0.8em;
}
}