/* =====================================================
   CSS SPÉCIFIQUE À L’ACCUEIL BOUTIQUE
   (scopé pour éviter les conflits globaux)
   ===================================================== */

.boutique-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* TITRE */
.boutique-section .gold-title {
  font-size: 2.2em;
  text-align: center;
  color: #d4af37;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* LISTE PRODUITS — override des UL globaux */
.boutique-section ul.products-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  padding: 0;
  margin: 0;
}

/* CARTE PRODUIT */
.boutique-section .product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Empêche les règles li globales */
.boutique-section .product-card {
  width: auto !important;
  float: none !important;
}

.boutique-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* IMAGE */
.boutique-section .product-img {
  text-align: center;
  margin-bottom: 15px;
}

.boutique-section .product-img img {
  width: 200px;
  max-width: 100%;
}

/* TEXTE */
.boutique-section .product-title {
  font-size: 1.3em;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}

.boutique-section .product-subtitle {
  text-align: center;
  font-size: 1.05em;
  color: #b88a2a;
}

.boutique-section .product-desc {
  font-size: 0.95em;
  text-align: center;
  color: #555;
  margin: 10px 0 15px;
}

/* PRIX */
.boutique-section .product-price {
  font-size: 1.2em;
  color: #bb1017;
  text-align: center;
}

.boutique-section .product-availability {
  font-size: 0.9em;
  text-align: center;
  margin-bottom: 15px;
}

/* ÉTOILES */
.boutique-section .stars-box {
  text-align: center;
  margin: 10px 0;
}

/* BOUTON */
.boutique-section .product-btn {
  display: block;
  text-align: center;
  background: linear-gradient(90deg,#d4af37,#c3961f);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1.05em;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background .25s;
}

.boutique-section .product-btn:hover {
  background: linear-gradient(90deg,#c3961f,#d4af37);
}

/* ================================
   BANDEAU AVIS CLIENTS
   ================================ */

/* ===== ÉTOILES SVG ===== */
.svg-star {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* Couleur de base argent */
.svg-star path {
  fill: url(#star-silver-gradient);
  stroke: rgba(255,255,255,0.4);
  stroke-width: 0.4;
}

.svg-star {
  animation: starGlow 6s ease-in-out infinite;
}

@keyframes starGlow {
  0% {
    filter:
      drop-shadow(0 0 1px rgba(255,255,255,0.25))
      drop-shadow(0 1px 2px rgba(0,0,0,0.4));
  }
  50% {
    filter:
      drop-shadow(0 0 6px rgba(255,255,255,0.65))
      drop-shadow(0 0 10px rgba(212,175,55,0.25));
  }
  100% {
    filter:
      drop-shadow(0 0 1px rgba(255,255,255,0.25))
      drop-shadow(0 1px 2px rgba(0,0,0,0.4));
  }
}

/* ===== BANDEAU AVIS ===== */
.bandeau-avis-link { text-decoration: none; }

.bandeau-avis {
  background: linear-gradient(90deg,#f6e7b6,#d4af37,#f6e7b6);
  padding: 12px 20px;
  margin-bottom: 40px;
  transition: transform .2s, box-shadow .2s;
}

.bandeau-avis:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.bandeau-avis-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bandeau-texte,
.bandeau-note {
  font-weight: 600;
  color: #3a2a00;
}

.bandeau-etoiles {
  display: flex;
  gap: 4px;
}

.intro-text {
  max-width: 820px;
  margin: 0 auto 45px auto;
  padding: 22px 28px;
  font-size: 1.15em;
  line-height: 1.65;
  text-align: center;
  color: #444;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(250,248,244,0.95)
  );
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  position: relative;
}

/* Accent doré discret */
.intro-text::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

/* Mise en valeur du nom */
.intro-text strong {
  color: #b8943c;
  font-weight: 600;
}

.product-card #voir_avis {
	display: none;
}

.product-old-price {
  margin-top: 4px;
  text-align: center;
  font-size: 0.9em;
  color: #9a9a9a;
  letter-spacing: 0.2px;
}

.product-old-price span {
  text-decoration: line-through;
  opacity: 0.85;
}

.product-old-price::before {
  content: "— ";
  color: #c8a94a;
}