/*
Theme Name: Maison Montfort
Theme URI: https://chirripo.fr
Template: hello-elementor
Author: Benjamin
Author URI: chirripo.fr
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.4.1760949371
Updated: 2025-10-20 10:36:11

*/
body {
    overflow-x: hidden;
}

.comments-area a,.page-content a {
    text-decoration: none !important;
}

h2,h3,h4 {
    font-size: inherit;
    line-height: inherit;
}



.cache-container { 
    overflow: hidden; 
}

.cache-container:hover {
    background-color: #101a4161;
}

/* ---------- TEXTE (cache-front) ---------- */
/* ÉTAT NORMAL = utilisé quand on QUITTE le hover → on met plus lent */
.cache-front {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(8px);
    transition:
        opacity .35s ease,
        max-height .9s cubic-bezier(.22,1,.36,1), /* lent, ease-out */
        transform .9s cubic-bezier(.22,1,.36,1);
    will-change: opacity, max-height, transform;
}

/* ÉTAT HOVER = utilisé quand on ENTRE en hover → plus rapide */
.cache-container:hover .cache-front {
    opacity: 1;
    max-height: 500px; /* assez grand pour ton texte */
    transform: translateY(0);
    transition:
        opacity .25s ease,
        max-height .45s cubic-bezier(.4,0,.2,1), /* plus rapide */
        transform 1s cubic-bezier(.4,0,.2,1);
}

/* ---------- IMAGE (cache-hover) ---------- */
/* Visible au repos : on veut que sa réapparition soit lente (retour) */
.cache-hover {
    opacity: 1;
    max-height: 800px; /* assez grand pour l’image */
    overflow: hidden;
    transition:
        opacity .35s ease,
        max-height .9s cubic-bezier(.22,1,.36,1);
    will-change: opacity, max-height;
}

/* Disparition au hover : rapide */
.cache-container:hover .cache-hover {
    opacity: 0;
    max-height: 0;
    transition:
        opacity .25s ease,
        max-height .45s cubic-bezier(.4,0,.2,1);
}



/******************************************/
/************* FILTRE RECETTE *************/
/******************************************/

/* Desktop = montrer les boutons, cacher le select */
/* Desktop = montrer boutons */
.taxo-select-mobile {
  display: none;
}
.taxo-buttons-viande,
.taxo-buttons-moment {
  display: none !important;
}

#select-viande,
#select-moment {
  display: block;
}
/* Mobile = afficher select + cacher boutons */
@media (max-width: 768px) {
  .taxo-select-mobile {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
  }

  .taxo-buttons-saison{
    display: none !important;
  }
}

#recettes-filtres select {
    -webkit-appearance: none; 
    background-color: var(--e-global-color-accent);
    font-family: "Raleway", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--e-global-color-primary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    padding: 13px 20px 11px 20px;
    transition: all 0.2s ease;
    box-shadow: 0 0 22px 0px rgb(135 135 135 / 27%);
    text-transform: none;
    border-radius: 10px;
    background-clip: padding-box; /* aide à afficher border-radius + shadow */

}


/* -------- STRUCTURE GÉNÉRALE -------- */
.filtre-recettes {
	background-color: #fdf6ec;
	padding: 1rem;
	font-family: 'Inter', sans-serif;
	border-radius: 8px;
}

button.e-filter-item.filtre-tax.active {
    background-color: #101a41;
    color: #f5ecd9 !important;
}

button.e-filter-item.filtre-tax {
  background: #f4ecd9;
  border: 1px solid #f4ecd9;
  color: #101A41 !important;
  font-family: "Raleway", Sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 13px 20px 11px 20px !important;
}

button.e-filter-item.filtre-tax:hover{
  background: #f4ecd9 !important;
  border: 1px solid #f4ecd9;
  color: #101A41 !important;
  font-family: "Raleway", Sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 13px 20px 11px 20px !important;
}

.taxo-buttons-saison {
  gap: 6px !important
}


/* -------- ALIGNEMENT GLOBAL -------- */
.filtre-ligne {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* -------- BOUTONS DE BASE -------- */
.btn-saison,
.btn-rapide,
.btn-deroulant {
	background: #f6efe0;
	border: none;
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.2s;
}

.btn-saison:hover,
.btn-rapide:hover,
.btn-deroulant:hover {
	background: #ece3d3;
}

.btn-saison.active {
	background: #0b0c2a;
	color: white;
}

/* -------- MENU DÉROULANT -------- */
.menu-deroulant {
	position: relative;
}

.fleche {
	font-size: 0.8rem;
	margin-left: 0.3rem;
	transition: transform 0.2s;
}

.contenu-deroulant {
	display: none;
	position: absolute;
	top: 110%;
	left: 0;
	background: #fbf5e9;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 0.8rem 1rem;
	z-index: 10;
	flex-direction: column;
}

.contenu-deroulant label {
	display: block;
	margin: 0.4rem 0;
	cursor: pointer;
}

.menu-deroulant.open .contenu-deroulant {
	display: flex;
}

.menu-deroulant.open .fleche {
	transform: rotate(-180deg);
}

/* -------- SPÉCIFIQUE POUR LA COHÉRENCE VISUELLE -------- */
.filtre-saisons {
	display: flex;
	gap: 0.5rem;
}

.filtre-deroulants {
	display: flex;
	gap: 0.5rem;
}

#filtre-acf {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
body.search-open #menu-droite {
    opacity: 0!important;
}

input#search-4f0b586 {
    color: #101A41;
}

#btnelem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

  .filtre-acf:hover {
    background-color: #fbf5e9 !important;
  }

/* -------- RESPONSIVE -------- */
@media (max-width: 768px) {
	.filtre-ligne {
		flex-direction: column;
		align-items: flex-start;
	}

  #btnelem {
    gap: 0px !important;
  }

  #recettes-filtres select, .filtre-acf, .taxo-select-mobile {
    font-size: 15px !important;
    padding:  8px 10px 8px 10px !important;
    box-shadow: 0 0 22px 0px rgb(135 135 135 / 50%) !important;
  }



/*@supports (-webkit-touch-callout: none) {
  .taxo-select {
    background-color: var(--e-global-color-accent);
    font-family: "Raleway", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--e-global-color-primary);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--e-global-color-accent);
    padding: 13px 20px 11px 20px !important;
    transition: all 0.2s ease;
    box-shadow: 0 0 22px 0px rgb(135 135 135 / 27%);
    text-transform: none;
    border-radius: 10px;
  }
}*/



  #recettes-filtres {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }

  #recettes-filtres {
    top: 90px !important;
  }

  .etiquette_rec {
    font-size: 14px !important;
    padding: 2px 10px !important;
    margin-bottom: 25px !important;
  }

}

/******************************************/
/******** Overlay pages produits **********/
/******************************************/
.img-gradient {
  display: inline-block;
  position: relative;
  width: 100%;
}
.img-gradient img {
  width: 100%;
  height: auto;
  display: block;
}
.img-gradient::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
  /*transform: scale(1.4);*/
  overflow: hidden;
}


/******************************************/
/*********** Zoom Hover Image.  ***********/
/******************************************/
.zoom-img{
  background-size: 115% auto !important;
  background-position: center center !important;
  transition: background-size .6s ease, background-position .6s ease;
  will-change: background-size;
  overflow: hidden;
}

@media (max-width:768px) {
  .zoom-img{
    background-size: cover !important;
  }
}

/* HOVER: zoom fluide */
.zoom-img:hover{
  background-size: 125% auto !important;
}

.zoom-img:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.33) 75%);
  overflow: hidden;
  z-index: 0;
}

/******************************************/
/******** Animation Carte Recette *********/
/******************************************/
.conseil-card {
  overflow: hidden; /* masque le contenu descendu */
  display: block;
  position: relative;
}

.section-cache {
  transition: margin-bottom 0.4s ease-in-out;
}
.conseil-card * {
  overflow: hidden; /* masque le contenu descendu */
}

.html5-main-video {
    width: 100% !important;
    left: 0 !important;
}
/******************************************/
/* Transforme les filtres verticaux en liste déroulante */
/******************************************/
.custom-dropdown {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 0 22px 0px rgb(135 135 135 / 27%);
}

.dropdown-selected {
    display: flex;
    align-items: center;
    background-color: #F5ECD8;
    color: #101A41;
    border: 1px solid #101A41;
    padding: 12px 20px !important;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    min-width: 160px;
    text-align: left;
    text-transform: none !important;
    border-radius: 10px !important;
}

.dropdown-selected:hover,.dropdown-selected:focus {
  background-color: #F5ECD8 !important;
}

#recettes-filtres {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 2rem 0;
    padding: 10px 0;
    position: sticky;
    top: 160px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease;
}

#recettes-filtres {
    opacity: 1;
    transition: opacity 0.3s ease !important;
}

#recettes-filtres.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
}


.e-filter-item {
  background: #f4ecd9;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: #222;
  transition: all 0.2s ease;
  box-shadow: 0 0 22px 0px rgb(135 135 135 / 27%);
  text-transform: none !important;
  border-radius: 10px !important;
}

.e-filter-item.filtre-acf.active{
  background: #101a41 !important;
  color: #f4ecd9 !important;
}

.e-filter-item:hover {
  background: #e9e5dd;
}

#reset-filtres {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #900;
}

#recettes-results.loading {
  opacity: .5;
}

.e-filter-item.filtre-acf {
  text-transform: none;
}


.dropdown-selected::after {
    content: url('https://montfort.chirripo-dev.fr/wp-content/uploads/2025/10/chevron2.gif');
    float: right;
    margin-left: 80px;
    font-size: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F5ECD8;
    border: 1px solid #101A41;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-menu li {
    list-style: none;
    padding: 10px 15px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: #101A41;
    color: #F5ECD8;
}

.dropdown-menu.open, .dropdown-menu.open li, .taxo-moments .dropdown-selected, .taxo-canard .dropdown-selected {
    padding: 5px;
} 

.taxo-moments .dropdown-selected::after, .taxo-canard .dropdown-selected::after {
    float: none;
}

ul.dropdown-menu.open {
    margin-top: 15px;
    border: 0;
      box-shadow: 0 0 22px 0px rgb(135 135 135 / 27%);
}


/******************************************/
/* Section sticky page produits */
/******************************************/
/* Dans les réglages de la page */
/*.section-sticky {
position: -webkit-sticky;
        position: sticky;
        top: 0;
}*/


/******************************************/
/* Filtres Festif & Rapide */
/******************************************/


#filtre-acf #filtre-time, #pad-fes {
  background: #F5ECD8;
  color: #101A41;
  margin: 0 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.17);
  padding: 4px;
  cursor: pointer;
  rotate: 0deg;
  transition: 0.2s;
}

#filtre-acf button#filtre-festif.active {
  background: #101A41;
  color:#F5ECD8;
  border-radius: 8px;
  border: 2px solid #101A41;
  padding: 4px 10px;
  
}

#filtre-acf button#filtre-festif:hover {
  border: 2px solid #101A41;
  padding: 4px 10px;
  border-radius: 8px;
}

#filtre-acf button#filtre-time.active {
  background: #F5A538;
}

#filtre-acf button#filtre-time:hover svg {
  rotate: 20deg;
  transition: rotate 0.3s ease-in-out;
}

#filtre-time {
    padding: 0 !important;
    aspect-ratio: 1 / 1 !important;
    width: 60px;
    border: 0;
}

#filtre-time svg {
    margin-top: 6px;
    padding: 2px;
}

#filtre-acf button#filtre-time.active svg path {
      stroke:#F5ECD8 ;
}

#filtre-festif {
    border: 2px solid #F5ECD8;
    text-transform: none !important;
    padding: 4px 10px;

  border-radius: 8px;
}

div#pad-fes {
    display: flex;
    align-items: center;
    padding: 12px;
}


/******************************************/
/* Filtres produits */
/******************************************/

.filtre-section {
  transition: background 0.2s ease;
}
/* --- Conteneur sticky global --- */
.filtre-sticky {
  position: sticky;
  top: 80px; /* ajuste selon la hauteur de ton header */
  z-index: 999;
  width: 100%;
}

/* --- Contenu interne du filtre --- */
#filtre-produits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
  margin: auto;
  padding: 4px 5px;
  
}

#filtre-produits {
  background: #101A41; 
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}


/* --- Boutons --- */
#filtre-produits button {
  background: transparent;
  color: #F5ECD8;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.15s;
  font-size: 16px;
  opacity: 0.85;
  border: 1px solid #101A41;
}

#filtre-produits button:hover {
  color: #F5ECD8;
  opacity: 1;
  border-color: #F5ECD8;;
}

#filtre-produits button.active {
  background: #F5ECD8;
  color: #101A41;
  opacity: 1;
  transform: scale(1.05);
}

.elementor-widget-loop-grid .e-loop-item {
  transition: all 0.3s ease;
}
.elementor-widget-loop-grid .e-loop-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  visibility: hidden;
  position: absolute;
}

/* === Grille responsive pour les recettes === */
#recettes-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* Tablette (≥768px) → 2 colonnes */
@media (min-width: 768px) {
  #recettes-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (≥1024px) → 4 colonnes */
@media (min-width: 1024px) {
  #recettes-results {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ajuste les éléments internes (pour éviter débordement) */
#recettes-results .recette {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.liste-recette-associees svg {
  height: 20px !important;
  width: 20px !important;
}


.card-rec-asso {
    justify-content: end !important;
}
/******************************************/
/* Slider conseils page recette */
/******************************************/
/* Gabarit carte */
.conseil-card{
  position: relative;
  height: 48vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  background: #000;
}


/* Image/iframe occupe 100% de la carte */
.conseil-media{
  position: absolute;
  inset: 0;
}
.conseil-media img,
.conseil-media iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Voile dégradé pour la lisibilité */
.conseil-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}

/* Contenu en overlay */
.conseil-content{
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  color: #fff;
  z-index: 2;
}

/* Titre toujours visible */
.conseil-title{
  margin: 0;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.15;
}

/* Bloc qui se révèle au survol */
.conseil-more{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height .35s ease, opacity .25s ease, transform .25s ease;
}
.conseil-excerpt{
  margin: 10px 0 14px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
}

/* Bouton */
.conseil-btn{
  display: inline-block;
  background: #fff;
  color: #0f1320;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: .3px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.btn-pdt {
    background-color: #101a41 !important;
    font-size: 14px !important;
    fill: var(--e-global-color-accent);
    color: #f5ecd8 !important;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #101a41 !important;
    border-radius: 10px 10px 10px 10px !important;;
}

.btn-pdt:hover, .btn-pdt:focus {
    background-color: #f5ecd8 !important;
    color: #101a41 !important;
     border-color: #101a41 !important;
}

@media (hover:hover){
  /* Ouvre l’extrait + bouton sur TOUTE carte survolée */
  .conseil-card:hover .conseil-more{
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bonus accessibilité : ouvre aussi au focus clavier sur le lien de la carte */
.conseil-card:focus-within .conseil-more{
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

/* Icône Play centrée (vidéo) */
.conseil-card.is-video .play-icon{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
  font-size: 31px;
  line-height: 1;
  padding: 16px 13px 1px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  color: #111;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  z-index: 3;
  cursor: pointer;
}

.swiper-slide a {
    overflow: hidden;
}


/* Lecture en cours : ne modifie que la carte cliquée */
.conseil-card.is-playing .conseil-content{ display: none; }
.conseil-card.is-playing .conseil-media{ height: 100%; aspect-ratio: auto; }
.conseil-card.is-playing .play-icon{ display: none; }

.is-video .conseil-content {
  display: none;
}

.swiper.conseils-slider {
  padding-bottom: 50px;;
}

.conseil-card img {
    transform: scale(1);
    transition: transform 0.25s ease-in-out;
}

.conseil-card:hover img {
    transform: scale(1.1);
    transition: transform 0.25s ease-in-out;
}

.preparation-list {
  font-weight:normal;
  font-size: 20px;
  list-style: none;
}
.preparation-list li {
  padding-bottom: 15px;
}

.ingredients-list {
  font-weight:bold;
  font-size: 26px;  
  line-height: 1.4;
}


/* === MAPS === MAPS === MAPS === MAPS === MAPS  */

#map {
    min-height: 90vh !important;
    z-index: 4;
    width:100vw;
}

.leaflet-bottom.leaflet-right {
	display: none !important;
}

.video-responsive {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
	margin-bottom: 10px;
}

.video-responsive iframe {
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	position: absolute;
}

.nom_producteur_panel {
    font-size: 30px;
    font-weight: 700;
}

#localite_producteur {
	color: var(--e-global-color-primary);
	font-style: italic;
	font-weight: 500;
}

#producteur_descr {
	color: var(--e-global-color-primary);
	font-weight: 500;
	margin: 5px 0px;
}

.leaflet-popup-content {
	min-width: 250px !important;
}

.img-producteur {
	padding-bottom: 66% !important;
	background-position: top;
	background-size: cover;
	border-radius: 0px !important;
	cursor: pointer;
}

.producteur-titre {
	font-family: sans-serif;
	display: block;
	margin: auto;
	color: rgb(255 255 255) !important;
	padding: 0px 5px;
	font-size: 15px;
	margin-top: -35px;
	text-align: center;
	text-shadow: 0px 1px 7px black;
}

.nav-btn .eicon-chevron-left.prod,
.nav-btn .eicon-chevron-right.prod {
	display: block;
}

#producteurs {
	margin-top: 15px;
	margin-bottom: 30px;
}

.producteur-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    padding: 0 70px;
    height: 100%;
    background: #f7efd9;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(110%);
    transition: transform 0.5s ease-in-out;
    overflow-y: visible;
    z-index: 9;
}


	.producteur-panel.active {
		transform: translateX(0);
	}

	.close-panel {
    position: absolute;
    top: 0px;
    right: 25px;
    background: none;
    border: none !important;
    font-size: 26px !important;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 9;
    padding: 0 !important;
	}

	.close-panel:hover { 
    color: #000; 
  }

 #nom_producteur_panel {
    font-size: 30px;
    font-weight: bold;
    margin-top: -60px;
    margin-left: 10px;
    color: #f7eed9;
    position: absolute;
    background-color: #6d707e3d;
    padding: 5px;
    border-radius: 15px;
}

	.photo_producteur {
		width: 500px;
    max-height: 300px;
		height: auto;
		object-fit: cover;
		border-radius: 10px !important;
	}

	.producteur-panel-content {
		margin-top: 20px;
	}

	.producteur-panel h2 {
		font-size: 1.3em;
		margin-top: 10px;
	}

	.producteur-panel .localite {
		font-weight: 600;
		color: #333;
		margin-bottom: 10px;
	}

	.producteur-panel .description {
		font-size: 0.95em;
		color: #444;
		line-height: 1.5;
	}

	.producteur-panel .video iframe {
		width: 100%;
		height: 300px;
		border: none;
		margin-top: 10px;
		border-radius: 10px;
	}

  .producteur-panel .etiquette {
    text-align: center;
    position: absolute;
    left: -15%;
    top: 12%;
    transform: rotate(-90deg) translateY(-50%);
    background: #f7eed9;
    font-weight: normal;
    padding: 25px 20px;
    border-radius: 20px 20px 0 0;
    z-index: 99;
    font-family: 'Courgette';
    color: #0f1a42;
    font-size: 40px;
    width: 234px;
}
/*#producteurs .owl-stage-outer {
	margin-left:35px;
	margin-right:35px;
}*/
.eicon-chevron-right,
.eicon-chevron-left {
	color: #fff !important;
}

#producteurs .nav-btn {
	top: 38% !important;
}

	/* === Mode Drawer mobile / tablette === */
	@media screen and (max-width: 1028px) {
		#map-container {
			position: relative;
			width: 100%;
			overflow: hidden;
		}
		#map {
      position: relative;
			top: 0;
			left: 0;
		}
		.producteur-panel {
			position: absolute;
      top: auto;
      right: auto;
			left: 0;
			bottom: 0;
			width: 100%;
			height: 70%;
			padding: 20px;
			background: #f7efd9;
			box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
			transform: translateY(120%);
			transition: transform 0.5s ease-in-out;
			overflow-y: auto;
			border-radius: 20px 20px 0 0;
		}

    .producteur-panel-content {
     margin-top: 0px;
    }
		.producteur-panel.active {
			transform: translateY(0);
		}
		.close-panel {
			top: 10px;
			right: 20px;
			font-size: 28px;
			color: #000;
		}

      #nom_producteur_panel {
        color: #f7efd9;
        margin-top: -100px;
        margin-left: 0;
        max-width: 90%;
    }
		.producteur-panel .etiquette {
			position: relative;
			transform: none;
			left: 0;
			top: 0;
			margin-bottom: 10px;
			text-align: left;
			background: none;
			font-size: 30px;
			padding: 0;
		}
	}

/******************************************/
/* Avis */
/******************************************/


footer .comment-authorinfo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

footer .comment-body {
    color: #fff;
}



.comment-authorinfo {
    display: flex;
    flex-direction: row;
    gap: 20px;
    color: #101A41;
}

.wp-review-comment-title {
    font-size: 20px;
    font-weight: 600;
}

.comment-text {
    border-bottom: 1px solid #101A41;
    padding-bottom: 10px;
}

.comment-authorname, .wp-review-usercomment-rating {
    margin: 0 !important;
}

.comment-authorname {
   font-size: 24px;
   font-weight: bold;
}

.comment {
    list-style: none;
}

#commentform {
    display: inline-grid;
    width: 100%;
}

.wp-review-comment-form-rating {
    order: 1;
}

.wp-review-comment-form-author {
    order: 2;
}

.wp-review-comment-form-title {
    order: 3;
}

p.wp-review-comment-form-comment {
    order: 4;
}

#commentsAdd .form-submit {
    order: 5;
}

#commentsAdd .form-submit #submit {
    background-color: #101A41;
    color: #f5ecd8;
}

#commentsAdd .form-submit #submit:hover {
    background-color: #f5ecd8;
    color: #101A41;
    border: 1px solid #101A41;
}

#commentform {
    display: grid;
    grid-template-columns: 25% 75%;
    grid-template-rows: auto;
    width: 100%;
    gap: 10px;
}

.wp-review-comment-form-author {
    grid-column: 1; /* 25% */
}

.wp-review-comment-form-title {
    grid-column: 2; /* 75% */
}

.wp-review-comment-form-rating,
p.wp-review-comment-form-comment,
#commentsAdd .form-submit {
    grid-column: 1 / span 2; /* Occupe toute la largeur */
}

.comment-form input, .comment-form textarea {
    background: rgba(16, 26, 65, 0.50);
    color: #f5ecd8;
    font-weight: 600;
}

.comment-form input::placeholder, .comment-form textarea::placeholder {
    color: #f5ecd8;
    font-weight: 600;
}

.comment-list-prod {
    overflow-y: scroll;
    max-height: 60vh;
}

::-webkit-scrollbar-track {
  background: #f5ecd8; /* couleur de fond */
}


/* Grille responsive 4 / 2 / 1 */
.recettes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px !important;
}
@media (max-width: 1024px) {
  .recettes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}
@media (max-width:768px) {
  #icones-rec {
    gap: 3px !important;
    text-align: center !important;
    line-height: 1.1 !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
  }
  .picto-recette, .text-recette, .fondrecette {
    display: none !important; 
  }

  .recettecard {
    min-height: 0 !important;
  }
}