/* productor-list.css — liste publique des producteurs */

.productor-list {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: system-ui, sans-serif;
}

/* L’input de localisation */
.productor-list .location-input {
  margin-bottom: 2rem;
}

/* Cartes producteur (chaque Link) */
.productor-list a {
  display: block;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid #dce5dd;
  border-radius: 12px;
  background: #ffffff;
  text-decoration: none;
  color: #1b1b1b;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.productor-list a:hover {
  border-color: #4caf50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.12);
  transform: translateY(-2px);
}

/* Nom du producteur */
.productor-list a h3 {
  margin: 0 0 .25rem;
  font-size: 1.3rem;
  color: #2e7d32;
}

/* Description */
.productor-list a p:first-of-type {
  margin: .25rem 0 .5rem;
  color: #5f6f64;
  font-size: .95rem;
}

/* Adresse */
.productor-list a p:last-of-type {
  margin: 0;
  font-size: .9rem;
  color: #1b1b1b;
  font-weight: 500;
}
