/** Shopify CDN: Minification failed

Line 91:0 Expected "}" to go with "{"

**/
.related-products {
  display: block;
}


.related-products__heading {
    text-align: center;
    color: #ffffff;
    font-size: 20px; /* Légèrement plus grand pour l'élégance */
    font-weight: 600; /* Plus épais pour un effet premium */
    background: linear-gradient(90deg, #72194c, #9d2b5c); /* Dégradé élégant */
    letter-spacing: 1px; 
    padding: 15px 20px; /* Simplification des paddings */
    border-radius: 8px; /* Coins arrondis pour la modernité */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre subtile */
    margin: 2% auto; /* Marges uniformisées */
    width: fit-content !important;
}

@media only screen and (min-width: 10px) and (max-width: 400px) {
  .related-products__heading {
    font-size: 16px;
    max-width: 80%;
  }
}

@media only screen and (min-width: 400px) and (max-width: 800px) {
  .related-products__heading {
    font-size: 16px;
    max-width: 50%;
  }
}

@media only screen and (min-width: 800px) and (max-width: 1000px) {
  .related-products__heading {
    font-size: 18px;
    max-width: 45%;
  }
   }


  @media only screen and (min-width: 1000px) and (max-width: 1200px) {
  .related-products__heading {
    font-size: 18px;
  }
}

 @media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .related-products__heading {
    max-width: 28%;
  }
}

 @media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .related-products__heading {
    max-width: 25%;
  }
}

 @media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .related-products__heading {
    max-width: 24%;
  }
}

 @media only screen and (min-width: 1800px) and (max-width: 2000px) {
  .related-products__heading {
    max-width: 23%;
  }
}

 @media only screen and (min-width: 2000px) and (max-width: 2500px) {
  .related-products__heading {
    max-width: 21%;
  }
}



.related-products__heading:hover {
    transform: scale(1.02); /* Légère mise en avant */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Ombre accentuée */
   transition: transform 0.3s ease, box-shadow 0.3s ease; /* effet survol */


