/* ============================================================
   FICHE CHIOT — fonts cocooning + disposition corrigée
   ============================================================ */

/* Variables fonts */
:root {
  --font-fiche-titre:  'Fraunces', Georgia, serif;
  --font-fiche-corps:  'DM Sans', 'Nunito', sans-serif;
  --font-fiche-script: 'Bolina', 'Cormorant Garamond', cursive;
}

.fiche-chiot { background: #FAF8F4; padding-bottom: 80px; }
.fiche-chiot .negan-container { max-width: 1080px; }

/* Breadcrumb */
.fiche-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0 20px; font-size: 0.78rem; color: #8a7068;
}
.fiche-breadcrumb a { color: #8a7068; text-decoration: none; }
.fiche-breadcrumb a:hover { color: #C4717A; }
.fiche-breadcrumb svg { color: #C4717A; }
.fiche-breadcrumb span:last-child { color: #1A1A1A; font-weight: 500; }

/* Card générique */
.fcs-hero, .fcs-carac-section,
.fcs-parents-card, .fcs-sante-card,
.fcs-adopter-card, .fcs-pratique-card,
.fcs-engagement {
  background: #fff;
  border: 1px solid #E8E4DF;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(160,150,140,0.09), 0 0 0 1px rgba(160,150,140,0.05);
}

/* ── HERO ── */
.fcs-hero {
  display: grid;
  grid-template-columns: 620px 1fr;
  margin-bottom: 20px;
  overflow: hidden;
}

.fcs-gallery { display: flex; flex-direction: column; background: #FAF8F4; }
.fcs-gallery__main {
  overflow: hidden;
  aspect-ratio: 4/3.5;
  position: relative;
  cursor: zoom-in;
}
.fcs-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.fcs-gallery__main:hover img { transform: scale(1.03); }
/* Icône zoom */
.fcs-gallery__main::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23C4717A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") no-repeat center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  pointer-events: none;
  transition: opacity 0.2s;
}
.fcs-gallery__thumbs {
  display: flex; align-items: center; gap: 0;
  padding: 10px 12px; background: #FAF8F4;
  border-top: 1px solid #E8E4DF;
}
.fcs-gallery__nav {
  background: none; border: 1px solid #E8E4DF; border-radius: 50%;
  width: 28px; height: 28px; cursor: pointer;
  font-size: 1rem; color: #8a7068; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.fcs-gallery__nav:hover { background: #E8E4DF; }
.fcs-gallery__track {
  display: flex; gap: 8px; overflow-x: auto; padding: 0 8px; flex: 1;
  scrollbar-width: none;
}
.fcs-gallery__track::-webkit-scrollbar { display: none; }
.fcs-thumb {
  flex-shrink: 0; width: 72px; height: 72px; border-radius: 10px;
  overflow: hidden; border: 2px solid transparent;
  cursor: pointer; background: #E8E4DF; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.fcs-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcs-thumb.active { border-color: #C4717A; }
.fcs-thumb--video { background: #FAF8F4; border-color: #E8E4DF; }

/* Infos droite */
.fcs-info {
  padding: 28px 32px; border-left: 1px solid #E8E4DF;
  display: flex; flex-direction: column; gap: 12px;
}
.fcs-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; align-self: flex-start;
  background: #F0EDEA; color: #6a6068; border: 1px solid #E8E4DF;
}
.fcs-badge--disponible { background: #EFF5EC; color: #4A7A40; border-color: #C8DCC0; }
.fcs-badge--reserve    { background: #FFF8E8; color: #8A6A20; border-color: #E8D8A0; }
.fcs-badge--adopte     { background: #ECECEC; color: #666; }

.fcs-nom {
  font-family: var(--font-fiche-titre);
  font-size: 2.2rem; font-weight: 600; color: #1A1A1A; margin: 0;
  display: flex; align-items: center; gap: 10px; line-height: 1.1;
}
.fcs-race {
  font-family: var(--font-fiche-corps);
  font-size: 0.9rem; color: #8a7068; margin: 0;
}
.fcs-desc {
  font-family: var(--font-fiche-corps);
  font-size: 0.9rem; font-weight: 300; color: #5a4a42; line-height: 1.75; margin: 0;
}
.fcs-desc p { margin: 0 0 8px; }
.fcs-desc p:last-child { margin: 0; }
.fcs-sep { border: none; border-top: 1px solid #EDE8E2; margin: 4px 0; }

/* Specs */
.fcs-specs { display: flex; flex-direction: column; }
.fcs-spec {
  display: grid; grid-template-columns: 22px 150px 1fr;
  align-items: center; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid #F5F0EC;
}
.fcs-spec:last-child { border-bottom: none; }
.fcs-spec__icon { color: #C4717A; flex-shrink: 0; }
.fcs-spec__label { font-family: var(--font-fiche-corps); font-size: 0.8rem; color: #8a7068; }
.fcs-spec__value { font-family: var(--font-fiche-corps); font-size: 0.85rem; font-weight: 500; color: #1A1A1A; }

/* Boutons */
.fcs-btn-contact {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #C4717A; color: #fff;
  font-family: var(--font-fiche-corps);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 20px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s; margin-top: 4px;
}
.fcs-btn-contact:hover { background: #A84B6A; }
.fcs-btn-contact--sm { padding: 12px 20px; font-size: 0.8rem; }
.fcs-btn-fav {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-fiche-corps); font-size: 0.82rem; color: #C4717A; padding: 0;
}
.fcs-btn-fav:hover { color: #A84B6A; }
.fcs-btn-outline {
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1.5px solid #C4717A; color: #C4717A;
  font-family: var(--font-fiche-corps); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 20px; border-radius: 50px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.fcs-btn-outline:hover { background: #C4717A; color: #fff; }

/* Titre section */
.fcs-section-title {
  font-family: var(--font-fiche-titre);
  font-size: 1.15rem; font-weight: 500; color: #1A1A1A;
  margin: 0 0 20px; display: flex; align-items: center; gap: 8px;
}

/* ── CARACTÉRISTIQUES ── */
.fcs-carac-section {
  display: grid; grid-template-columns: 1fr 260px;
  margin-bottom: 20px; overflow: hidden;
}
.fcs-carac-section:not(:has(.fcs-carac-aside)),
.fcs-carac-section--full {
  grid-template-columns: 1fr !important;
}
.fcs-carac-card { padding: 28px 32px; border-right: 1px solid #E8E4DF; }
.fcs-carac-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: stretch;
  width: 100%;
}
.fcs-carac-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 10px;
  background: #FAF8F4;
  border: 1px solid #EBE0D9;
  border-radius: 12px;
}
.fcs-carac-item svg { flex-shrink: 0; }
.fcs-carac-item strong { font-family: var(--font-fiche-corps); font-size: 0.83rem; font-weight: 600; color: #1A1A1A; line-height: 1.3; }
.fcs-carac-item p { font-family: var(--font-fiche-corps); font-size: 0.73rem; color: #8a7068; line-height: 1.45; margin: 0; }
.fcs-carac-aside {
  padding: 28px 24px; background: #FAF8F4;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.fcs-carac-aside__script {
  font-family: var(--font-fiche-script);
  font-size: 1.35rem; color: #C4717A; line-height: 1.3; margin: 0;
}
.fcs-carac-aside__script em { font-style: italic; }
.fcs-carac-aside__text {
  font-family: var(--font-fiche-corps);
  font-size: 0.83rem; color: #5a4a42; line-height: 1.65; margin: 0;
}

/* ── PARENTS + SANTÉ ── */
.fcs-mid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.fcs-parents-card { padding: 28px 32px; }
.fcs-parents { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.fcs-parent { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.fcs-parent__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 12px; display: block; border: 1px solid #E8E4DF;
}
.fcs-parent__img--empty { background: #F0EDEA; border-radius: 12px; aspect-ratio: 4/3; width: 100%; }
.fcs-parent__role { font-family: var(--font-fiche-corps); font-size: 0.72rem; color: #C4717A; font-weight: 600; }
.fcs-parent__nom { font-family: var(--font-fiche-titre); font-size: 1.1rem; font-weight: 500; color: #1A1A1A; }
.fcs-parent__info { font-family: var(--font-fiche-corps); font-size: 0.75rem; color: #8a7068; }
.fcs-parents__legende {
  font-family: var(--font-fiche-corps); font-size: 0.8rem; color: #8a7068;
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; margin: 0;
}
.fcs-sante-card { padding: 28px 32px; }
.fcs-sante-content { display: flex; gap: 20px; margin-bottom: 16px; align-items: flex-start; }
.fcs-sante-list { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: 9px; }
.fcs-sante-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--font-fiche-corps); font-size: 0.84rem; color: #3D2B1F; line-height: 1.4;
}
.fcs-sante-badge {
  flex-shrink: 0; width: 76px; height: 76px;
  border-radius: 50%; border: 2px solid #E8E4DF;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; text-align: center; background: #FAF8F4;
  font-family: var(--font-fiche-corps); font-size: 0.58rem; font-weight: 700;
  color: #C4717A; letter-spacing: 0.06em;
}
.fcs-sante-note {
  background: #FFF8F4; border: 1px solid #EDCFC8; border-radius: 10px;
  padding: 12px 16px; font-family: var(--font-fiche-corps);
  font-size: 0.8rem; color: #5a4a42; line-height: 1.55;
  display: flex; align-items: flex-start; gap: 8px;
}

/* ── ADOPTER + INFOS PRATIQUES ── */
.fcs-bot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

/* Adopter — sans photo Natasha, tout dans le padding */
.fcs-adopter-card { padding: 32px 36px; display: flex; flex-direction: column; gap: 14px; }
.fcs-adopter__photo-wrap {
  float: left; margin: 0 20px 12px 0;
  width: 150px; border-radius: 14px; overflow: hidden;
  border: 1px solid #E8E4DF; flex-shrink: 0;
}
.fcs-adopter__photo-wrap img { width: 100%; display: block; object-fit: cover; }
.fcs-adopter__text { font-family: var(--font-fiche-corps); font-size: 0.87rem; color: #5a4a42; line-height: 1.7; }
.fcs-adopter__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; clear: both; }
.fcs-adopter__list li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-fiche-corps); font-size: 0.84rem; color: #3D2B1F;
}

/* Infos pratiques */
.fcs-pratique-card { padding: 32px 36px; display: flex; flex-direction: column; gap: 18px; }
.fcs-pratique-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.fcs-pratique-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid #F0EDEA;
}
.fcs-pratique-list li:last-child { border-bottom: none; }
.fcs-pratique-list li svg { flex-shrink: 0; margin-top: 2px; }
.fcs-pratique-list li > div { display: flex; flex-direction: column; gap: 2px; }
.fcs-pratique-list strong { font-family: var(--font-fiche-corps); font-size: 0.87rem; color: #1A1A1A; font-weight: 600; }
.fcs-pratique-list span { font-family: var(--font-fiche-corps); font-size: 0.78rem; color: #8a7068; }
.fcs-pratique-prix { display: flex; flex-direction: column; gap: 3px; padding-top: 4px; }
.fcs-pratique-prix__label { font-family: var(--font-fiche-corps); font-size: 0.73rem; color: #8a7068; }
.fcs-pratique-prix__montant {
  font-family: var(--font-fiche-titre);
  font-size: 2.2rem; font-weight: 600; color: #1A1A1A; line-height: 1;
}
.fcs-pratique-prix__note { font-family: var(--font-fiche-corps); font-size: 0.72rem; color: #8a7068; }

/* ── ENGAGEMENT ── */
.fcs-engagement {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 32px; flex-wrap: wrap;
}
.fcs-engagement__title {
  font-family: var(--font-fiche-titre);
  font-size: 0.95rem; font-weight: 500; color: #1A1A1A; white-space: nowrap;
}
.fcs-engagement__item { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 110px; }
.fcs-engagement__item > div { display: flex; flex-direction: column; gap: 1px; }
.fcs-engagement__item strong { font-family: var(--font-fiche-corps); font-size: 0.78rem; font-weight: 600; color: #1A1A1A; }
.fcs-engagement__item span { font-family: var(--font-fiche-corps); font-size: 0.72rem; color: #8a7068; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .fcs-hero { grid-template-columns: 1fr; }
  .fcs-info { border-left: none; border-top: 1px solid #E8E4DF; }
  .fcs-carac-section { grid-template-columns: 1fr; }
  .fcs-carac-aside { border-top: 1px solid #E8E4DF; }
  .fcs-carac-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .fcs-mid-grid, .fcs-bot-grid { grid-template-columns: 1fr; }
  .fcs-adopter__photo-wrap { float: none; width: 100%; margin: 0 0 12px; }
}
@media (max-width: 600px) {
  .fcs-carac-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .fcs-spec { grid-template-columns: 22px 110px 1fr; }
  .fcs-engagement { gap: 12px; }
}
/* ── Bouton téléphone ── */
.fcs-btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 2px solid #C4717A;
    border-radius: 50px;
    color: #C4717A;
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.18s, color 0.18s;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.fcs-btn-tel:hover { background: #C4717A; color: #fff; }
.fcs-btn-tel--lg { font-size: 1.1rem; }

/* ── Bouton WhatsApp — couleur officielle ── */
.fcs-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: #25D366;
    border-radius: 50px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.fcs-btn-whatsapp:hover { background: #1db954; }


/* ── LIGHTBOX photo gros plan ── */
.fcs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(20, 15, 12, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.fcs-lightbox.open { display: flex; }
.fcs-lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
  animation: fcs-lb-in 0.2s ease;
}
@keyframes fcs-lb-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.fcs-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.fcs-lightbox__close:hover { background: rgba(255,255,255,0.3); }
.fcs-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.fcs-lightbox__nav:hover { background: rgba(255,255,255,0.3); }
.fcs-lightbox__prev { left: 20px; }
.fcs-lightbox__next { right: 20px; }

/* ── FICHE REPRODUCTEUR — styles spécifiques ── */
.fcs-repro-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}
.fcs-repro-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #FAF8F4;
  border: 1px solid #EBE0D9;
  border-radius: 8px;
}
.fcs-repro-spec__icon { color: #C4717A; flex-shrink: 0; }
.fcs-repro-spec div { display: flex; flex-direction: column; gap: 1px; }
.fcs-repro-spec__label { font-size: 0.7rem; color: #8a7068; line-height: 1; }
.fcs-repro-spec__value { font-size: 0.83rem; font-weight: 600; color: #1A1A1A; line-height: 1.2; }

/* Icônes carac reproducteur */
.fcs-repro-carac {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #EDE8E2;
}
.fcs-repro-carac__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 12px 6px;
}
.fcs-repro-carac__item strong { font-size: 0.78rem; font-weight: 600; color: #1A1A1A; line-height: 1.2; }
.fcs-repro-carac__item span  { font-size: 0.7rem; color: #8a7068; }

/* Tests génétiques en ligne */
.fcs-repro-tests {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #E8E4DF;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(160,150,140,0.07);
}
.fcs-repro-test-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 150px;
  flex: 1;
}
.fcs-repro-test-item > svg { flex-shrink: 0; margin-top: 2px; }
.fcs-repro-test-item > div { display: flex; flex-direction: column; gap: 1px; }
.fcs-repro-test-item strong { font-size: 0.75rem; font-weight: 700; color: #1A1A1A; line-height: 1.2; }
.fcs-repro-test-item span   { font-size: 0.7rem; color: #8a7068; }
.fcs-repro-test-item--note  { background: #FFF8F4; border: 1px solid #EDCFC8; border-radius: 8px; padding: 8px 10px; }

/* Tags caractère */
.fcs-repro-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.fcs-repro-tag {
  padding: 5px 12px;
  background: #FAF8F4;
  border: 1px solid #EBE0D9;
  border-radius: 50px;
  font-size: 0.78rem;
  color: #5a4a42;
  font-weight: 500;
}

/* Pedigree */
.fcs-repro-pedigree { display: flex; flex-direction: column; gap: 14px; }
.fcs-repro-ped-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #FAF8F4;
  border-radius: 10px;
  border: 1px solid #EBE0D9;
}
.fcs-repro-ped-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.fcs-repro-ped-item > div { display: flex; flex-direction: column; gap: 2px; }
.fcs-repro-ped-role { font-size: 0.68rem; font-weight: 700; color: #C4717A; text-transform: uppercase; letter-spacing: 0.06em; }
.fcs-repro-ped-item strong { font-size: 0.95rem; font-weight: 600; color: #1A1A1A; }
.fcs-repro-ped-item span { font-size: 0.75rem; color: #8a7068; }

@media (max-width: 640px) {
  .fcs-repro-specs-grid { grid-template-columns: 1fr; }
  .fcs-repro-carac { grid-template-columns: repeat(2, 1fr); }
  .fcs-repro-tests { flex-direction: column; }
}
/* ── Photos parents — fiche chiot & reproducteur ── */
.fcs-parent__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #F0EDEA;
    margin-bottom: 8px;
}
.fcs-parent__img--empty {
    width: 100%;
    aspect-ratio: 1;
    background: #F0EDEA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.fcs-parent__img--empty::after {
    content: '🐾';
    font-size: 1.8rem;
    opacity: 0.3;
}

/* ── Photos parents cliquables ── */
.fcs-parent__img-wrap {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    transition: opacity 0.2s;
}
.fcs-parent__img-wrap:hover { opacity: 0.85; }
.fcs-parent__img-wrap .fcs-parent__img { margin-bottom: 0; }

.fcs-parent__nom-link {
    text-decoration: none;
    color: #C4717A;
}
.fcs-parent__nom-link:hover { text-decoration: underline; }

/* Pedigree reproducteur cliquable */
.fcs-repro-ped-item--link {
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}
.fcs-repro-ped-item--link:hover {
    box-shadow: 0 4px 16px rgba(196,113,122,0.18);
    transform: translateY(-2px);
}
.fcs-repro-ped-item--link strong { color: #C4717A; }