/** Shopify CDN: Minification failed

Line 35:0 Unexpected "<"
Line 61:0 Unexpected "<"
Line 65:2 Comments in CSS use "/* ... */" instead of "//"
Line 65:38 Unterminated string token
Line 68:2 Comments in CSS use "/* ... */" instead of "//"
Line 71:2 Comments in CSS use "/* ... */" instead of "//"
Line 74:0 Unexpected "<"

**/
.page-title {
  margin-top: 0;
}

.main-page-title {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .main-page-title {
    margin-bottom: 4rem;
  }
}

.page-placeholder-wrapper {
  display: flex;
  justify-content: center;
}

.page-placeholder {
  width: 52.5rem;
  height: 52.5rem;
}
<button onclick="ouvrirGuideTailles()" class="btn-guide-tailles">
  📏 Voir le guide des tailles
</button>

<style>
.btn-guide-tailles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
  padding: 10px 20px;
  background-color: #f8f8f8; /* Couleur de fond grise très claire */
  color: #333; /* Couleur du texte */
  border: 1px solid #ddd; /* Petite bordure discrète */
  border-radius: 5px; /* Coins arrondis */
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* L'effet quand on passe la souris sur le bouton */
.btn-guide-tailles:hover {
  background-color: #e0e0e0;
  border-color: #ccc;
}
</style>

<script>
function ouvrirGuideTailles() {
  // L'URL de votre page (à modifier)
  var url = "VOTRE_URL_ICI"; 
  
  // Les dimensions de la fenêtre pop-up (largeur 600px, hauteur 700px)
  var parametres = "width=600,height=700,scrollbars=yes,resizable=yes";
  
  // Ouvre la fenêtre
  window.open(url, "GuideDesTailles", parametres);
}
</script>
