/* Product page – theme match with style.css */
body {
  background: #e8efe6;
}

.produit-hero {
  padding: 48px 20px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.produit-hero-content {
  margin-bottom: 36px;
}

.produit-hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f7036;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}

.produit-hero-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2d3a2a;
  max-width: 640px;
}

.produit-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 560px;
  margin-left: 0;
}

.produit-hero-box {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 58, 42, 0.12);
}

.produit-hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produit-intro {
  background: #fff;
  padding: 48px 20px;
  margin: 0;
}

.produit-intro-inner {
  max-width: 720px;
  margin: 0 auto;
}

.produit-intro h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f7036;
  margin-bottom: 16px;
  font-family: "Montserrat", sans-serif;
}

.produit-intro p {
  font-size: 1rem;
  line-height: 1.65;
  color: #2d3a2a;
  margin-bottom: 20px;
}

.produit-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.produit-benefits li {
  padding: 10px 14px;
  background: #e8efe6;
  border-radius: 8px;
  color: #2d5a3d;
  font-weight: 500;
  font-size: 0.95rem;
}

.produit-cards {
  padding: 56px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.produit-cards-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f7036;
  text-align: center;
  margin-bottom: 32px;
  font-family: "Montserrat", sans-serif;
}

.produit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.produit-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(45, 58, 42, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.produit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(45, 58, 42, 0.14);
}

.produit-card-img {
  padding: 32px 24px 16px;
  background: #f8faf8;
  text-align: center;
}

.produit-card-img img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.produit-card-body {
  padding: 20px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produit-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3a2a;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

.produit-card-desc {
  font-size: 0.9rem;
  color: #5a6b57;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.produit-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f7036;
  margin-bottom: 16px;
}

.btn-produit {
  display: inline-block;
  text-align: center;
  padding: 12px 24px;
  background: #1f7036;
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-produit:hover {
  background: #2d5a3d;
}

.produit-cta {
  background: #2d5a3d;
  color: #fff;
  padding: 36px 20px;
  text-align: center;
}

.produit-cta p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #1f7036 !important;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-cta:hover {
  background: #e8efe6;
  color: #2d5a3d !important;
}

@media (max-width: 768px) {
  .produit-hero-grid {
    grid-template-columns: 1fr;
  }
  .produit-hero-content h1 {
    font-size: 1.6rem;
  }
}
