/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 80:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.section-produits-ronds {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff8f0;
}

.section-produits-ronds h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
}

.grille-produits-ronds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.produit-rond {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease;
}

.produit-rond:hover {
  transform: scale(1.05);
}

.image-rond {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e3b47c;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.image-rond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.titre-produit {
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #5a3e2b;
  line-height: 1.4;
  text-align: center;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.titre-produit a {
  text-decoration: none;
  color: inherit;
}

.titre-produit a:hover {
  color: #a9742c;
  text-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
}
</style>