/* ============================================================
   ARCHIVE REPRODUCTEURS
   ============================================================ */

.repro-filtres-section {
  background: #fff;
  padding: 40px 0 28px;
  border-bottom: 1px solid #EDE8E2;
}
.repro-filtres__title {
  font-family: var(--font-titre);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #3D2B1F;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.repro-filtres__sub {
  font-size: 0.88rem;
  color: #8a7068;
  margin-bottom: 18px;
}
.repro-filtres__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* Grille reproducteurs — 4 colonnes */
.repro-grille-section {
  padding: 48px 0 72px;
  background: var(--color-creme);
}
.repro-grille {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

/* ── Card reproducteur ──────────────────────────────────── */
.repro-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E8E4DF;
  box-shadow: 0 2px 12px rgba(160,150,140,0.09), 0 0 0 1px rgba(160,150,140,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.repro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

/* Carte promo "sélection exigeante" */
.repro-card--promo {
  background: #fff;
  border: 1px solid #E8E4DF;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.repro-card--promo svg { color: var(--color-rose); }
.repro-card--promo h3 {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  color: #3D2B1F;
  line-height: 1.3;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.repro-card--promo p { font-size: 0.85rem; color: #5a4a42; line-height: 1.6; margin: 0; }
.repro-card--promo ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.repro-card--promo ul li {
  font-size: 0.8rem;
  color: #5a4a42;
  padding-left: 16px;
  position: relative;
}
.repro-card--promo ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-rose);
  font-weight: 700;
}

/* Image card */
.repro-card__img {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #EDE8E2;
}
.repro-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.repro-card:hover .repro-card__img img { transform: scale(1.04); }
.repro-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EDE8E2, #F5E9E3);
}

/* Favori */
.repro-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-rose);
  transition: background 0.2s, color 0.2s;
}
.repro-card__fav:hover { background: var(--color-rose); color: #fff; }

/* Corps */
.repro-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.repro-card__header { display: flex; flex-direction: column; gap: 3px; }
.repro-card__name {
  font-family: var(--font-titre);
  font-size: 1rem;
  color: #3D2B1F;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.repro-card__sexe { font-size: 0.9rem; color: var(--color-rose); }
.repro-card__sous-titre { font-size: 0.78rem; color: var(--color-rose); margin: 0; }

.repro-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.repro-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #8a7068;
}
.repro-card__meta-item svg { color: #C4A882; flex-shrink: 0; }

.repro-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.repro-card__tag {
  background: #FAF8F4;
  border: 1px solid #E8E4DF;
  color: #5a4a42;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
}

.repro-card__btn {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-rose);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid #F5E9E3;
}
.repro-card__btn:hover { color: var(--color-bordeaux); }

/* Section élevage responsable */
.repro-responsable {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E8E4DF;
  box-shadow: 0 2px 12px rgba(160,150,140,0.09), 0 0 0 1px rgba(160,150,140,0.06);
}
.repro-responsable__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.repro-responsable__text {
  padding: 40px;
}
.repro-responsable__text h2 {
  font-family: var(--font-titre);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: #3D2B1F;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.repro-responsable__text p {
  font-size: 0.9rem;
  color: #5a4a42;
  line-height: 1.7;
  margin-bottom: 16px;
}
/* Sans image : 1 seule colonne centrée */
.repro-responsable--no-img {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
  .repro-grille { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .repro-grille { grid-template-columns: repeat(2, 1fr); }
  .repro-responsable { grid-template-columns: 1fr; }
  .repro-responsable__text { padding: 24px; }
}
@media (max-width: 480px) {
  .repro-grille { grid-template-columns: 1fr; }
}

/* ── Strip garanties bas de page ── */
.chiots-garanties-section {
  margin-top: 20px;
}
.chiots-garanties {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.chiots-garantie {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px 16px;
  border-right: 1px solid #F0EDEA;
}
.chiots-garantie:last-child { border-right: none; }
.chiots-garantie svg { color: #C4717A; flex-shrink: 0; }
.chiots-garantie strong {
  font-family: var(--font-titre, 'Fraunces', Georgia, serif);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.3;
}
.chiots-garantie span {
  font-size: 0.75rem;
  color: #8a7068;
  line-height: 1.45;
}
@media (max-width: 860px) { .chiots-garanties { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .chiots-garanties { grid-template-columns: repeat(2, 1fr); } }
