/* ============================
   PAGE PRODUIT SIMPLE
============================ */

.product-hero{
  width: 100%;
  background: #f3f4f6;
  padding: 40px 0; /* espace autour de l’image */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image centrée et réduite */
.product-hero img{
  width: 100%;
  max-width: 420px;   /* taille idéale sur desktop */
  height: auto;
  object-fit: contain;
  display: block;
}

.product-detail h1{
  margin-top: 0;
}

.product-detail h2{
  margin: 16px 0 6px;
  font-size: 16px;
  color: var(--text);
}

.product-meta{
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px){
  .product-hero{
    padding: 20px 0;
  }

  .product-hero img{
    max-width: 280px;
  }
}

.product-subtitle{
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.product-highlight{
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.product-free{
  margin-top: 6px;
  font-size: 12px;
  color: #16a34a; /* vert doux */
  font-weight: 500;
  letter-spacing: .02em;
}