/* ============================================================
   PAGE : NOS PRODUITS
   ============================================================ */

.nos-produits__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nos-produits__header .page-title {
  margin-bottom: 0;
}

.nos-produits__ab-logo {
  flex-shrink: 0;
  display: block;
}

/* Grille de cartes produits */
.produits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.produit-card {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.produit-card__img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  display: block;
}

.produit-card__body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.produit-card__title {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  margin: 0;
}

.produit-card__body p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.produit-card__body ul {
  margin: 0;
}

.produit-card__body ul li {
  font-size: 13px;
  line-height: 1.4;
}

.produit-card__semences {
  font-size: 11px !important;
}

/* Premier prix d'une série : pousse tout le bloc prix vers le bas */
.produit-card__price {
  font-weight: var(--fw-semibold);
  font-size: 13px;
}

.produit-card__price:not(.produit-card__price + .produit-card__price) {
  margin-top: auto;
  padding-top: 0.5rem;
}

.produit-card__price-alt {
  font-weight: var(--fw-regular);
  color: var(--color-gray-light);
  font-size: 12px;
}

/* Titre de section secondaire */
.nos-produits__section-title {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-size: var(--fs-title);
  font-weight: var(--fw-semibold);
}

/* Lien Tarifs PDF */
.nos-produits__tarifs {
  margin-top: 2rem;
  font-weight: var(--fw-semibold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .produits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .produits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
