/*
 * Custom style goes here.
 * A template should always ship with an empty custom.css
 */
#footer {
	background-image: url('../img/bg-footer.png');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	padding-top: 120px;
}
/* Container principal de la newsletter */
#footer-newslettre {
	padding: 60px 20px;
	text-align: center;
	color: #ffffff;
}
#footer-newslettre .submit-widget-newsletter {
	position: absolute;
	top: 50%;
	right: -7%;
	width: 132px;
}
/* Titre "RESTEZ CONNECTÃ‰" */
/* Container du titre pour l'alignement */
#footer-newslettre .module-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px; /* Espace entre les feuilles et le texte */
	color: #FFFFFF;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif; /* Ã€ ajuster selon Figma */
	font-size: 24px !important;
	letter-spacing: 2px;
	margin-bottom: 20px;
}
/* Style commun pour les feuilles (avant et aprÃ¨s) */
#footer-newslettre .module-title::before, #footer-newslettre .module-title::after {
	content: "";
	display: inline-block;
	width: 30px;  /* Ajustez selon la taille rÃ©elle de votre icÃ´ne */
	height: 30px; /* Ajustez selon la taille rÃ©elle de votre icÃ´ne */
	background-image: url('../img/feuille.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
/* Optionnel : Si l'image doit Ãªtre inversÃ©e (miroir) pour le cÃ´tÃ© droit */
#footer-newslettre .module-title::after {
	transform: scaleX(-1);
}
/* Texte de description sous le titre */
#footer-newslettre .newsletter-info {
	font-size: 16px;
	margin-bottom: 30px;
	font-weight: 300;
	margin-right: auto;
}
/* Alignement du formulaire */
#footer-newslettre .newsletter-form {
	display: flex;
	/*justify-content: center;
    align-items: center;*/
	gap: 15px; /* Espace entre l'input et le bouton */
	max-width: 800px;/*margin: 0 auto;**/
}
/* Style du champ de saisie (Input) */
#footer-newslettre .newsletter-input {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 10px; /* Bords arrondis selon le design */
	padding: 15px 25px;
	color: #ffffff;
	width: 650px;
	height: 55px;
}
 #footer-newslettre .newsletter-input::placeholder {
 color: rgba(255, 255, 255, 0.7);
}
/* Style du bouton "S'inscrire" */
#footer-newslettre .submit-widget-newsletter {
	background-color: #D2B48C; /* Couleur beige/sable du bouton */
	color: #5D2E0A; /* Texte marron foncÃ© sur le bouton */
	border: none;
	border-radius: 10px;
	padding: 0 40px;
	height: 55px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
	text-transform: none;
}
#footer-newslettre .submit-widget-newsletter:hover {
	background-color: #C19A6B;
}
/* Masquer la flÃ¨che SVG par dÃ©faut si vous voulez le texte "S'inscrire" */
#footer-newslettre .submit-widget-newsletter .svgic {
	display: none;
}
/* Ajouter le texte "S'inscrire" via CSS si le bouton est vide dans le HTML */
#footer-newslettre .submit-widget-newsletter::after {
	content: "S'inscrire";
}
#footer-newslettre .pknlinput-wrap {
	display: block;
	width: auto;
}
#footer-phyteal p, #footer-phyteal .module-title span, #footer-phyteal li a, #footer .tb-sect, #footer-phyteal-bas p {
	color: #fff !important;
}
/********* le 03-03-2026 ************/

/* ===== NEWSLETTER WIDGET - RESPONSIVE FIX ===== */

.newsletter-widget {
	width: 100%;
	padding: 32px 20px;
	box-sizing: border-box;
	text-align: center;
}
.newsletter-info {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
	padding: 0 10px;
	word-break: break-word;
}
.newsletter-form {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}
.pknlinput-wrap {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}
.newsletter-input {
	width: 100%;
	padding: 12px 50px 12px 16px; /* espace à droite pour le bouton */
	font-size: 14px;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #ccc;
	outline: none;
}
.submit-widget-newsletter {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}
.submit-widget-newsletter .svgic {
	width: 18px;
	height: 18px;
}

/* ===== MEDIA QUERIES ===== */

@media (max-width: 600px) {
.newsletter-widget {
	padding: 28px 16px;
}
.newsletter-info {
	font-size: 13px;
	padding: 0;
}
#footer-newslettre {
	padding: 60px 0px !important;
}
#footer-newslettre .module-title {
	font-size: 22px !important;
}
#footer-newslettre .pk-grid {
	display: contents !important;
}
#footer-newslettre .newsletter-input {
	width: 290px !important;
}
#footer-newslettre .newsletter-info {
	font-size: 15px !important;
}
.newsletter-input {
	font-size: 13px;
	padding: 11px 48px 11px 14px;
}
#footer-newslettre .module-title span {
	padding: 0px 0px 10px 0px !important;
}
}
 @media (max-width: 360px) {
.newsletter-widget {
	padding: 24px 12px;
}
.newsletter-input {
	font-size: 12px;
	padding: 10px 44px 10px 12px;
}
.submit-widget-newsletter {
	width: 40px;
}
}
/* ===== FOND MARRON PHYTÉAL ===== */

#footer .elementor-element-1e1f08a8 figure.relative {
	position: relative;
	text-align: center;
}
/* Ligne orange/dorée sous le logo */
#footer .elementor-element-1e1f08a8 figure.relative::after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background-color: #C8874A; /* couleur ligne dorée/orange */
	margin-top: 10px;
}
#footer .elementor-element-1e1f08a8 figure.relative img {
	display: block;
	max-width: 100%;
	height: auto;
}
#footer .elementor-element-19ae2fc {
	margin-top: -20px;
}
.menu-footer-copyright .widget-pklinks li a {
	color: #fff !important;
}
.menu-footer-copyright .widget-pklinks {
	display: flex !important;
}
.menu-footer-copyright .widget-pklinks li {
	margin-top: 0 !important;
	margin-left: 25px;
}
.menu-footer-copyright .widget-pklinks {
	margin-top: 15px;
}
.elementor-element-f1eeae1::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 100%;
	height: 80px;
	background: url(../img/separateur.png) no-repeat center;
	background-size: auto;
	pointer-events: none;
}
#footer-phyteal-bas {
	margin-top: 25px;
}
#footer-phyteal-bas .elementor-element-afe5d2d .elementor-text-editor p::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../img/feuille.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 5px;
    position: relative;
	margin-right: 12px;
}
#footer-newslettre .module-title span {color: #fff !important;}
@media (max-width: 600px) {
#header .elementor-element-166e66e5 {background-color: #8a513e !important;}
.elementor-1020401 .elementor-element.elementor-element-741db2dd > .elementor-element-populated { padding:0 !important;text-align: justify;}
}
.elementor-1020401 .elementor-element.elementor-element-741db2dd > .elementor-element-populated {text-align: justify;}
/* Cacher le bouton "current-item" (le drapeau de la langue active) */
.pk-languages .current-item {
  display: none !important;
}

/* Forcer la liste des langues à être toujours visible, en ligne */
.pk-languages ul.opt-list {
  display: flex !important;
  position: static !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  gap: 8px;
}

/* Cacher la langue active dans la liste */
.pk-languages ul.opt-list li a.active {
  display: none !important;
}

/* Optionnel : style inline pour les drapeaux restants */
.pk-languages ul.opt-list li {
  align-items: center;
}
.dd_container:not(.pk-sub-menu) li {padding: 5px; background:transparent !important;color: #fff;}
.elementor-widget-pklanguages .pk-languages ul.opt-list { background:transparent !important; box-shadow:none !important;margin-top: 5px !important;}
.elementor-widget-pklanguages .pk-languages ul.opt-list img {width: 16px !important;
    height: 10px !important;}
/* === Slider Gamme Services === */
/* === Slider Gamme Services === */
#gamme-services-marque .cat-slider-wrap {
  position: relative;
  overflow: hidden;
}
#gamme-services-marque .cat-slider-track {
  display: flex;
  transform: translateX(0);
}
#gamme-services-marque .cat-slider-track > .elementor-column {
  flex: 0 0 25%;
  max-width: 25%;
  box-sizing: border-box;
}
#gamme-services-marque .cat-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  color: #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gamme-services-marque .cat-slider-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
#gamme-services-marque .cat-slider-arrow.prev { left: 12px; }
#gamme-services-marque .cat-slider-arrow.next { right: 12px; }

@media (max-width: 1024px) {
  #gamme-services-marque .cat-slider-track > .elementor-column {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 768px) {
  #gamme-services-marque .cat-slider-track > .elementor-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  #gamme-services-marque .cat-slider-track > .elementor-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.pourquoi-section {
      max-width: 960px;
      margin: 80px auto;
      padding: 0 20px;
    }

    /* TITRE */
    .pourquoi-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .pourquoi-title .line1 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
}
.pourquoi-title .line1 span {
  color: #c8956c;
  font-style: italic;
}
.pourquoi-title .qmark {
  display: block;
  font-size: 28px;
  color: #c8956c;
  margin-top: 4px;
}

    /* GRILLE */
    .pourquoi-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    /* CARTE */
    .pourquoi-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 28px 26px;
      transition: box-shadow 0.3s ease, transform 0.25s ease;
    }
    .pourquoi-card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
      transform: translateY(-2px);
    }
    .pourquoi-card .card-icon {
      margin-bottom: 18px;
    }
    .pourquoi-card .card-icon svg {
      width: 48px;
      height: 48px;
    }
    .pourquoi-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: #222;
      margin-bottom: 12px;
      line-height: 1.35;
    }
    .pourquoi-card p {
      font-size: 13px;
      font-weight: 400;
      color: #555;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .pourquoi-grid { grid-template-columns: 1fr; }
      .pourquoi-title .line1 { font-size: 20px; }
      .pourquoi-title .line2 { font-size: 24px; }
    }
	
	/* === Footer RTL === */

.lang-rtl  #footer .tb-sect-icon {border-right:none !important;}
.lang-rtl  #footer .newsletter-info {margin-right: 0 !important;}
.lang-rtl #footer .newsletter-form {
  direction: rtl !important;
}
.lang-rtl #footer .newsletter-input {
  text-align: right !important;
}
.lang-rtl #footer .pknlinput-wrap .submit-widget-newsletter {
  left: 0 !important;
  right: auto !important;
}
.lang-rtl #footer-phyteal-bas p {text-align: right;}
.lang-rtl #footer-phyteal-bas .elementor-element-afe5d2d .elementor-text-editor p::before {margin-left: 12px;
    margin-right: 0 !important;}
#cms .opt-list:not(.pk-sub-menu) li a span,#product .opt-list:not(.pk-sub-menu) li a span,#category .opt-list:not(.pk-sub-menu) li a span {color: #000000 !important;}
.pk-languages .opt-list {
  transition: none !important;
  animation: none !important;
}
.pk-languages.dd_el:hover .opt-list ,
.pk-languages.dd_el .opt-list:hover {
  display: flex !important;
  height: auto !important;
  visibility: visible !important;
}
.category-products-menu li .title-product {text-transform: uppercase !important;}
.category-products-menu li {border-bottom: 1px dashed #000; }