/* ====================================================================
   CUSTOM CSS - LA GRENOUILLE ASSOIFFÉE
   Fichier organisé par catégories pour une meilleure lisibilité
   ==================================================================== */

/* ====================================================================
   TABLE DES MATIÈRES
   ====================================================================
   1. CONFIGURATION GÉNÉRALE - Header & Menu
   2. NAVIGATION DESKTOP - Onglets actifs & Logo
   3. NAVIGATION MOBILE - Menu responsive
   4. COMPTE UTILISATEUR & PANIER - Navbar
   5. PAGE D'ACCUEIL - Images, boutons, sections
   6. PAGE À PROPOS - Images & blocs texte
   7. PAGE ÉQUIPE - Positionnement SVG (desktop & mobile)
   8. PAGE PRODUITS - Cards produits (titre, prix)
   9. PAGE CONTACT - Formulaire de contact
   10. PANIER & CHECKOUT - Modal, bordures, boutons
   11. RÉCAPITULATIF COMMANDE - Styles confirmation
   12. MENTIONS LÉGALES
   13. RESPONSIVE - Media queries (1024px, 767px, 480px)
   ==================================================================== */

/* ====================================================================
   1. CONFIGURATION GÉNÉRALE - Header & Menu 1 footer
   ==================================================================== */

/* Masquage du header-nav et header-top */
.header-nav {
  display: none !important;
}

.header-top {
  display: none !important;
}

/* Couleur de fond du menu principal */
.iqitmegamenu-wrapper {
    background-color: #ffffff; /* couleur du menu complet */
}

/* Neutralise tout hover du thème sur ce bouton */
.login-in-navbar #user_info a,
.login-in-navbar #user_info a span,
.login-in-navbar #user_info a i {
    transition: none !important; /* coupe la transition verte du thème */
}

/* Hover 100% orange sans clignotement */
.login-in-navbar #user_info a:hover,
.login-in-navbar #user_info a:hover span,
.login-in-navbar #user_info a:hover i {
    color: #F27405 !important;
}


/*FOOTER*/
/* Masquer uniquement l'icône Instagram */
li img[src*="social-media/instagram.png"] {
    display: none !important;
}

/* Mettre le texte de ce <li> en jaune #F2B705 */
li:has(> img[src*="social-media/instagram.png"]) {
    color: #F2B705 !important;
    font-weight: 600 !important;
}

#footer {
	background-color :#FFF8E4; 
}

/* Mobile : élargir la section À propos */
@media (max-width: 768px) {

    /* Conteneur principal de la section */
    .elementor-element-7gje50m .elementor-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Colonne interne */
    .elementor-element-7gje50m .elementor-column {
        width: 100% !important;
        max-width: 100% !important;
    }
}

aside.facet:has([data-slider-label="Poids"]),
aside.facet:has([data-slider-label="Prix"]) {
  display: none !important;
}

/* Style des titres des filtres à facette */
aside.facet .facet-title {
  color: #F27405 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

.hero-text,
.hero-text * {
  font-family: "Poppins" !important;
}





/* ====================================================================
   HOVER BOUTONS "AJOUTER AU PANIER" - Style identique au bouton Panier
   ==================================================================== */

/* Hover des boutons "Ajouter au panier" dans la liste de produits */
.btn-product-list.add-to-cart:hover {
    background-color: #ffffff !important;
    border: 2px solid #F27405 !important;
    color: #F27405 !important;
    transition: all 0.3s ease-in-out;
}

/* Assure que l'icône du panier change aussi de couleur au hover */
.btn-product-list.add-to-cart:hover .fa-shopping-bag {
    color: #F27405 !important;
}

/* Au cas où il y aurait aussi un spinner visible au hover */
.btn-product-list.add-to-cart:hover .fa-spin {
    color: #F27405 !important;
}



/* ====================================================================
   2. NAVIGATION DESKTOP - Onglets actifs & Logo
   ==================================================================== */

/* ========================================
   NAVBAR – Onglet actif (style premium)
   ======================================== */
#cbp-hrmenu .nav-link {
    position: relative;
    padding-bottom: 6px;
    transition: all 0.25s ease-in-out;
    font-weight: 600;
}

/* Texte actif */
#cbp-hrmenu .nav-link.active span.cbp-tab-title {
    color: #F27405 !important;
}

/* Soulignement animé (trait orange) */
#cbp-hrmenu .nav-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: #F27405;
    border-radius: 2px;
    opacity: 1;
    transition: width 0.3s ease;
}

/* Petit marqueur rond au-dessus du texte */
#cbp-hrmenu .nav-link.active::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: #00744A;
    border-radius: 50%;
}

/* HOVER – extension du trait */
#cbp-hrmenu .nav-link:hover::after {
    width: 60%;
}

/* Couleur hover */
#cbp-hrmenu .nav-link:hover span.cbp-tab-title {
    color: #F27405 !important;
}
/* fin menu desktop */

/* ====================================================================
   NEUTRALISER L'ÉTAT ACTIF SUR LE LOGO (tab-1)
   ==================================================================== */

/* Retire tous les styles "actif" du logo */
#cbp-hrmenu-tab-1 a.nav-link.active,
#cbp-hrmenu-tab-1 a.active {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Supprime le trait orange sous le logo */
#cbp-hrmenu-tab-1 .nav-link.active::after {
    display: none !important;
}

/* Supprime le petit rond vert au-dessus du logo */
#cbp-hrmenu-tab-1 .nav-link.active::before {
    display: none !important;
}

/* Empêche le hover du logo d'afficher le trait */
#cbp-hrmenu-tab-1 .nav-link:hover::after {
    display: none !important;
}

/* Garde le texte de couleur normale (pas orange) */
#cbp-hrmenu-tab-1 .nav-link.active span.cbp-tab-title,
#cbp-hrmenu-tab-1 .nav-link:hover span.cbp-tab-title {
    color: inherit !important;
}


/* ====================================================================
   3. NAVIGATION MOBILE - Menu responsive
   ==================================================================== */

/* ===========================================
   MOBILE MENU – Onglet actif premium (LGA)
   =========================================== */

/* ====================================================================
   MOBILE - Masquer Home et ajouter icône maison à Accueil
   ==================================================================== */

/* Masque complètement l'onglet Home en mobile */
.mobile-menu__tab--id-1 {
    display: none !important;
}

/* Ajoute l'icône maison devant Accueil (tab-2) */
.mobile-menu__tab--id-2 .mobile-menu__link::before {
    content: "\f015"; /* code Font Awesome pour fa-home */
    font-family: "FontAwesome" !important;
    margin-right: 10px;
    font-size: 18px;
    color: #00744A;
    transition: color 0.25s ease-in-out;
}

/* Change la couleur de l'icône quand l'onglet est actif */
.mobile-menu__tab--id-2 .mobile-menu__link.active::before {
    color: #F27405 !important;
}

/* Change la couleur de l'icône au hover */
.mobile-menu__tab--id-2 .mobile-menu__link:hover::before {
    color: #F27405 !important;
}

/* Container du lien */
.mobile-menu__link {
    position: relative;
    padding: 12px 0;
    display: flex;
    align-items: center;
    transition: all 0.25s ease-in-out;
}

/* Style du texte */
.mobile-menu__link .js-mobile-menu__tab-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #3C3C3C;
    transition: all 0.25s ease-in-out;
}

/* -------------------------------------------
   ONGLET ACTIF – Texte orange + marqueurs
   ------------------------------------------- */

/* Texte actif orange */
.mobile-menu__link.active .js-mobile-menu__tab-title {
    color: #F27405 !important;
    font-weight: 700 !important;
}

/* Trait orange sous l’onglet */
.mobile-menu__link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 40%;
    height: 3px;
    background-color: #F27405;
    border-radius: 3px;
    opacity: 1;
    transition: width 0.3s ease-in-out;
}

/* Petit rond vert au-dessus */
.mobile-menu__link.active::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #00744A;
    border-radius: 50%;
    opacity: 1;
}

/* -------------------------------------------
   HOVER – extension du trait (mobile click)
   ------------------------------------------- */
.mobile-menu__link:hover::after {
    width: 60%;
}

.mobile-menu__link:hover .js-mobile-menu__tab-title {
    color: #F27405 !important;
}

/* ===========================================
   NAVBAR – Désactiver le trait orange sur l’onglet Contact
   =========================================== */

/* Supprime le trait orange sous l’onglet Contact */
#cbp-hrmenu-tab-6 .nav-link.active::after {
    display: none !important;
}

/* Supprime le petit rond vert si tu l’utilises */
#cbp-hrmenu-tab-6 .nav-link.active::before {
    display: none !important;
}


/* -------------------------------------------
   Icônes — harmonisation
   ------------------------------------------- */
.mobile-menu__tab-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #00744A;
    transition: color 0.25s ease-in-out;
}

.mobile-menu__link.active .mobile-menu__tab-icon {
    color: #F27405 !important;
}



/* ====================================================================
   4. COMPTE UTILISATEUR & PANIER - Navbar
   ==================================================================== */

/* Aligne correctement le compte + panier dans la navbar */
.navbar-right,
.login-in-navbar,
.cart-in-navbar {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    gap: 12px; /* espace entre les icônes */
}

.header-cart-btn-w .cart-products-count-btn {
    background-color: #f27405 !important; /* orange boutons ajouter au panier */
    color: #fff !important;
}

/* Corrige l'alignement vertical exact du panier */
.cart-in-navbar img,
.login-in-navbar img {
    display: block;
    height: 24px; /* ajuste si besoin */
    width: auto;
}

/* Assure que l’ensemble du header suit la même ligne de base */
#iqitmegamenu-wrapper,
#cbp-hrmenu,
#cbp-hrmenu > ul {
    align-items: center !important;
}
/**/

/* Masquer le logo original */
#desktop_logo {
  display: none !important;
}

/* Style du logo dans la navbar */
.cbp-mainlink-logo {
  width: 53.999935150146484px !important;
  height: 59.315147399902344px !important;
  opacity: 1 !important;
}

/* Ajuster la taille du conteneur pour le logo */
#cbp-hrmenu-tab-1 .cbp-tab-title {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  left: 60px;
  min-width: 54px;
  min-height: 60px;
}

/* Style du container de la navbar */
#iqitmegamenu-wrapper .container-iqitmegamenu,
#iqitmegamenu-horizontal {
  height: 87px !important;
  opacity: 1 !important;
}

/* Centrer verticalement le contenu de la navbar */
#cbp-hrmenu {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

/* Positionner les onglets : logo à gauche, menu à droite (uniquement la liste de 1er niveau) */
#cbp-hrmenu > ul {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Logo à gauche */
#cbp-hrmenu-tab-1 {
  margin-right: auto !important;
}

/* Grouper les autres onglets à droite */
#cbp-hrmenu-tab-2,
#cbp-hrmenu-tab-3,
#cbp-hrmenu-tab-4,
#cbp-hrmenu-tab-5,
#cbp-hrmenu-tab-6 {
  margin-left: 25px !important;
}

/* Style de l'onglet Contact selon la maquette Figma */
.contact-button .nav-link {
  width: 170px !important;
  height: 41px !important;
  border-radius: 24px !important;
  padding: 8px 35px !important;
  background: #00744A !important;
  color: white !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  opacity: 1 !important;
  text-decoration: none !important;
  font-weight: bold !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}

.contact-button .nav-link:hover {
  background: #005a3a !important;
  color: white !important;
}

/* Style pour le bouton connexion dans la navbar */
.login-in-navbar {
  margin-left: 10px !important;
	margin-top: 12px !important;
}

.login-in-navbar #user_info {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  vertical-align: middle !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  top: -0.3rem !important; /* Compense une partie du margin-top du thème */
}

/* Surcharge spécifique pour contrer le thème */
.desktop-header-style-1 .login-in-navbar #user_info,
#header .login-in-navbar #user_info {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.login-in-navbar #user_info a,
.login-in-navbar #user_info .text-faded {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  color: #333 !important;
  vertical-align: middle !important;
}

.login-in-navbar #user_info a {
  gap: 5px !important;
}

.login-in-navbar #user_info a:hover {
  color: #5cb85c !important;
  text-decoration: none !important;
}

.login-in-navbar .fa-user {
  font-size: 18px !important;
  vertical-align: middle !important;
}

/* Style pour le panier dans la navbar */
.cart-in-navbar {
  margin-left: 10px !important;
}

.cart-in-navbar #ps-shoppingcart-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
}

.cart-in-navbar .cart-toogle {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  vertical-align: middle !important;
}

#mobile-cart-wrapper .cart-products-count-btn,
#mobile-cart-wrapper #mobile-cart-products-count {
    background-color: #F27405 !important;
    color: #fff !important;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
}


/* S'assurer que l'icône du panier est visible */
.cart-in-navbar .fa-shopping-bag {
  display: inline-block !important;
  font-size: 18px !important;
  color: #333 !important;
}

.cart-in-navbar .cart-toogle:hover .fa-shopping-bag {
  color: #5cb85c !important;
}

/* Rendre visible le texte du bouton Commander dans le dropdown */
.cart-in-navbar .dropdown-menu .btn-primary {
  color: #ffffff !important;
  text-indent: 0 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.cart-in-navbar .dropdown-menu .btn-primary:hover {
  color: #ffffff !important;
}


/* ====================================================================
   5. PAGE D'ACCUEIL - Images, boutons, sections
   ==================================================================== */

/* Style pour l'image de la mousse sur le slider*/
.foam img{
  width: 100% !important;
  
}

/* Style pour l'image about_image dans Elementor */
.about_image img {
  width: 542px !important;
  height: 421px !important;
  opacity: 1 !important;
  border-radius: 32px !important;
  object-fit: cover !important;
}

.about_image .elementor-image {
  width: 542px !important;
  height: 421px !important;
}

/* Style pour le bloc propos - cibler les conteneurs */
.elementor-element-gjbwy0g .elementor-text-editor {
    max-width: 483px;
}




/* Style pour le bouton about_button - cibler les conteneurs */
.about_button .elementor-widget-container {
  max-width: 235px !important;
  text-align: center !important;
}

.about_button .elementor-button-link {
  border-radius: 24px !important;
  padding: 8px 35px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 32px !important;
  letter-spacing: 0% !important;
}

.foam_green{
  width: 100% !important;
}

.foam_green img {
  width: 100% !important;
}

/*Bouton voir plus vague verte  */
.voir-plus-btn {
    position: absolute;
    bottom: -50px; /* ajuste la hauteur */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    margin: 0 !important;
    width: auto;
}

.voir-plus-btn a {
    font-weight: 700;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.voir-plus-btn .arrow {
    font-size: 22px;
    line-height: 1;
    animation: bounce 1.5s infinite ease-in-out;
}

/* Animation */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Permet le positionnement absolu du bouton */
.elementor-section.elementor-element-fn3uvi7 {
    position: relative;
}

/* Style pour section nos produits */
#nos-partenaires #content-wrapper .section-title.title-partenaires,
#nos-partenaires .section-title.title-partenaires {
    color: #00744A !important;
}

.swiper-pagination-bullet-active {
    background-color: orange !important;
}

/* Style pour section notre brasserie */
.foam_white{
  width: 100% !important;
}

.foam_white img {
  width: 100% !important;
}


.tabs_container{
  max-height: 71px !important;
  max-width: 400px !important;
  border-top-left-radius : 32px !important;
  border-top-right-radius : 32px !important;
}

/* Styles pour la description de catégorie expandable - SEO friendly */
.category-description-expandable {
  position: relative;
  margin-top: 2rem;
}

.category-description-expandable.collapsed .category-description-content {
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.category-description-expandable.collapsed .category-description-overlay {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9), #ffffff);
  pointer-events: none;
  z-index: 1;
}

.category-description-expandable.expanded .category-description-overlay {
  display: none;
}

.category-description-toggle {
  display: block;
  margin: 1rem auto 0;
  border: 2px solid #b85450;
  background: transparent;
  color: #b85450;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.category-description-toggle:hover {
  background: #b85450;
  color: white;
  border-color: #b85450;
}

.category-description-toggle .toggle-icon-down,
.category-description-toggle .toggle-icon-up {
  font-size: 14px;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  display: inline-block;
}

.category-description-toggle:focus {
  outline: 2px solid #b85450;
  outline-offset: 2px;
}

/* Animation pour l'expansion du contenu */
.category-description-content {
  transition: max-height 0.4s ease-in-out;
}

/* Desktop par défaut */
.titre-qualite {
    font-size: 56px !important;
    line-height: 1.1 !important;
}

/* Remonte la section Qualité & Goût devant la vague */
.footer-qualite-gout {
    margin-top: -84px;
    position: relative;
    z-index: 10;
}

/* Met la vague derrière */
img[src*="vector5"] {
    position: relative;
    z-index: 1;
}




/* ====================================================================
   6. PAGE À PROPOS - Images & blocs texte
   ==================================================================== */
/*Pages a propos*/
.elementor-element-v7ck4b5 {
    width: 100% !important;       /* occupe toute la largeur */
    max-width: 100% !important;   /* ignore les limites du thème */
    margin: 0 !important;         /* supprime marges gauche/droite */
    padding: 0 !important;        /* supprime padding si besoin */
}

.container_about_page{
	max-width:522px; 
}
.elementor-element-53p8fk3 img {
    width: 100%;
    height: auto; /* conserve les proportions */
    display: block;
}

.white_foram_about img {
    width: 100% !important;
    height: auto !important;
    display: block;
}



/* Section pleine largeur */
.elementor-element-t7uqt76 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Conteneur interne si le thème impose une largeur */
.elementor-element-t7uqt76 > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Image responsive */
.elementor-element-50s2vqa img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section pleine largeur */
.elementor-element-ofo0xxr {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Conteneur interne si le thème impose une largeur */
.elementor-element-ofo0xxr > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Image responsive */
.elementor-element-o2bo8ia img {
    width: 100%;
    height: auto;
    display: block;
}


/* ====================================================================
   7. PAGE ÉQUIPE - Positionnement SVG (desktop & mobile)
   ==================================================================== */

/* Le conteneur global devient la référence pour la position absolue */
.elementor-element-pqfo6yf {
    position: relative;
}

/* ========================================
   VERSION DESKTOP - Positionnement SVG
  

/* Conteneur parent relatif pour les SVG (la colonne) */
.column-grenouille .elementor-widget-wrap {
    position: relative; /* nécessaire pour le positionnement absolu des enfants */
}

/* Styles généraux pour tous les SVG dans la colonne grenouille */
.column-grenouille .elementor-widget-image img {
    position: absolute; /* permet de les déplacer librement */
    display: block;
    width: auto; /* largeur par défaut, à ajuster */
    height: auto;
}

/* SVG 1 - CAROLINE */
.column-grenouille .caroline img {
    top: -200px;
    left: 200px;
    width: 240px; /* ajustable */
    z-index: 10;
}

	/* SVG 2 - AMELIE */
	.column-grenouille .amelie img {
		top: -80px;
		left: 440px;
		width: 130px; /* ajustable */
		z-index: 11;
	}

	/* SVG 3 - LÉA */
	.column-grenouille .lea img {
		top: 380px;
		left: 450px;
		width: 130px; /* ajustable */
		z-index: 12;
	}

/* SVG 4 - JEAN-MARC */
.column-grenouille .jm img {
    top: 420px;
    left: 300px;
    width: 90px; /* ajustable */
    z-index: 13;
}

@media (min-width: 1200px) and (max-width: 1599px) {
    /* SVG 1 - CAROLINE */
	.column-grenouille .caroline img {
		top: -200px;
		left: 200px;
		width: 240px; /* ajustable */
		z-index: 10;
	}

	/* SVG 2 - AMELIE */
	.column-grenouille .amelie img {
		top: -80px;
		left: 400px;
		width: 130px; /* ajustable */
		z-index: 11;
	}

	/* SVG 3 - LÉA */
	.column-grenouille .lea img {
		top: 380px;
		left: 450px;
		width: 130px; /* ajustable */
		z-index: 12;
	}

	/* SVG 4 - JEAN-MARC */
	.column-grenouille .jm img {
		top: 420px;
		left: 300px;
		width: 100px; /* ajustable */
		z-index: 13;
	}
}



/* Cible uniquement le lien "Nos bières" dans la section beer-homepage */
.beer-homepage .nav-tabs .nav-link.active {
     font-weight: 800;          /* ExtraBold correspond à 800 */
  font-style: normal;        /* "ExtraBold" n’est pas une valeur de font-style */
  font-size: 64px;
  line-height: 72px;         /* équivalent du leading dans Figma */
  letter-spacing: 0;         /* 0% dans Figma = 0em en CSS */
	color: #F2B705;

}

.beer-homepage .nav.nav-tabs {
    border-bottom: none !important;
    box-shadow: none !important;
}

.beer-homepage .nav-tabs .nav-item,
.beer-homepage .nav-tabs .nav-link {
    border: none !important;
    box-shadow: none !important;
}

.beer-homepage .nav-tabs .nav-link.active {
    position: relative;
    overflow: visible;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.beer-homepage .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: calc(50% - 15px); /* ajuste la valeur */
    bottom: 10px;
    transform: translateX(-50%) rotate(-1deg);
    width: 296px;
    height: 23px;
    background-image: url("https://la-grenouille-assoiffee.fr/img/cms/Vector%203.png");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
}

.vague_verte_mobile_home img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
}




/* ====================================================================
   8. PAGE PRODUITS - Cards produits (titre, prix)
   ==================================================================== */

/* ========================================
   CATEGORY PAGE – Cards produits
   ======================================== */
/* Cards produits – centrage global */
.product-description {
    text-align: center !important;
}

/* Cards produits – Titre */
.product-description .product-title a {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important; /* SemiBold */
    font-size: 20px !important;
    line-height: 28px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #3C3C3C !important;
    display: block;
}

/* Cards produits – Prix */
.product-description .product-price {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px !important;
    line-height: 28px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #6B6B6B !important;
    display: block;
}

.product-functional-buttons.product-functional-buttons-bottom {
    display: none !important;
}

.related-products .related-title {
    color: #000 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;         /* ExtraBold */
    font-size: 36px !important;
    line-height: 32px !important;
    letter-spacing: 0 !important;
    margin-bottom: 10px;                 /* optionnel pour respirer un peu */
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
    .related-products .related-title {
        font-size: 28px !important;
        line-height: 30px !important;   /* cohérent avec la maquette */
    }
}




/* ===========================================
   FACETED SEARCH – Style magnitude (x)
   Parenthèses vertes + numéro orange
   =========================================== */
/* Met en orange les nombres des facettes (avec parenthèses incluses) */
#search_filters .magnitude {
    color: #F27405 !important;
    font-weight: 600;
}

/* FILTRE À FACETTE - Masquer le bloc catégories sur les pages produits / catégories */
.block.block-toggle.block-categories.block-links.js-block-toggle {
    display: none !important;
}

/* ==========================================
   FACETED SEARCH – STYLE DU SLIDER PRIX
   ========================================== */

/* Barre active (partie entre les deux curseurs) */
.noUi-connect {
    background: #00744A !important; /* vert LGA */
}

/* Barre inactive */
.noUi-target {
    background: #e5e5e5 !important; /* gris léger */
    border-radius: 4px !important;
    border: none !important;
}

/* Poignées (curseurs) */
.noUi-handle {
    background: #F27405 !important; /* orange LGA */
    border: 2px solid #F27405 !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
    cursor: pointer !important;
}

/* Supprime les décorations de la poignée (traits internes par défaut) */
.noUi-handle::before,
.noUi-handle::after {
    display: none !important;
}

/* Hover du curseur */
.noUi-handle:hover {
    background: #ff8a28 !important;
    border-color: #ff8a28 !important;
}

/* Focus (accessibilité) */
.noUi-handle:focus {
    box-shadow: 0 0 6px rgba(242, 116, 5, 0.6) !important;
}

/* ==========================================
   FACETED SEARCH – Checkbox Premium LGA
   ========================================== */

/* Style des checkboxes - Container flexible */
.custom-checkbox {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    width: auto !important;
    min-height: 20px !important;
    margin-bottom: 10px !important;
    cursor: pointer !important;
}

/* Input checkbox - superposé sur le span visuel */
.custom-checkbox input[type="checkbox"] {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 20px !important;
    height: 20px !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 2 !important;
    margin: 0 !important;
}

/* Span visuel (checkbox stylisée) */
.custom-checkbox .ps-shown-by-js,
.custom-checkbox span:not(label span) {
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #00744A !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all .2s ease !important;
    box-sizing: border-box !important;
    margin-right: 10px !important;
    margin-top: 2px !important;
}

/* Icône checkmark */
.custom-checkbox .ps-shown-by-js i,
.custom-checkbox span i {
    font-size: 10px !important;
    color: transparent !important;
    transition: color .2s ease !important;
}

/* === ÉTAT COCHÉ === */
.custom-checkbox input[type="checkbox"]:checked + .ps-shown-by-js,
.custom-checkbox input[type="checkbox"]:checked + span {
    background: #F28705 !important;
    border-color: #F28705 !important;
}

.custom-checkbox input[type="checkbox"]:checked + .ps-shown-by-js i,
.custom-checkbox input[type="checkbox"]:checked + span i {
    color: #fff !important;
}

/* Label à côté de la checkbox */
.custom-checkbox label {
    flex: 1 !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #333 !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

/* Hover */
.facet-label:hover .ps-shown-by-js {
    border-color: #005a39 !important; /* vert foncé */
}



/* Cards produits – Responsive Mobile */
@media (max-width: 767px) {
    /* Titre en mobile */
    .product-description .product-title a {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    
    /* Prix en mobile */
    .product-description .product-price {
        font-size: 16px !important;
        line-height: 22px !important;
    }
}


/* ====================================================================
   10. PANIER & CHECKOUT - Modal, bordures, boutons
   ==================================================================== */

/* ========================================
   MODAL PANIER – Bouton Commander identique Checkout
   ======================================== */

/* ========================================
   MODAL PANIER – Force police Poppins
   ======================================== */
#blockcart-modal,
#blockcart-modal * {
    font-family: 'Poppins', sans-serif !important;
}

#blockcart-modal .cart-content-btn .btn-primary {
    background-color: #00744A !important;
    border: 2px solid #00744A !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 12px 20px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

#blockcart-modal .cart-content-btn .btn-primary:hover {
    background-color: #005a39 !important;
    border-color: #005a39 !important;
    box-shadow: 0 4px 12px rgba(0, 116, 74, 0.4) !important;
    transform: translateY(-2px);
}

#blockcart-modal .cart-content-btn .btn-primary:active,
#blockcart-modal .cart-content-btn .btn-primary:focus {
    background-color: #004d31 !important;
    border-color: #004d31 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 116, 74, 0.3) !important;
}

/* Bouton "Continuer mes achats" dans la modale - style orange */
#blockcart-modal .cart-content-btn .btn-secondary {
    background: transparent !important;
    border: 2px solid #F28705 !important;
    border-radius: 20px !important;
    color: #F28705 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 12px 20px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

#blockcart-modal .cart-content-btn .btn-secondary:hover {
    background: #F28705 !important;
    color: #fff !important;
}

/* ========================================
   RECAPITULATIF panier pop up  - bouton commander + panier 
   ======================================== */

#_desktop_blockcart-content .btn-primary {
    background-color: #00744A !important;
    border-color: #00744A !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    text-transform: uppercase !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

#_desktop_blockcart-content .btn-primary:hover {
    background-color: #5ab33f !important;
    border-color: #5ab33f !important;
    color: #fff !important;
}

#_desktop_blockcart-content .btn-secondary {
    background-color: #ffffff !important;
    border: 2px solid #F27405 !important;
    color: #F27405 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    text-transform: uppercase !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

#_desktop_blockcart-content .btn-secondary:hover {
    background-color: #F27405 !important;
    color: #ffffff !important;
    border-color: #F27405 !important;
}

/*Mobile*/
#_desktop_blockcart-content .btn-primary,
#_mobile_blockcart-content .btn-primary {
    background-color: #00744A !important;
    border-color: #00744A !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    text-transform: uppercase !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

#_desktop_blockcart-content .btn-primary:hover,
#_mobile_blockcart-content .btn-primary:hover {
    background-color: #5ab33f !important;
    border-color: #5ab33f !important;
    color: #fff !important;
}

#_desktop_blockcart-content .btn-secondary,
#_mobile_blockcart-content .btn-secondary {
    background-color: #ffffff !important;
    border: 2px solid #F27405 !important;
    color: #F27405 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;
    text-transform: uppercase !important;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

#_desktop_blockcart-content .btn-secondary:hover,
#_mobile_blockcart-content .btn-secondary:hover {
    background-color: #F27405 !important;
    color: #ffffff !important;
    border-color: #F27405 !important;
}




/* ====================================================================
   11. RÉCAPITULATIF COMMANDE - Styles confirmation
   ==================================================================== */

/* ========================================
   RECAPITULATIF COMMANDE - 
   ======================================== */

body#checkout #wrapper #inner-wrapper.container {
    padding: 40px !important;
}

#order-details {
  padding: 30px !important;
}

/* Alternative si vous voulez aussi ajouter du padding au bloc des articles */
#order-items {
  padding: 30px !important;
}

/* Ou pour les deux blocs en même temps */
#order-details,
#order-items {
  padding: 30px !important;
}

.order-confirmation-title-payment {
    padding-left: 40px;
}

nav.breadcrumb ol,
nav.breadcrumb li,
nav.breadcrumb span {
    display: none !important;
}


/* ====================================================================
   9. PAGE CONTACT - Formulaire de contact
   ==================================================================== */

/* ========================================
   VERSION DESKTOP - Page contact
   ======================================== */
body#contact section#main {
    padding: 40px !important;
	
}

/* ===========================================
   FORMULAIRE DE CONTACT – Charte graphique LGA
   =========================================== */
/* Centrage global du formulaire Contact – sans media queries */
body#contact .col-sm-8 {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* Limite la largeur du formulaire pour un rendu premium */
body#contact .contact-form {
    max-width: 720px; /* tu peux ajuster entre 600 et 800px */
    margin-left: auto !important;
    margin-right: auto !important;
}


/* Conteneur du formulaire */
.contact-form {
    background: #ffffff;
    border: 2px solid #F27405;
    border-radius: 16px;
    padding: 30px;
    font-family: 'Poppins', sans-serif !important;
}

/* Titre "Contactez-nous" */
.contact-form h4 {
    font-family: 'Poppins', sans-serif;
    color: #00744A;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Labels */
.contact-form label {
    font-weight: 600;
    color: #3C3C3C;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Inputs / Select / Textarea */
.contact-form .form-control,
.contact-form select,
.contact-form textarea {
    border: 2px solid #F27405 !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    color: #333 !important;
    transition: 0.2s ease-in-out;
}

/* Focus */
.contact-form .form-control:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #00744A !important;
    box-shadow: 0 0 6px rgba(0, 116, 74, 0.4) !important;
}

/* Placeholders */
.contact-form ::placeholder {
    color: #999;
    font-style: italic;
}

/* Sélecteur sujet */
.contact-form select.form-control-select {
    background-color: #fff !important;
    cursor: pointer;
}

/* Input File */
.contact-form .bootstrap-filestyle .btn {
    background-color: #F27405 !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px !important;
}

.contact-form .bootstrap-filestyle input.form-control {
    border: 2px solid #F27405 !important;
    border-radius: 12px !important;
}

/* Message optionnel */
.contact-form .form-control-comment {
    color: #6B6B6B !important;
    font-size: 13px;
}

/* Répare le champ SELECT du formulaire de contact */
.contact-form select.form-control-select {
    height: auto !important;
    padding: 10px 16px !important;
    line-height: 1.4 !important;
    font-size: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 20px !important;
    border: 2px solid #00744A !important;
    background-position: right 14px center !important;
    background-size: 12px !important;
    box-shadow: none !important;
}

/* Supprime les restrictions de Warehouse */
.contact-form .form-control,
.contact-form .form-control-select {
    max-height: none !important;
    overflow: visible !important;
}

/* Fixe aussi l'input group (file upload) pour ne pas casser le style */
.contact-form .bootstrap-filestyle input.form-control {
    height: auto !important;
    padding: 10px 16px !important;
    line-height: 1.4 !important;
}


/* ===========================================
   BOUTON ENVOYER
   =========================================== */
.contact-form .form-footer .btn-primary {
    background-color: #00744A !important;
    border: 2px solid #00744A !important;
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    padding: 12px 32px !important;
    border-radius: 24px !important;
    font-size: 16px !important;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
}

.contact-form .form-footer .btn-primary:hover {
    background-color: #005a39 !important;
    border-color: #005a39 !important;
    box-shadow: 0 4px 12px rgba(0, 116, 74, 0.4);
    transform: translateY(-2px);
}

/* ===========================================
   ALERT SUCCESS (quand message envoyé)
   =========================================== */
.contact-form .alert-success {
    background: #e7f8ef !important;
    border: 2px solid #00744A !important;
    color: #00744A !important;
    border-radius: 12px !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form h4 {
        font-size: 20px !important;
    }

    .contact-form label {
        font-size: 14px !important;
    }

    .contact-form .form-footer .btn-primary {
        width: 100%;
    }
}



/* ========================================
   VERSION MOBILE - Positionnement SVG mobile
   ======================================== */

/* ========================================
   VERSION MOBILE - column-grenouille-mobile
   ======================================== */

/* Conteneur parent relatif pour les SVG (la colonne mobile) */
.column-grenouille-mobile .elementor-widget-wrap {
    position: relative;
    min-height: 400px; /* Ajustez selon vos besoins */
}

/* Styles généraux pour tous les SVG dans la colonne grenouille mobile */
.column-grenouille-mobile .elementor-widget-image img {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
}

/* ============================
   POSITION MOBILE DES GRENOUILLES 
   ============================ */

@media (max-width: 768px) {

    /* La colonne grenouilles doit être un conteneur relatif */
    .column-grenouille-mobile .elementor-widget-wrap {
        position: relative !important;
        min-height: 380px; /* adapter si nécessaire */
    }

    /* Styles généraux pour les SVG mobiles */
    .column-grenouille-mobile .elementor-widget-image img {
        position: absolute !important;
        display: block;
        height: auto;
        width: auto;
        max-width: 140px; /* taille générale adaptable */
        z-index: 10;
    }

    /* 1) CAROLINE MOBILE */
    .column-grenouille-mobile .caroline-mobile img {
        top: -40px !important;
        left: 40% !important;
        width: 150px !important;
    }

    /* 2) AMÉLIE MOBILE */
    .column-grenouille-mobile .amelie-mobile img {
        top: -20px !important;
        left: 70% !important;
        width: 110px !important;
    }

    /* 3) LÉA MOBILE */
    .column-grenouille-mobile .lea-mobile img {
        top: 140px !important;
        left: 20% !important;
        width: 115px !important;
    }

    /* 4) JEAN-MARC MOBILE */
    .column-grenouille-mobile .jm-mobile img {
        top: 220px !important;
        left: 65% !important;
        width: 100px !important;
    }
}




/* ================================
   STYLE IMAGE HEADER
   ================================ */
.header-propos img {
    width: 100% !important;       /* force la largeur à 100% du conteneur */
    max-width: 100% !important;   /* évite que l'image dépasse du conteneur */
    height: auto !important;      /* conserve les proportions */
    display: block !important;    /* supprime les marges inline par défaut */
    margin: 0 auto !important;    /* centre l'image dans son conteneur */
}


/* ================================
   STYLE IMAGE EQUIPE
   ================================ */
.img-equipe img {
    width: 100% !important;       /* force la largeur à 100% du conteneur */
    max-width: 100% !important;   /* évite que l'image dépasse du conteneur */
    height: auto !important;      /* conserve les proportions */
    display: block !important;    /* supprime les marges inline par défaut */
    margin: 0 auto !important;    /* centre l'image dans son conteneur */
}

.foam-img-equipe img {
    width: 100% !important;       /* force la largeur à 100% du conteneur */
    max-width: 100% !important;   /* évite que l'image dépasse du conteneur */
    height: auto !important;      /* conserve les proportions */
    display: block !important;    /* supprime les marges inline par défaut */
    margin: 0 auto !important;    /* centre l'image dans son conteneur */
}


/* PAGE CHECKOUT */
/* ========================================
   BORDURES ORANGE POUR LE CHECKOUT
   ======================================== */
/* Sections principales du checkout */
.checkout-step {
  border: 2px solid #ff8533 !important;
  border-radius: 4px;
  margin-bottom: 30px !important;
}
/* Numéro dans un rond orange */
.checkout-step .step-number {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #ff8533 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 20px;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}
/* Bordure lors du focus/état actif */
.checkout-step.-current,
.checkout-step.-clickable:hover {
  border-color: #ff6600 !important;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
}
/* Champs de formulaire */
.checkout-step .form-control {
  border: 1px solid #ff6600 !important;
}
.checkout-step .form-control:focus {
  border-color: #ff8533 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}
/* Boutons radio et checkbox */
.checkout-step .custom-radio,
.checkout-step .custom-checkbox {
  border-color: #ff6600 !important;
}
.checkout-step .custom-radio input:checked ~ span,
.checkout-step .custom-checkbox input:checked ~ span {
  border-color: #ff6600 !important;
  background-color: #ff6600 !important;
}
/* Options de livraison */
.delivery-option {
  border: 2px solid #ff6600 !important;
  border-radius: 4px;
  margin-bottom: 15px;
}
.delivery-option:hover {
  border-color: #ff8533 !important;
  background-color: rgba(255, 102, 0, 0.05);
}
/* Carrier extra content (Mondial Relay, etc.) */
.carrier-extra-content {
  border-top: 1px solid #ff6600 !important;
}
/* Adresses sélectionnables */
.address-item {
  border: 2px solid #ff6600 !important;
  border-radius: 4px;
}
.address-item.selected {
  border-color: #ff8533 !important;
  background-color: rgba(255, 102, 0, 0.05);
}
/* Séparateurs horizontaux */
.checkout-step hr {
  border-top-color: #ff6600 !important;
}
/* Input group (pour les champs avec icônes) */
.checkout-step .input-group-append .btn {
  border-color: #ff6600 !important;
}
/* Textarea */
.checkout-step textarea.form-control {
  border: 2px solid #ff6600 !important;
}
/* Section de login (collapse) */
#personal-information-step-login {
  border: 2px solid #ff6600 !important;
  border-radius: 4px;
  padding: 20px;
  margin-top: 15px;
}
/* Alerts */
.checkout-step .alert {
  border-left: 4px solid #ff6600 !important;
}
.sendcloud-spp__pick-button .material-icons {
    display: none;
}
.sendcloud-spp__pick-button {
    background-color: #005a39 !important;
    border-radius: 20px !important;
	color: white; 
}
/* Inversion des couleurs au hover */
.sendcloud-spp__pick-button:hover {
    background-color: white !important;
    color: #005a39 !important;
}

/* ========================================
   BOUTONS CONTINUER - VERT
   ======================================== */
/* Tous les boutons "Continuer" du checkout */
.checkout-step button.continue,
.checkout-step button[name="continue"],
.checkout-step button[name="confirmDeliveryOption"],
.checkout-step button[name="confirm-addresses"],
#login-form button.continue,
#customer-form button.continue,
#js-delivery button.continue {
  background-color: #00744A !important;
  border: 2px solid #00744A !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover des boutons verts */
.checkout-step button.continue:hover,
.checkout-step button[name="continue"]:hover,
.checkout-step button[name="confirmDeliveryOption"]:hover,
.checkout-step button[name="confirm-addresses"]:hover,
#login-form button.continue:hover,
#customer-form button.continue:hover,
#js-delivery button.continue:hover {
  background-color: #005a39 !important;
  border-color: #005a39 !important;
  box-shadow: 0 4px 12px rgba(0, 116, 74, 0.4);
  transform: translateY(-2px);
}

/* Active/Focus des boutons verts */
.checkout-step button.continue:active,
.checkout-step button.continue:focus,
.checkout-step button[name="continue"]:active,
.checkout-step button[name="continue"]:focus {
  background-color: #004d31 !important;
  border-color: #004d31 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 116, 74, 0.3);
}

/* PAGE PANIER */
/* ========================================
   STYLES PAGE PANIER - MAQUETTE LGA
   ======================================== */

/* Container principal du panier - marges latérales */
#main .cart-grid {
  padding: 0 60px !important;
  margin: 0 auto !important;
}

/* Titre "Panier" - H1 */
#main .page-title,
#main h1.page-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 72px !important;
  color: #3C3C3C !important;
  padding: 20px 60px !important;
  margin: 0 0 20px 0 !important;
}

/* Conteneur des produits - bordure orange avec border-radius */
.cart-container {
  border: 1px solid #F28705 !important;
  border-radius: 16px !important;
  padding: 20px !important;
  background: #ffffff !important;
}

/* Cart overview - hérite du style du container */
.cart-overview {
  border: none !important;
}

/* Items du panier - séparateurs orange entre les produits */
.cart-item {
  border: none !important;
  border-bottom: 2px solid #F28705 !important;
  padding: 20px 0 !important;
}

.cart-item:last-child {
  border-bottom: none !important;
}

/* Titres des produits dans le panier */
.cart-item .product-line-info .label,
.cart-item .product-line-info a.label {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 28px !important;
  letter-spacing: 0 !important;
  color: #3C3C3C !important;
  text-decoration: none !important;
}

.cart-item .product-line-info a.label:hover {
  color: #F28705 !important;
}

/* Masquer la contenance séparée (info déjà dans le titre) */
.cart-item .product-line-info-secondary.attribute-contenance {
  display: none !important;
}

/* Prix unitaire - Style orange comme la maquette */
.cart-item .unit-price .value {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #F28705 !important;
}

/* Lignes de produits */
.product-line-grid {
  border: none !important;
}

/* Séparateurs horizontaux (hr) */
.cart-summary hr,
.cart-detailed-totals hr {
  border-top-color: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
}

/* Champs de quantité - Style comme la maquette */
.cart-item .input-group.bootstrap-touchspin,
#main .cart-item .input-group.bootstrap-touchspin {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  border: 2px solid #F28705 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #fff !important;
  width: auto !important;
  min-width: 70px !important;
  max-width: 90px !important;
}

.cart-item .js-cart-line-product-quantity,
#main .cart-item .js-cart-line-product-quantity {
  border: none !important;
  text-align: center !important;
  width: 35px !important;
  height: 45px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  background: transparent !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Masquer les flèches natives du input number */
.cart-item input[type="number"]::-webkit-outer-spin-button,
.cart-item input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}

/* Container des boutons + et - */
.cart-item .input-group-btn-vertical {
  display: flex !important;
  flex-direction: column !important;
  border-left: 1px solid #F28705 !important;
}

/* Boutons de quantité (+ et -) - utiliser les bonnes classes */
.cart-item .bootstrap-touchspin-up,
.cart-item .bootstrap-touchspin-down {
  border: none !important;
  background: #f9f9f9 !important;
  padding: 4px 10px !important;
  font-size: 12px !important;
  color: #6B6B6B !important;
  line-height: 1 !important;
  height: auto !important;
  min-height: 22px !important;
  cursor: pointer !important;
}

.cart-item .bootstrap-touchspin-up {
  border-bottom: 1px solid #F28705 !important;
}

.cart-item .bootstrap-touchspin-up:hover,
.cart-item .bootstrap-touchspin-down:hover {
  color: #F28705 !important;
  background: #fff !important;
}

.cart-item .bootstrap-touchspin-up i,
.cart-item .bootstrap-touchspin-down i {
  font-size: 10px !important;
}

/* Prix total du produit (ligne) */
.cart-item .price .product-price strong {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: #3C3C3C !important;
}

/* Icône poubelle */
.cart-item .remove-from-cart {
  color: #6B6B6B !important;
  font-size: 18px !important;
}

.cart-item .remove-from-cart:hover {
  color: #F28705 !important;
}

/* ========================================
   RÉSUMÉ DU PANIER (colonne droite)
   ======================================== */

/* Card résumé */
.cart-summary {
  border: 1px solid #F28705 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: none !important;
}

/* Card body dans résumé */
.cart-summary .card-body {
  border: none !important;
  padding: 20px !important;
}

/* Lignes du récapitulatif (articles, livraison, etc.) */
.cart-summary .cart-summary-line {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 8px 0 !important;
  font-family: 'Poppins', sans-serif !important;
  width: 100% !important;
}

.cart-summary .cart-summary-line .label {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #3C3C3C !important;
  text-align: left !important;
}

.cart-summary .cart-summary-line .value {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #3C3C3C !important;
  text-align: right !important;
  margin-left: auto !important;
}

/* Ligne Total - plus importante */
.cart-summary .cart-summary-line.cart-total .label {
  font-weight: 600 !important;
  font-size: 18px !important;
}

.cart-summary .cart-summary-line.cart-total .value {
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Forcer l'alignement à droite des valeurs */
.cart-detailed-subtotals .cart-summary-line,
.cart-summary-totals .cart-summary-line {
  display: flex !important;
  justify-content: space-between !important;
  width: 100% !important;
}

.cart-detailed-subtotals .value,
.cart-summary-totals .value {
  text-align: right !important;
  flex-shrink: 0 !important;
}

/* Masquer les hr par défaut */
.cart-summary hr {
  display: none !important;
}

/* ========================================
   CODE PROMO - Style maquette
   ======================================== */

.cart-summary .block-promo {
  padding: 15px 0 !important;
}

.cart-summary .promo-code .input-group {
  display: flex !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.cart-summary .promo-code .voucher-icon {
  display: none !important;
}

.cart-summary .promo-code input.form-control {
  border: none !important;
  padding: 12px 15px !important;
  font-size: 14px !important;
  flex: 1 !important;
  box-shadow: none !important;
}

.cart-summary .promo-code input.form-control::placeholder {
  color: #999 !important;
}

/* Bouton Appliquer/Ajouter - Orange */
.cart-summary .promo-code .btn-secondary {
  background: #F28705 !important;
  border: none !important;
  color: #fff !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  border-radius: 0 8px 8px 0 !important;
  transition: all 0.3s ease !important;
}

.cart-summary .promo-code .btn-secondary:hover {
  background: #e07a00 !important;
}

/* ========================================
   SECTION PAIEMENT SÉCURISÉ
   ======================================== */

#ps_checkout-payment-method-logo-block-container {
  background: #FFF8E4 !important;
  border: 2px dashed #F28705 !important;
  border-radius: 12px !important;
  padding: 15px 20px !important;
  margin-top: 15px !important;
}

#ps_checkout-payment-method-logo-block-title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #3C3C3C !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

#ps_checkout-payment-method-logo-block-img {
  width: 24px !important;
  height: 24px !important;
}

#ps_checkout-payment-method-logos-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-items: center !important;
}

#ps_checkout-payment-method-logos-container .paypal-mark {
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  padding: 5px 8px !important;
  margin: 0 !important;
}

/* Masquer les logos de paiement pour un design plus simple */
#ps_checkout-payment-method-logos-container {
  display: none !important;
}

/* Style simplifié - juste icône + texte */
#ps_checkout-payment-method-logo-block-container {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

#ps_checkout-payment-method-logo-block-title {
  margin-bottom: 0 !important;
}

/* Images produits dans le panier - border-radius */
.cart-item .product-image img {
  border-radius: 12px !important;
}

/* Section "Articles récents" / Cross-selling */
.crossselling-products.block.block-section {
  margin-top: 40px !important;
}

.crossselling-products .section-title,
.crossselling-products h4 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  color: #3C3C3C !important;
  margin-bottom: 20px !important;
}

/* Bouton "Continuer mes achats" - Page panier uniquement */
.cart-grid-body > a.btn-secondary {
  border: 2px solid #F28705 !important;
  color: #F28705 !important;
  background: transparent !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease !important;
}

.cart-grid-body > a.btn-secondary:hover {
  background: #F28705 !important;
  color: #fff !important;
}

/* carte france */
.elementor-element.elementor-element-ocolymc {

    margin: 0 60px ;
}
/* ========================================
   BOUTON COMMANDER - VERT
   ======================================== */

/* Bouton "Commander" */
.checkout .btn-primary,
.cart-detailed-actions .btn-primary,
a[href*="checkout"].btn-primary {
  background-color: #00744A !important;
  border: 2px solid #00744A !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover du bouton Commander */
.checkout .btn-primary:hover,
.cart-detailed-actions .btn-primary:hover,
a[href*="checkout"].btn-primary:hover {
  background-color: #005a39 !important;
  border-color: #005a39 !important;
  box-shadow: 0 4px 12px rgba(0, 116, 74, 0.4);
  transform: translateY(-2px);
}

/* Active/Focus du bouton Commander */
.checkout .btn-primary:active,
.checkout .btn-primary:focus,
.cart-detailed-actions .btn-primary:active,
.cart-detailed-actions .btn-primary:focus {
  background-color: #004d31 !important;
  border-color: #004d31 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 116, 74, 0.3);
}


/* ====================================================================
   12. MENTIONS LÉGALES
   ==================================================================== */

/* ========================================
   Mentions Légales 
   ======================================== */
.legals {
	color: #3C3C3C; }






/* ====================================================================
   13. RESPONSIVE - Media queries
   ==================================================================== */

/* ========================================
   TABLETTES - max-width: 1024px
   ======================================== */

/* Responsive - ajustements pour tablettes */
@media (max-width: 1024px) {
    .elementor-element-fu0c31u img { top: 0; left: 0; width: 120px; }
    .elementor-element-zqn59j8 img { top: 40px; left: 140px; width: 100px; }
    .elementor-element-4cpofny img { top: 100px; left: 60px; width: 110px; }
    .elementor-element-24qjwg2 img { top: 180px; left: 180px; width: 90px; }
    .column-grenouille-mobile .elementor-widget-wrap { min-height: 350px; }
}

@media (max-width: 768px) {

  /* Répare l’affichage des checkbox et labels dans le checkout */
  .checkout-step .custom-checkbox {
    width: auto !important;
    height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
  }

  .checkout-step .custom-checkbox label {
    display: block !important;
    width: calc(100% - 28px);
    padding-left: 8px;
    line-height: 1.4;
    font-size: 14px;
  }

  .checkout-step .custom-checkbox span {
    margin-top: 3px;
  }
}


/* ========================================
   MOBILES MOYENS - max-width: 767px
   ======================================== */

/* Responsive - ajustements pour mobiles moyens */
@media (max-width: 767px) {
    .elementor-element-fu0c31u img { top: 0; left: 0; width: 90px; }
    .elementor-element-zqn59j8 img { top: 30px; left: 100px; width: 80px; }
    .elementor-element-4cpofny img { top: 80px; left: 40px; width: 85px; }
    .elementor-element-24qjwg2 img { top: 150px; left: 140px; width: 70px; }

    /* Styles responsive pour contenus */
    .category-description-expandable.collapsed .category-description-content {
        max-height: 150px;
    }

    .category-description-toggle {
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Lien actif "Nos bières" */
    .beer-homepage .nav-tabs .nav-link.active {
        font-size: 32px;
        line-height: 36px;
    }
	
	/* carte france */
	.elementor-element.elementor-element-ocolymc {
    margin: 0 20px ;
	}
	
	.voir-plus-btn {
        bottom: -20px;
    }
	
	.voir-plus-btn a {
        font-size: 14px; /* taille du texte */
        gap: 2px;
    }

    .voir-plus-btn .arrow {
        font-size: 16px; /* taille de la flèche */
    }

    /* PAGE PANIER - Responsive mobile */
    #main .cart-grid {
        padding: 0 20px !important;
    }

    #main .page-title,
    #main h1.page-title {
        font-size: 28px !important;
        line-height: 40px !important;
        padding: 15px 20px !important;
    }

    .cart-container {
        border-radius: 12px !important;
        padding: 15px !important;
    }

    .cart-item .product-line-info .label,
    .cart-item .product-line-info a.label {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .cart-item .unit-price .value {
        font-size: 14px !important;
    }

    .cart-summary {
        border-radius: 12px !important;
        margin-top: 20px !important;
    }
}

/* ========================================
   NOS BIÈRES - Vague responsive mobile
   ======================================== */

@media (max-width: 767px) {
  .beer-homepage .nav-tabs .nav-link.active::after {
    bottom: -2px !important;
    width: 220px !important;
    margin-left: 40px !important; /* Ajustez cette valeur pour décaler : + vers droite, - vers gauche */
  }
}

/* ========================================
   PETITS MOBILES - max-width: 480px
   ======================================== */

/* Responsive - petits mobiles */
@media (max-width: 480px) {
    .column-grenouille-mobile .caroline-mobile img {
        top: -50px;
        left: 150px;
        width: 100px;
    }

    .column-grenouille-mobile .amelie-mobile img {
        top: -70px;
        left: 240px;
        width: 70px;
    }

    .column-grenouille-mobile .lea-mobile img {
    top: 70px;
    left: 163px;
    width: 55px;
    }


    .column-grenouille-mobile .jm-mobile img {
        top: 10px;
        left: 250px;
        width: 65px;
    }
}

/* Fix checkboxes checkout - zone cliquable correcte */
body#checkout .custom-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px !important;
    position: relative !important;
}

body#checkout .custom-checkbox input[type="checkbox"] {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 22px !important;
    height: 22px !important;
    opacity: 0 !important;
    cursor: pointer !important;
    z-index: 2 !important;
    margin: 0 !important;
}

body#checkout .custom-checkbox span:first-of-type {
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 10px !important;
    margin-top: 0 !important;
}

body#checkout .custom-checkbox label {
    flex: 1 !important;
    display: block !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    cursor: pointer !important;
    padding-left: 0 !important;
}

/* ========================================
   PAGE MON COMPTE - Style harmonisé
   ======================================== */

/* Container principal avec marges - cibler #main qui contient la page Mon Compte */
#wrapper #main:has(.my-account-page-content-wrapper),
#wrapper #content-wrapper:has(.my-account-page-content-wrapper) {
  padding: 0 60px !important;
  margin: 0 auto !important;
}

/* Fallback si :has() n'est pas supporté */
.page-my-account #main,
.page-identity #main,
.page-addresses #main,
.page-history #main,
.page-order-slip #main,
.page-discount #main,
body[class*="my-account"] #main {
  padding: 0 60px !important;
  margin: 0 auto !important;
}

/* Titre de la page */
#main:has(.my-account-page-content-wrapper) .page-header {
  padding: 20px 0 !important;
  margin-bottom: 20px !important;
}

#main:has(.my-account-page-content-wrapper) .page-header .page-title,
#main:has(.my-account-page-content-wrapper) h1.page-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 72px !important;
  color: #3C3C3C !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ========================================
   MENU LATÉRAL - Liens du compte
   ======================================== */

/* Colonne menu - largeur fixe avec marge droite */
.my-account-side-links.col-sm-3 {
  flex: 0 0 22% !important;
  max-width: 22% !important;
  margin-right: 20px !important;
}

/* Colonne contenu - prend le reste */
.my-account-page-content.col-sm-9 {
  flex: 1 !important;
  max-width: none !important;
}

.my-account-side-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 0 !important;
}

.my-account-side-links a {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.my-account-side-links .link-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 15px 20px !important;
  background: #fff !important;
  border: 1px solid #F28705 !important;
  border-radius: 12px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #3C3C3C !important;
  transition: all 0.3s ease !important;
}

.my-account-side-links .link-item:hover {
  background: #F28705 !important;
  color: #fff !important;
}

.my-account-side-links .link-item i {
  font-size: 18px !important;
  color: #F28705 !important;
  width: 24px !important;
  text-align: center !important;
}

.my-account-side-links .link-item:hover i {
  color: #fff !important;
}

/* ========================================
   CONTENU PRINCIPAL - Formulaire
   ======================================== */

.my-account-page-content {
  background: #fff !important;
  border: 1px solid #F28705 !important;
  border-radius: 16px !important;
  padding: 30px !important;
}

.my-account-page-content h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #3C3C3C !important;
  margin-bottom: 25px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid #F28705 !important;
}

/* Labels des champs */
.my-account-page-content .form-group .col-form-label {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #3C3C3C !important;
}

/* Champs de formulaire */
.my-account-page-content .form-control {
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  padding: 12px 15px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  transition: border-color 0.3s ease !important;
}

.my-account-page-content .form-control:focus {
  border-color: #F28705 !important;
  box-shadow: 0 0 0 3px rgba(242, 135, 5, 0.1) !important;
  outline: none !important;
}

/* Bouton afficher mot de passe */
.my-account-page-content .input-group .btn-outline-secondary {
  border: 1px solid #e0e0e0 !important;
  border-left: none !important;
  border-radius: 0 8px 8px 0 !important;
  background: #f9f9f9 !important;
  color: #6B6B6B !important;
}

.my-account-page-content .input-group .btn-outline-secondary:hover {
  background: #F28705 !important;
  color: #fff !important;
  border-color: #F28705 !important;
}

/* Radio buttons (Titre M./Mme) */
.my-account-page-content .custom-radio span {
  border-color: #F28705 !important;
}

.my-account-page-content .custom-radio input:checked + span {
  background: #F28705 !important;
}

/* Checkboxes Mon Compte - layout et zone cliquable */
.my-account-page-content .custom-checkbox {
  display: flex !important;
  align-items: flex-start !important;
  width: 100% !important;
  position: relative !important;
  margin-bottom: 12px !important;
}

.my-account-page-content .custom-checkbox input[type="checkbox"] {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 22px !important;
  height: 22px !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 2 !important;
  margin: 0 !important;
}

.my-account-page-content .custom-checkbox span:first-of-type {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid #F28705 !important;
  border-radius: 4px !important;
  background: #fff !important;
  margin-right: 10px !important;
  margin-top: 2px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.my-account-page-content .custom-checkbox input:checked + span {
  background: #F28705 !important;
  border-color: #F28705 !important;
}

.my-account-page-content .custom-checkbox input:checked + span i {
  color: #fff !important;
}

.my-account-page-content .custom-checkbox label {
  flex: 1 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* Bouton Enregistrer */
.my-account-page-content .form-footer .btn-primary,
.my-account-page-content .btn-primary {
  background: #00744A !important;
  border: 2px solid #00744A !important;
  border-radius: 20px !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 12px 40px !important;
  transition: all 0.3s ease !important;
}

.my-account-page-content .form-footer .btn-primary:hover,
.my-account-page-content .btn-primary:hover {
  background: #005a39 !important;
  border-color: #005a39 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 116, 74, 0.3) !important;
}

/* Commentaires des champs */
.my-account-page-content .form-control-comment {
  font-size: 12px !important;
  color: #999 !important;
  font-style: italic !important;
}

/* ========================================
   BLOC INSTAGRAM - Pleine largeur
   ======================================== */

.insta-wrapper-full {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 60px !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* ========================================
   PAGE MON COMPTE - Responsive
   ======================================== */

@media (max-width: 767px) {
  #wrapper #main:has(.my-account-page-content-wrapper),
  #wrapper #content-wrapper:has(.my-account-page-content-wrapper),
  .page-my-account #main,
  .page-identity #main,
  .page-addresses #main,
  .page-history #main,
  body[class*="my-account"] #main {
    padding: 0 20px !important;
  }

  #main:has(.my-account-page-content-wrapper) .page-header .page-title,
  #main:has(.my-account-page-content-wrapper) h1.page-title,
  .page-my-account #main h1.page-title,
  .page-identity #main h1.page-title {
    font-size: 28px !important;
    line-height: 40px !important;
  }

  /* Colonnes en stack vertical sur mobile */
  .my-account-page-content-wrapper > .row {
    flex-direction: column !important;
  }

  /* Menu latéral - pleine largeur */
  .my-account-side-links,
  .my-account-side-links.col-sm-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }

  /* Contenu - pleine largeur */
  .my-account-page-content,
  .my-account-page-content.col-sm-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 20px !important;
    border-radius: 12px !important;
  }

  .my-account-page-content h2 {
    font-size: 20px !important;
  }

  /* Instagram - pleine largeur mobile */
  .insta-wrapper-full {
    width: 100vw !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding: 0 !important;
  }
}



/* ============================
   POSITION MOBILE DES GRENOUILLES 
   ============================ */

@media (max-width: 768px) {

    /* La colonne grenouilles doit être un conteneur relatif */
    .column-grenouille-mobile .elementor-widget-wrap {
        position: relative !important;
        min-height: 380px; /* adapter si nécessaire */
    }

    /* Styles généraux pour les SVG mobiles */
    .column-grenouille-mobile .elementor-widget-image img {
        position: absolute !important;
        display: block;
        height: auto;
        width: auto;
        max-width: 140px; /* taille générale adaptable */
        z-index: 10;
    }

    /* 1) CAROLINE MOBILE */
    .column-grenouille-mobile .caroline-mobile img {
        top: -40px !important;
        left: 40% !important;
        width: 120px !important;
    }

    /* 2) AMÉLIE MOBILE */
    .column-grenouille-mobile .amelie-mobile img {
        top: -20px !important;
        left: 70% !important;
        width: 110px !important;
    }

    /* 3) LÉA MOBILE */
    .column-grenouille-mobile .lea-mobile img {
        top: 140px !important;
        left: 20% !important;
        width: 115px !important;
    }

    /* 4) JEAN-MARC MOBILE */
    .column-grenouille-mobile .jm-mobile img {
        top: 220px !important;
        left: 65% !important;
        width: 100px !important;
    }
}

/* ====================================================================
   FIX DEFINITIF - POSITION DES GRENOUILLES MOBILE (PLACÉ EN DERNIER)
   ==================================================================== */

@media (max-width: 820px) {

    /* Le conteneur mobile doit toujours être le parent des positions */
    .column-grenouille-mobile .elementor-widget-wrap {
        position: relative !important;
        min-height: 360px !important;
    }

    /* Toutes les grenouilles en absolute */
    .column-grenouille-mobile .elementor-widget-image img {
        position: absolute !important;
        max-width: 140px !important;
        height: auto !important;
        z-index: 20 !important;
    }

    /* === POSITIONS FINALES MOBILE === */

    /* CAROLINE */
    .column-grenouille-mobile .caroline-mobile img {
        top: -100px !important;
        left: 28% !important;
        width: 190px !important;
    }

    /* AMÉLIE */
    .column-grenouille-mobile .amelie-mobile img {
        top: -60px !important;
        left: 67% !important;
        width: 80px !important;
    }

    /* LÉA */
    .column-grenouille-mobile .lea-mobile img {
        top: -450px !important;
        left: 88% !important;
        width: 80px !important;
    }

    /* JEAN-MARC */
    .column-grenouille-mobile .jm-mobile img {
        top: 0px !important;
        left: 80% !important;
        width: 80px !important;
    }
}

/* Forcer toute la typographie en Poppins dans la section grenouille */
.column-grenouille,
.column-grenouille * {
    font-family: 'Poppins', sans-serif !important;
}

/* Forcer la taille du texte de ce bloc Elementor à 16px */
.elementor-element-gjbwy0g .elementor-text-editor p,
.elementor-element-gjbwy0g .elementor-text-editor p span {
  font-size: 16px !important;
  line-height: 1.6; /* optionnel, juste pour l’aération */
}


/* Forcer aussi les titres Elementor */
.column-grenouille .elementor-heading-title {
    font-family: 'Poppins', sans-serif !important;
}

/* Forcer le texte (rich text Elementor) */
.column-grenouille .elementor-text-editor,
.column-grenouille .elementor-text-editor * {
    font-family: 'Poppins', sans-serif !important;
}

/* Forcer les boutons */
.column-grenouille .elementor-button,
.column-grenouille .elementor-button * {
    font-family: 'Poppins', sans-serif !important;
}

/* ============================================
   TYPO MOBILE - SECTION GRENOUILLE
   ============================================ */

/* Forcer toute la typographie en Poppins */
.column-grenouille-mobile,
.column-grenouille-mobile * {
    font-family: 'Poppins', sans-serif !important;
}

/* Titre mobile */
.column-grenouille-mobile .elementor-heading-title,
.column-grenouille-mobile .elementor-heading-title * {
    font-family: 'Poppins', sans-serif !important;
}

/* Texte (rich text editor) */
.column-grenouille-mobile .elementor-text-editor,
.column-grenouille-mobile .elementor-text-editor * {
    font-family: 'Poppins', sans-serif !important;
}

/* Bouton */
.column-grenouille-mobile .elementor-button,
.column-grenouille-mobile .elementor-button * {
    font-family: 'Poppins', sans-serif !important;
}

/* SVG Vector 19 */
.elementor-element-cinwdjd img {
    width: 100% !important;
}


/* Désactiver le clic sur les logos partenaires */
#nos-partenaires .swiper-slide a {
    pointer-events: none;
    cursor: default;
}

/* Bouton "Commander" sur l'étape de paiement */
body#checkout #payment-confirmation .btn-primary {
  background-color: #00744A !important;
  border: 2px solid #00744A !important;
  border-radius: 24px !important;  /* même arrondi que tes autres CTA */
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  padding: 12px 32px !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

/* Hover */
body#checkout #payment-confirmation .btn-primary:hover:not(:disabled):not(.disabled) {
  background-color: #005a39 !important;
  border-color: #005a39 !important;
  box-shadow: 0 4px 12px rgba(0, 116, 74, 0.4) !important;
  transform: translateY(-2px);
}

/* État disabled (avant choix du mode de paiement) */
body#checkout #payment-confirmation .btn-primary:disabled,
body#checkout #payment-confirmation .btn-primary.disabled {
  background-color: #00744A !important;
  border-color: #00744A !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Bouton "Commander" Stripe / ps_checkout (paiement carte) */
body#checkout .ps_checkout-button .btn-primary {
  background-color: #00744A !important;
  border: 2px solid #00744A !important;
  border-radius: 24px !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  padding: 12px 32px !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

/* Hover quand le bouton est actif (case CGV cochée) */
body#checkout .ps_checkout-button .btn-primary:not(:disabled):not(.disabled):hover {
  background-color: #005a39 !important;
  border-color: #005a39 !important;
  box-shadow: 0 4px 12px rgba(0, 116, 74, 0.4) !important;
  transform: translateY(-2px);
}

/* État disabled (avant coche des conditions) */
body#checkout .ps_checkout-button .btn-primary:disabled,
body#checkout .ps_checkout-button .btn-primary.disabled {
  background-color: #00744A !important;
  border-color: #00744A !important;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* border orange map contact */
.contact-map {
    background: #ffffff;
    border: 2px solid #F27405;
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Décalage du texte "Panier" comme testé en inline */
body#cart #inner-wrapper #main .page-title span {
  display: inline-block;
  margin-left: 14px !important;
}

