/* Conteneur flex filtre */
.producteurs-filtres-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8faf5;
    border-radius: 16px;
    border: 1px solid #d0dfcd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Colonnes */
.producteurs-filtres-wrapper .filtre-col {
    display: flex;
    flex-direction: column;
}

.producteurs-filtres-wrapper .col-varietes { flex: 0 0 300px; }
.producteurs-filtres-wrapper .col-cp       { flex: 0 0 180px; }
.producteurs-filtres-wrapper .col-btn      { flex: 0 0 160px; display: flex; flex-direction: column; justify-content: flex-end; }

.producteurs-filtres-wrapper .selected-filters { flex: 0 0 100%; }


/* Titres des champs */
.producteurs-filtres-wrapper .filtre-col label {
    font-weight: 700;
    font-size: 14px;
    color: #356c4a;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Select multiple */
.producteurs-filtres-wrapper #filtre-varietes {
    width: 100%;
    min-height: 160px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #b8c9b2;
    background: #ffffff;
    font-size: 14px;
    cursor: pointer;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.producteurs-filtres-wrapper #filtre-varietes:hover,
.producteurs-filtres-wrapper #filtre-varietes:focus {
    border-color: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
    outline: none;
}

/* Input code postal */
.producteurs-filtres-wrapper #filtre-cp {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #b8c9b2;
    background: #ffffff;
    font-size: 14px;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.producteurs-filtres-wrapper #filtre-cp:hover,
.producteurs-filtres-wrapper #filtre-cp:focus {
    border-color: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
    outline: none;
}

/* Bouton */
.producteurs-filtres-wrapper #btn-filtrer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50 0%, #3e8e41 100%);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 20px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-top: auto; /* pousse le bouton en bas */
}

.producteurs-filtres-wrapper #btn-filtrer:hover {
    background: linear-gradient(135deg, #3e8e41 0%, #2e6b33 100%);
    transform: translateY(-2px);
}

.producteurs-filtres-wrapper #btn-filtrer::before {
    content: "🔍";
    display: inline-block;
    font-size: 16px;
}


.producteurs-filtres-wrapper .col-rayon {
    flex: 0 0 120px;
}

.producteurs-filtres-wrapper #filtre-rayon {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid #b8c9b2;
    background: #fff;
    font-size: 14px;
    box-shadow: inset 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.producteurs-filtres-wrapper #filtre-rayon:hover,
.producteurs-filtres-wrapper #filtre-rayon:focus {
    border-color: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}


/* Rappel des filtres */
.producteurs-filtres-wrapper .selected-filters {
    width: 100%;
    margin-top: 10px;
    font-size: 13px;
    color: #356c4a;
}

@media(max-width:700px) {
    .producteurs-filtres-wrapper { flex-direction: column; }
    .producteurs-filtres-wrapper .col-btn { justify-content: stretch; }
}


/* Rappel des filtres */
.selected-filters {
    flex-basis: 100%; /* prend toute la largeur */
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #356c4a;
}

.selected-filters .filter-item {
    display: inline-block;
    margin-right: 8px;
    background: #e6f0e8;
    padding: 2px 6px;
    border-radius: 6px;
}


/* ---------- Conteneur des résultats ---------- */
#producteurs-results-wrapper {
    position: relative;
    float: right;
    width: 33%;
    overflow-y: hidden;
    padding: 0 10px;
    box-sizing: border-box;
}

/* ---------- Carte producteur ---------- */
.producteur-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.producteur-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.producteur-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.producteur-card p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: #555;
}

/* Highlight quand cliqué via la map */
.producteur-card.highlight-producer {
    border-color: #4CAF50;
    background-color: #f0fff4;
}

/* ---------- Bouton "Voir plus" ---------- */
#load-more {
    display: block;
    width: 100%;
    padding: 12px 0;
    margin: 10px 0;
    background-color: #4CAF50;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

#load-more:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

#load-more:active {
    transform: translateY(0);
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.popup-content {
    background: white;
    padding: 20px;
    width: 420px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
}
.popup-content h3 {
    margin-top: 0;
}
.popup-close {
    margin-top: 15px;
    padding: 8px 12px;
}

.producteurs-filtres-wrapper #btn-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f0f0f0 0%, #dcdcdc 100%);
  color: #444;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  margin-top: 10px; /* pour l'espacement sous 'Rechercher' */
}

/* Icône croix rouge */
.producteurs-filtres-wrapper #btn-reset::before {
  content: "✖";
  color: #cc0000;
  font-size: 15px;
  font-weight: bold;
}

/* Survol */
.producteurs-filtres-wrapper #btn-reset:hover {
  background: linear-gradient(135deg, #e5e5e5 0%, #cccccc 100%);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* Effet clic */
.producteurs-filtres-wrapper #btn-reset:active {
  transform: scale(0.97);
}


#producteurs-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 600px;
}

/* Carte */
#producteurs-map {
    flex: 0 0 67%;
    min-height: 600px;
    background: #f0f0f0;
}

/* Sidebar */
#producteurs-results-wrapper {
    flex: 0 0 33%;
    min-height: 600px;
    background: #fff;
    border-left: 1px solid #ccc;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    #producteurs-map,
    #producteurs-results-wrapper {
        flex: 0 0 100%;
        min-height: 400px;
    }

    #producteurs-results-wrapper {
        border-left: none;
        border-top: 1px solid #ccc;
    }
    
	.producteurs-filtres-wrapper .col-varietes, .producteurs-filtres-wrapper .col-cp, .producteurs-filtres-wrapper .col-rayon, .producteurs-filtres-wrapper .col-btn {
    	flex: 0 0 auto;
	}


}