<style>
/* === STYLE GLOBAL DU PRODUIT === */
.product-container.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* === BLOC DES BULLES === */
.pm-features {
  border: 2px solid #e91683;
  border-radius: 14px;
  background: #fff5fa;
  padding: 25px;
  margin: 35px auto 25px;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Chaque bulle */
.pm-features li,
.pm-features a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e91683;
  border-radius: 50px;
  background: #fff;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 5px rgba(0,0,0,0.04);
}

.pm-features li:hover,
.pm-features a:hover {
  background: #ffe4f2;
  transform: translateY(-2px);
}

.pm-features li i,
.pm-features a i {
  margin-right: 6px;
  color: #e91683;
}

/* Petit texte de Charles en dessous */
.pm-note, .pm-features .pm-note {
  flex-basis: 100%;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
  color: #555;
}

/* === DESCRIPTION DU PRODUIT === */
.product-information {
  border: 2px solid #e91683;
  border-radius: 14px;
  background: #fff;
  padding: 30px;
  margin: 30px auto 40px;
  max-width: 1200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Titre description plus lisible */
.product-information h2,
.product-information h3 {
  color: #e91683;
  font-weight: 700;
}

/* === RESPONSIVE (téléphone) === */
@media (max-width: 768px) {
  .pm-features {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .pm-features li,
  .pm-features a {
    width: 100%;
    text-align: center;
  }
  .product-information {
    padding: 20px;
  }
}
</style>