/* ===== Section Boutique ===== */
.boutique-section {
  padding: 60px 0;
  background: #f5f5f5;
  border-radius: 24px;
  box-shadow: 0 2px 12px #c9c7e4;
  display: flex;
  justify-content: center;
}

.boutique-section h2 {
  text-align: center;
  color: #6e3071;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 36px;
}

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  padding: 0 12px;
  justify-items: center;
}

.produit-card {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 28px 32px 28px;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px #c9c7e4;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.produit-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(235, 127, 151, 0.18);
}

.produit-card img {
  width: 100%;
  max-width: 180px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px #eb7f97;
}

.produit-card h3 {
  color: #6e3071;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 18px;
  font-size: 1.1rem;
  text-align: center;
}

.produit-card .prix {
  color: #f29229;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.produit-card p {
  color: #9d6232;
  font-size: 1.05rem;
  margin-bottom: 22px;
  line-height: 1.7;
  text-align: center;
}

.produit-card .btn-acheter {
  background: #eb7f97;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  margin-top: auto;
}

.produit-card .btn-acheter:hover {
  background: #6e3071;
}

.produit-card .btn-main {
  margin-top: 8px;
  padding: 10px 0;
  font-size: 1rem;
  width: 60%;
  min-width: 120px;
  max-width: 180px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 2px 8px #c9c7e4;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.produit-card .btn-main:hover {
  background: #66bda3;
  color: #fff;
  box-shadow: 0 4px 16px #66bda344;
  transform: scale(1.05);
}

/* Badge nouveauté ou promo */
.produit-card .badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #f29229;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 16px;
  font-family: 'Poppins', Arial, sans-serif;
  box-shadow: 0 2px 8px #c9c7e4;
}

/* Section d'introduction de la boutique */
.boutique-intro {
  background: #fff6ea;
  border-radius: 24px;
  box-shadow: 0 2px 8px #c9c7e4;
  padding: 32px 18px;
  margin: 32px 0 24px 0;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: auto;
}

.intro-img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 2px 8px #eb7f97;
  background: #eb7f97;
}

.boutique-intro h2 {
  color: #eb7f97;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.boutique-intro p {
  color: #6e3071;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* ===== Responsive Boutique ===== */
@media (max-width: 700px) {
  .produits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .boutique-section {
    padding: 32px 0;
  }
  .intro-content {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .intro-img {
    margin-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .produits-grid {
    gap: 24px;
    max-width: 98vw;
  }
  .boutique-section {
    padding: 24px 2vw;
  }
}

@media (max-width: 600px) {
  .produits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .produit-card {
    max-width: 98vw;
    min-height: 320px;
  }
}