/* Fiche producteur — écran de saisie (espace producteur) et section publique
   (boutique). Additif : n'écrase aucune règle existante. */

/* ------------------------------------------------- Écran de saisie (privé) */
.fiche-intro {
  color: #5d6d63;
  margin: 0 0 20px;
  max-width: 62ch;
}
.fiche-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
}
.fiche-bloc {
  background: #fff;
  border: 1px solid #dfe7e0;
  border-radius: 14px;
  padding: 18px 20px;
}
.fiche-bloc h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: #163d2a;
}
.fiche-bloc label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  color: #2a3f33;
}
.fiche-bloc input,
.fiche-bloc textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 400;
  color: #173524;
  border: 1px solid #ccd8d1;
  border-radius: 9px;
  box-sizing: border-box;
}
.fiche-bloc textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.55;
}
.fiche-bloc input[type="file"] {
  padding: 8px;
  background: #f6f9f6;
}
.fiche-aide {
  margin: 4px 0 0;
  font-size: .86rem;
  color: #5d6d63;
}
.fiche-aucune-photo {
  margin: 0 0 14px;
  color: #5d6d63;
  font-style: italic;
}
.fiche-photo-actuelle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.fiche-photo-actuelle img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #d7dfd8;
  background: #eef2ee;
}
.fiche-supprimer {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  font-weight: 400 !important;
  color: #7a3b32;
}
.fiche-supprimer input {
  width: auto !important;
  margin: 0 !important;
}
.fiche-actions {
  display: flex;
  gap: 10px;
}

/* ----------------------------------------------- Section publique (boutique) */
.fiche-pub {
  max-width: 1100px;
  margin: 56px auto;
  padding: 0 20px;
  scroll-margin-top: 90px; /* l'ancre ne se cache pas sous l'en-tête */
}
.fiche-pub-entete {
  text-align: center;
  margin-bottom: 28px;
}
.fiche-pub-entete .eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: #7d8c72;
  margin-bottom: 6px;
}
.fiche-pub-entete h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #2c4a2c;
}
.fiche-pub-corps {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  background: #fdfbf6;
  border: 1px solid #e6ddcb;
  border-radius: 20px;
  padding: 30px;
}
.fiche-pub-photo {
  flex: 0 0 260px;
}
.fiche-pub-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #eef2ee;
}
.fiche-pub-contenu {
  flex: 1 1 320px;
  min-width: 0;
}
.fiche-pub-texte p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: #3b4a3c;
}
.fiche-pub-texte p:last-child {
  margin-bottom: 0;
}
.fiche-pub-coordonnees {
  list-style: none;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #e6ddcb;
  display: grid;
  gap: 12px;
}
.fiche-pub-coordonnees li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fiche-pub-coordonnees span {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  color: #7d8c72;
}
.fiche-pub-coordonnees strong,
.fiche-pub-coordonnees a {
  font-size: 1rem;
  color: #2c4a2c;
  font-weight: 600;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.fiche-pub-coordonnees a:hover,
.fiche-pub-coordonnees a:focus {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .fiche-pub-corps {
    flex-direction: column;
    padding: 22px;
  }
  .fiche-pub-photo {
    flex: 0 0 auto;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
