/*
Theme Name: Edialux
Description: Inside Web 2025 - thème
Version: 2.0.0
Author: Inside Web
Author URI: https://www.insideweb.be
*/


:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #0E5A49;
    --secondary: #003479;
    --yellow: #FFF000;
    --beige: #F9F5F5;
    --greyHard: #535353;
    --greyClair: #F0F0F0;
    --mont: 'Montserrat', sans-serif;
    --transparent: transparent;
}

body{
    font-family: var(--mont);	
    font-weight:400;
    margin: 0;
    overflow-y: scroll;
    /*14px-16px*/
    font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    color:var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

img {
    width: 100%;
}

p:last-child {
    margin-bottom: 0;
}

button, .button{
    background: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 10px 20px;
    color: var(--primary);
    /*14px-16px*/
    font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    transition: all 0.5s ease 0s;
}

button:hover, .button:hover{
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.hide{
    display: none;
}

.btnSite, .btnSiteWhite, .btnSiteYellow, .btnContact{
    border: 1px solid var(--secondary);
    color: var(--white);
    background-color: var(--secondary);
    padding: 4px 4px 4px 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 100px;
    font-family: var(--mont);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: max-content;
}

.btnContact{
    background-color: var(--secondary) !important;
}

.btnSite i, .btnSiteWhite i, .btnSiteYellow i, .btnContact i{
    font-size: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
    transition: all 0.3s ease-in-out;
}

.btnSiteWhite:hover{
    color: var(--white);
    background-color: var(--secondary);
}

.btnSite:hover, .btnContact:hover{
    color: var(--white);
}

.btnSite:hover i, .btnContact:hover i{
    background-color: var(--white);
    color: var(--secondary);
}

.btnSiteWhite{
    background-color: var(--white);
    color: var(--secondary);
}

.btnSiteWhite i{
    background-color: var(--secondary);
    color: var(--white);
}

.btnSiteWhite:hover i{
    background-color: var(--white);
    color: var(--secondary);
}

.btnSiteYellow:hover i{
    background-color: var(--yellow);
    color: var(--secondary);
}

.btnSiteYellow:hover{
    background-color: var(--secondary);
    color: var(--yellow);
}

.btnSiteYellow{
    background-color: var(--yellow);
    color: var(--secondary);
}

.btnSiteYellow i{
    background-color: var(--secondary);
    color: var(--yellow);
}

.title1{
    font-family: var(--mont);
    font-weight: 800;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.title2, .h1Retailers{
    font-family: var(--mont);
    font-weight: 500;
    font-size: 35px;
    letter-spacing: 0%;
    line-height: 100%;
}

.h1Retailers{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

.title3{
    font-family: var(--mont);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0%;
}

.title4{
    font-family: var(--mont);
    font-weight: 600;
    font-size: 20px;    
    line-height: 100%;
    letter-spacing: 0%;
}

.title5{
    font-family: var(--mont);
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
}

.texte1{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
}

.texte2{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
}

.texte2.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.quote{
    font-family: var(--mont);
    font-weight: 400;
    font-style: Italic;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
}

.dropdownText{
    font-family: var(--mont);
    font-weight: 700;
    font-size: 14px;
}

.font400{
    font-weight: 400;
}

.font500{
    font-weight: 500;
}

.colorWhite{
    color: var(--white);
}

.colorGreen{
    color: var(--primary);
}

.colorBlack{
    color: var(--black);
}

.colorBlue{
    color: var(--secondary);
}

.colorGreyHard{
    color: var(--greyHard);
}

.spaceBottom100{
    margin-bottom: 100px;
}

.spaceTop100{
    margin-top: 100px;
}

.spaceTopBottom60{
    margin-top: 60px;
    margin-bottom: 60px;
}

.spaceBottom75{
    margin-bottom: 75px;
}

.spaceTop75{
    margin-top: 75px;
}

.mb-12{
    margin-bottom: 12px;
}

.mb-15{
    margin-bottom: 15px;
}

.mb-18{
    margin-bottom: 18px;
}

.mb-21{
    margin-bottom: 21px;
}

.mb-25{
    margin-bottom: 25px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-32{
    margin-bottom: 32px;
}

.mb-40{
    margin-bottom: 40px;
}

.mb-50{
    margin-bottom: 50px;
}

.mb-120{
    margin-bottom: 120px;
}

.mt-20{
    margin-top: 20px;
}

.mt-30{
    margin-top: 30px;
}

.mt-44{
    margin-top: 44px;
}

.mt-52{
    margin-top: 52px;
}

.mt-68{
    margin-top: 68px;
}

.mt-155{
    margin-top: 155px;
}

.colorBgBleu{
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px;
    max-width: max-content;
}

.inputText, #message, select{
    width: 100%;
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    padding: 10px;
}

.inputText::placeholder, #message::placeholder, select{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--greyHard);
}

.formulaireContact label, .success, .error{
    font-family: var(--mont);
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    color: var(--secondary);
    margin-bottom: 7px;
}

.success, .error{
    margin-top: 10px;
}

/* Style pour input file */
.inputFile, .btnChooseFile {
    width: 100%;
    border: 1px solid #C7C7C7;
    border-radius: 5px;
    padding: 10px;
    background-color: var(--secondary);
    cursor: pointer;
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.inputFile::file-selector-button {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-family: var(--mont);
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
    transition: background-color 0.3s ease;
}

.inputFile:hover, .inputFile:hover::file-selector-button{
    background-color: var(--white);
    color: var(--secondary);
}

#fichiersInvalid{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--greyHard);
    margin-top: 6px;
}

.w-48{
    width: 48%;
}

.invalidInput{
    margin-top: 10px;
}

.formulaireContact{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}


/* HEADER */

.burger{
    display: flex;
    align-items: center;
    outline: none;
    height: 30px;
    width: 24px;
    border: 0;
    padding: 0px;
    background: var(--transparent);
    transition: all 250ms ease-out;
    cursor: pointer;
    z-index: 9999;
}

.burger:focus, .burger:hover{
    box-shadow: none;
    border: none;
}

.ligne{
    content: '';
    width: 24px;
    height: 2px;
    position: absolute;
    transition: all 250ms ease-out;
    will-change: transform;
}

.ligne-gauche{
    background-color: var(--secondary);
    transform: translateY(6px);
}

.ligne-center{
    background-color: var(--secondary);
    transform: translateY(0px);
}

.ligne-droite{
    background-color: var(--secondary);
    transform: translateY(-6px);
}

.ligne-gauche.active{
    transform: translateY(0) rotate(45deg);    
}

.ligne-center.active{
    opacity: 0;
}

.ligne-droite.active{
    transform: translateY(0) rotate(-45deg);
}

/* Search Mobile Button */
.search-mobile-btn {
    background: transparent;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--secondary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.search-mobile-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
    border: none;
}

#mc_embed_signup form{
    margin: 0 !important;
}

.search-mobile-btn:focus,
.search-mobile-btn:active,
.search-mobile-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

header .navbar-brand img{
    width: 180px;
    /* max-width: 150px; */
}

.offcanvas-footer{
    display: flex;
    align-items: center;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

.firstSection{
    margin-top: 200px;
}

.navbar{
    padding-top: 6px;
    padding-bottom: 6px;
}

header{
    position: fixed;
    top: 66px;
    z-index: 9998;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .navbar{
    background-color: var(--white);
    padding: 3px 24px;
    border-radius: 58px;
    width: 1000px;
    box-shadow: 0px 0px 26.2px 0px #0000001A;
}

.extra-menu-container{
    background-color: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: end;
}

.extra-menu-container .navbar-nav{
    margin-right: 0 !important;
}

.extra-menu-container .navbar-nav{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    gap: 24px;
    padding-left: 5%;
}

.extra-menu-container ul li{
    max-width: max-content;
}

.offcanvas{
    height: 100vh !important;
}

.videoWrapper iframe{
    width: 100%;
}

/* Cacher le extra-menu en dehors du header sur mobile uniquement */
@media (max-width: 991px) {
    header ~ .extra-menu-container,
    .extra-menu-container.md-d-none {
        display: none !important;
    }
}

/* Afficher les liens du extra-menu dans le offcanvas */
.offcanvas-body .extra-menu-container ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin-top: 20px;
}

.extra-menu-container ul li a{
    font-family: var(--mont);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--white);
    max-width: max-content;
    transition: all 0.3s ease-in-out;
}

.extra-menu-container ul li a:hover{
    color: var(--yellow);
}

.dropdown-menu a{
    color: var(--primary) !important;
}

.imgRectangle{
    aspect-ratio: 3/2;
}

.dropdown-menu a:hover,
.dropdown-menu a:active,
.dropdown-menu a.active{
    color: var(--primary) !important;
    background-color: transparent !important;
}

.cover_slider-dropdown a{
    padding: 8px 20px;
    border-bottom: 1px solid var(--greyClair);
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}

.cover_slider-dropdown a:hover{
    color: var(--white) !important;
    background-color: var(--primary) !important;
}

/* Liens actifs dans le dropdown - TOUJOURS VERT */
.dropdown-menu .current-menu-item > a,
.dropdown-menu .current_page_item > a,
.dropdown-menu .current-menu-ancestor > a,
.dropdown-menu .current-menu-parent > a,
.dropdown-menu li.current-menu-item > a,
.dropdown-menu li.current_page_item > a,
.navbar-nav .dropdown-menu .current-menu-item > a,
.navbar-nav .dropdown-menu .current_page_item > a,
.navbar-nav .dropdown-menu .current-menu-ancestor > a,
.navbar-nav .dropdown-menu .current-menu-parent > a,
.navbar-nav .show .dropdown-menu .current-menu-item > a,
.navbar-nav .show .dropdown-menu .current_page_item > a,
.navbar-nav .show .dropdown-menu .current-menu-ancestor > a,
.navbar-nav .show .dropdown-menu .current-menu-parent > a{
    color: var(--primary) !important;
    background-color: transparent !important;
}

.extra-menu-container ul li.current-menu-item > a,
.extra-menu-container ul li.current-menu-parent > a{
    color: var(--yellow) !important;
}

header .nav-link {
    font-family: var(--mont);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 20px !important;
    border-radius: 92px;
}

header .nav-link:hover, header .nav-link.active{
    background-color: var(--secondary);
    color: var(--white) !important;
}

.extra-menu-container .nav-link:focus{
    color: var(--white) !important;
}



/* FIN HEADER */

/* FOOTER */

footer{
    padding: 46.5px 0;
    background: var(--beige);
    border-top: 5px solid var(--yellow);
    margin-top: 100px;
}

.logo-footer{
    max-width: 179px;
}

.lienReseaux{
    display: flex;
    justify-content: start;
    gap: 10px;
}

.lienReseaux a{
    background-color: var(--secondary);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.lienReseaux a:hover{
    background-color: var(--white);
    color: var(--secondary);
}

/* FIN FOOTER */

/* CONTACT */

/* FIN CONTACT */

/* PAGE 404 */

#page404{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-self: center;
}

/* FIN PAGE 404 */

/* Search Box Interactive */
.search-container {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    margin-left: 20px;
    transition: all 0.4s ease-in-out;
    z-index: 10;
}

.navbar-collapse {
    position: relative;
}

.navbar-nav {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    margin-right: 200px;
}

.search-container.active ~ .navbar-nav,
.search-container.active ~ * .navbar-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.4s ease-in-out;
}

.search-box .search-input {
    width: 180px;
    padding: 10px 45px 10px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    font-family: var(--mont);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    background-color: var(--white);
    transition: all 0.4s ease-in-out;
    outline: none;
    margin-left: auto;
}

.search-box .search-input::placeholder {
    color: #B0B0B0;
}

.search-box .search-icon {
    position: absolute;
    right: 15px;
    color: var(--primary);
    font-size: 16px;
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.search-container .search-close {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: var(--primary);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.search-container .search-close:hover{
    color: var(--white) !important;
}

/* État actif quand le champ est focus */
.search-container.active {
    right: 0;
    left: auto;
    margin-left: 0;
    z-index: 100;
    width: 100%;
    transform-origin: right center;
}

.search-container.active .search-box {
    width: 100%;
    background: var(--white);
    border-radius: 30px;
}

.search-container.active .search-input {
    width: calc(100% - 50px);
    padding-right: 20px;
}

.search-container.active .search-icon {
    opacity: 0;
    visibility: hidden;
}

.search-container.active .search-close {
    right: 10px;
    opacity: 1;
    visibility: visible;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

.search-container.active .search-close:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Mobile Search Offcanvas */
.offcanvas-search {
    min-height: 40vh;
}

.offcanvas-search .offcanvas-header {
    background: linear-gradient(125deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 20px;
}

.offcanvas-search .offcanvas-title {
    font-family: var(--mont);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.offcanvas-search .btn-close {
    filter: invert(1);
}

.offcanvas-search .offcanvas-body {
    padding: 30px 20px;
}

.search-container-mobile {
    width: 100%;
}

.search-box-mobile {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.search-input-mobile {
    flex: 1;
    padding: 15px 60px 15px 20px;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    font-family: var(--mont);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    background-color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.search-input-mobile:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 90, 73, 0.1);
}

.search-input-mobile::placeholder {
    color: #B0B0B0;
}

.search-submit-mobile {
    position: absolute;
    right: 5px;
    background: var(--secondary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-submit-mobile:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.search-suggestions-mobile {
    display: none;
    background: var(--white);
    border: 1px solid var(--greyClair);
    border-radius: 12px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestions-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions-mobile li {
    padding: 12px 10px;
    border-bottom: 1px solid var(--greyClair);
}

.search-suggestions-mobile li:last-child {
    border-bottom: none;
}

.search-suggestions-mobile li a {
    color: var(--primary);
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: color 0.3s ease;
}

.search-suggestions-mobile li a:hover {
    color: var(--secondary);
}

.search-suggestions-mobile .result-type {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 8px;
    text-transform: uppercase;
}

.search-suggestions-mobile .no-results {
    text-align: center;
    color: var(--greyHard);
    padding: 20px;
    margin: 0;
}

/* LOGIN PAGE */
.loginPageHero {
    min-height: 320px;
    background: linear-gradient(125deg, var(--secondary) 0%, var(--primary) 100%);
}

.loginPageSection {
    background: var(--beige);
}

.loginCard {
    background: var(--white);
    border: 1px solid var(--greyClair);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0, 52, 121, 0.08);
}

.loginForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loginLabel {
    font-family: var(--mont);
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.loginInput {
    margin-bottom: 6px;
}

.loginRemember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 14px;
    color: var(--greyHard);
    font-size: 14px;
}

.loginAlert {
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 16px;
}

.loginAlertError {
    background: #fdeaea;
    color: #8b1e1e;
    border: 1px solid #f7c6c6;
}

.loginAlertSuccess {
    background: #ebf8ef;
    color: #14532d;
    border: 1px solid #bee6cc;
}

.loginLinks {
    margin-top: 18px;
}

.loginLinks a {
    color: var(--secondary);
    text-decoration: underline;
    font-size: 14px;
}

.loginPage .btnSite.authBtn:hover {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--white);
}

.loginPage .btnSite.authBtn:hover i {
    background-color: var(--white);
    color: var(--secondary);
}

@media (max-width: 767px) {
    .loginCard {
        padding: 24px;
    }

    .loginPageHero {
        min-height: 220px;
    }
}

/* FIN LOGIN PAGE */

/* Search Container Retailers */
.search-container-retailers {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    z-index: 10;
    transition: all 0.3s ease;
}

.search-container-retailers .search-box {
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.search-container-retailers .search-input {
    width: 100%;
    background-color: var(--white);
    color: var(--primary);
    padding: 15px 50px 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease;
}

.search-container-retailers .search-input::placeholder {
    color: var(--greyHard);
}

.search-container-retailers .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    transition: all 0.3s ease;
}

.search-container-retailers .search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container-retailers.active {
    width: 95%;
    max-width: 800px;
    left: 50%;
    transform: translateX(-50%);
}

#retailers-search-results{
    margin-top: 30px;
}

.search-container-retailers.active .search-box {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-container-retailers.active .search-input {
    box-shadow: 0 0 0 2px rgba(0, 52, 121, 0.1);
    width: 100%;
}

.search-container-retailers.active .search-icon {
    color: var(--secondary);
}

.search-container-retailers.active .search-close {
    right: 10px;
    opacity: 1;
    visibility: visible;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

.search-container-retailers.active .search-close:hover {
    color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.search-container-retailers .search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-container-retailers .search-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-container-retailers .search-suggestions-list li {
    border-bottom: 1px solid var(--greyClair);
}

.search-container-retailers .search-suggestions-list li:last-child {
    border-bottom: none;
}

.search-container-retailers .search-suggestions-list a {
    display: block;
    padding: 12px 20px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-container-retailers .search-suggestions-list a:hover {
    background-color: var(--beige);
    color: var(--secondary);
}

.search-container-retailers .no-results {
    padding: 20px;
    text-align: center;
    color: var(--greyHard);
}

/* FIN Search Box Interactive */

/* BUILDER */

.absoluteBlocHero{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
}

.mainSwiper{
    padding-bottom: 0 !important;
}

.imgBackground{
    background-color: var(--beige);
    padding: 10%;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgBackground img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease-in-out;
}

.imgBackground:hover img{
    transform: scale(1.1);
}

.imgBackgroundTips{
    width: 100%;
    height: 325px;
    object-fit: cover;
}

.bgBeige{
    padding: 49px 129px 49px 129px;
    background-color: var(--beige);
}

.contenuWysiwyg h3{
    font-family: var(--mont);
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
    margin-bottom: 12px;
    color: var(--black);
}

.wordBreak{
    word-break: break-word;
}


.contenuWysiwyg ol li, .contenuWysiwyg ul li{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    color: var(--black);
}

.contenuWysiwyg p strong{
    font-family: var(--mont);
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    margin-bottom: 24px;
    color: var(--black);
}

.contenuWysiwyg p{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0%;
    color: var(--black);
}

.contenuWysiwyg a, .lienSite{
    font-family: var(--mont);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--secondary);
}

.contenuWysiwyg a:hover, .lienSite:hover {
    color: var(--primary);
}

.paddingRight0{
    padding-right: 0 !important;
}

.paddingLeft0{
    padding-left: 0 !important;
}

.contenuLien{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 24px;
}

.contenuLien i{
    color: var(--white);
}

.lienNews:hover .imgNews{
    transform: scale(1.2);
}

.imgNews{
    height: 400px;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    transition: all 0.3s ease-in-out;
}

.lienNews{
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}

.rowSpecial{
    --bs-gutter-y: 1.5rem;
}

.absoluteDivNewsletter{
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
}

.container-fluid.position-relative {
    min-height: 400px;
}

.bgBlueNewsletter{
    background-color: var(--secondary);
    padding: 48px;
}



.bgBlueNewsletter .mc-field-group label {
    color: var(--white);
}

.newsletter-input-wrapper {
    position: relative;
}

.newsletter-input-wrapper input#mce-EMAIL {
    padding-right: 60px;
}

.newsletter-submit-btn {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.newsletter-submit-btn:hover {
    background-color: var(--primary) !important;
}

.newsletter-submit-btn i {
    font-size: 16px;
    color: var(--white) !important;
}

#newsletter-email, #newsletter-fname{
    width: 100%;
    font-family: var(--mont);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 10px;
    border-color: var(--secondary);
}

.contentAccepted{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    margin-left: 5px;
}

.bgBeigeQuote{
    background-color: var(--beige);
    padding-top: 40px;
    padding-bottom: 40px;
}

.absoluteContainer{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Main Swiper - Slider principal */
.mainSwiper {
    width: 100%;
    height: 75vh;
    padding-bottom: 0 !important;
    position: relative;
}

.mainSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.mainSwiper .imgSlider {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mainSwiper .swiper-pagination {
    position: absolute !important;
    bottom: 10% !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    z-index: 10 !important;
}

.mainSwiper .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: var(--yellow) !important;
    border-radius: 4px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0.6 !important;
    cursor: pointer !important;
    transform: scale(1) !important;
}

.mainSwiper .swiper-pagination-bullet:hover {
    opacity: 0.8 !important;
    transform: scale(1.15) !important;
}

.mainSwiper .swiper-pagination-bullet-active {
    width: 32px !important;
    height: 10px !important;
    background: var(--yellow) !important;
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Progress Bar */
.swiper-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(244, 196, 48, 0.2);
    z-index: 10;
}

.swiper-progress-fill {
    height: 100%;
    width: 0;
    background: var(--yellow);
    transition: width 0.1s linear;
}

/* Dropdown Hero */
.dropdown-hero {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.btn-hero-dropdown {
    background: var(--white) !important;
    border: none !important;
    color: #535353 !important;
    padding: 21.5px 30px !important;
    border-radius: 52px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    transition: box-shadow 0.3s ease !important;
}

.btn-hero-dropdown:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15) !important;
}

.btn-hero-dropdown i:first-child {
    font-size: 18px;
}

.btn-hero-dropdown i:last-child {
    font-size: 12px;
    margin-left: 115px;
}

.btn-hero-dropdown::after {
    display: none !important;
}

.dropdown-hero .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 63px !important;
    border: 0;
}

.cover_slider-dropdown{
    border-radius: 20px;
    padding: 0;
}

.bgGreen{
    background-color: var(--primary);
}

.imgNewsletter{
    margin-bottom: 8%;
    max-height: 600px;
    object-fit: cover;
}

.imgWinter{
    max-height: 550px;
    object-fit: cover;
}

.imgCover{
    object-fit: cover;
    height: 30vh;
}

.ulCatégories{
    list-style: none;
    padding: 0;
}

.ulCatégories li{
    padding: 12px 0;
    border-bottom: 1px solid #F1F1F1;
}

.divProduitsGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
    align-items: start;
}

.divProduitsGrid > * {
    width: 100%;
    min-height: 0;
}

.divProduitsSolutions{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
}

.divProduitsSolutions > div {
    width: 100%;
}

.divTipsGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
}

.divTipsGrid > div {
    width: 100%;
}

.lienCategory{
    color: var(--greyHard);
    transition: all 0.3s ease-in-out;
}

.lienCategory:hover{
    color: var(--primary);
}

.lienCategory.active{
    color: var(--primary);
    font-weight: 600;
}

.divFilter{
    display: flex;
    justify-content: start;
    gap: 6px;
    align-items: start;
    flex-wrap: wrap;
}

.divFilter a{
    background-color: var(--greyClair);
    border-radius: 30px;
    padding: 4px 16px;
    font-family: var(--mont);
    font-weight: 500;
    font-size: 14px;
    color: var(--greyHard);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
}

.divFilter a i {
    font-size: 16px;
    display: none;
}

.divFilter a.active {
    background-color: var(--secondary);
    color: var(--white);
}

.divFilter a.active i {
    display: inline-block;
}

.divFilter a:hover{
    background-color: var(--secondary);
    color: var(--white);
}

.seeMore{
    font-family: var(--mont);
    font-weight: 700;
    font-size: 14px;
}

.imgContact{
    width: 50%;
}

.lienContact{
    font-family: var(--mont);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--black);
    display: block;
    max-width: max-content;
    transition: all 0.3s ease-in-out;
}

.lienContact:hover{
    color: var(--primary);
}

.imgInfos{
    object-fit: cover;
    aspect-ratio: 1;
}

/* FIN BUILDER */

/* ==========================================
   SWIPER CUSTOM STYLES
   ========================================== */

/* Positionner la pagination en dessous du contenu */
.swiperProducts {
    padding-bottom: 60px !important; /* Espace pour la pagination */
}

.swiper-pagination {
    bottom: 20px !important; /* Position en bas */
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
}

/* Style des bullets de pagination */
.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    background: var(--primary) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

/* Bullet actif - plus allongé */
.swiper-pagination-bullet-active {
    width: 32px !important; /* Plus long que les autres */
    background: var(--primary) !important;
}

/* Pagination spécifique pour logo gallery - juste en dessous du slide */
.swiper-pagination-logo {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px !important;
}

/* Boutons de navigation pour logo gallery - même style que les autres sliders */
.swiperLogoGallery .swiper-button-prev,
.swiperLogoGallery .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.swiperLogoGallery .swiper-button-prev:after,
.swiperLogoGallery .swiper-button-next:after {
    content: '' !important;
    display: none !important;
}

.swiperLogoGallery .swiper-button-prev svg,
.swiperLogoGallery .swiper-button-next svg {
    display: none !important;
}

.swiperLogoGallery .swiper-button-prev i,
.swiperLogoGallery .swiper-button-next i {
    font-size: 16px;
}

.swiperLogoGallery .swiper-button-prev:hover,
.swiperLogoGallery .swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.swiperLogoGallery .swiper-button-prev {
    left: 10px;
}

.swiperLogoGallery .swiper-button-next {
    right: 10px;
}

/* Boutons de navigation Swiper - même style que la galerie produits */
.swiperProducts .swiper-button-prev,
.swiperProducts .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

/* Supprimer complètement les SVG par défaut de Swiper */
.swiperProducts .swiper-button-prev:after,
.swiperProducts .swiper-button-next:after {
    content: '' !important;
    display: none !important;
}

.swiperProducts .swiper-button-prev svg,
.swiperProducts .swiper-button-next svg {
    display: none !important;
}

.swiperProducts .swiper-button-prev i,
.swiperProducts .swiper-button-next i {
    font-size: 16px;
}

.swiperProducts .swiper-button-prev:hover,
.swiperProducts .swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.swiperProducts .swiper-button-prev {
    left: 10px;
}

.swiperProducts .swiper-button-next {
    right: 10px;
}

.imgContentBox{
    object-fit: cover;
    height: 100%;
}

/* Product Repeater Swiper */
.swiperProductRepeater .swiper-button-prev,
.swiperProductRepeater .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.swiperProductRepeater .swiper-button-prev:after,
.swiperProductRepeater .swiper-button-next:after {
    content: '' !important;
    display: none !important;
}

.swiperProductRepeater .swiper-button-prev svg,
.swiperProductRepeater .swiper-button-next svg {
    display: none !important;
}

.swiperProductRepeater .swiper-button-prev i,
.swiperProductRepeater .swiper-button-next i {
    font-size: 16px;
}

.swiperProductRepeater .swiper-button-prev:hover,
.swiperProductRepeater .swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.swiperProductRepeater .swiper-button-prev {
    left: 10px;
}

.swiperProductRepeater .swiper-button-next {
    right: 10px;
}

/* Hide buttons on desktop for Product Repeater */
@media (min-width: 992px) {
    .swiperProductRepeater .swiper-button-prev,
    .swiperProductRepeater .swiper-button-next {
        display: none !important;
    }
}

/* Card Infos Swiper */
.swiperCardInfos .swiper-button-prev,
.swiperCardInfos .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.swiperCardInfos .swiper-button-prev:after,
.swiperCardInfos .swiper-button-next:after {
    content: '' !important;
    display: none !important;
}

.swiperCardInfos .swiper-button-prev svg,
.swiperCardInfos .swiper-button-next svg {
    display: none !important;
}

.swiperCardInfos .swiper-button-prev i,
.swiperCardInfos .swiper-button-next i {
    font-size: 16px;
}

.swiperCardInfos .swiper-button-prev:hover,
.swiperCardInfos .swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.swiperCardInfos .swiper-button-prev {
    left: 10px;
}

.swiperCardInfos .swiper-button-next {
    right: 10px;
}

/* Hide buttons on desktop for Card Infos */
@media (min-width: 992px) {
    .swiperCardInfos .swiper-button-prev,
    .swiperCardInfos .swiper-button-next {
        display: none !important;
    }
}

/* Related Products Swiper */
.swiperRelatedProducts .swiper-button-prev,
.swiperRelatedProducts .swiper-button-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.swiperRelatedProducts .swiper-button-prev:after,
.swiperRelatedProducts .swiper-button-next:after {
    content: '' !important;
    display: none !important;
}

.swiperRelatedProducts .swiper-button-prev svg,
.swiperRelatedProducts .swiper-button-next svg {
    display: none !important;
}

.swiperRelatedProducts .swiper-button-prev i,
.swiperRelatedProducts .swiper-button-next i {
    font-size: 16px;
}

.swiperRelatedProducts .swiper-button-prev:hover,
.swiperRelatedProducts .swiper-button-next:hover {
    background: var(--primary);
    color: white;
}

.swiperRelatedProducts .swiper-button-prev {
    left: 10px;
}

.swiperRelatedProducts .swiper-button-next {
    right: 10px;
}

/* FIN SWIPER CUSTOM STYLES */

/* LES ACCORDIONS */

/* accordion-style-one */
.accordion-style-one .accordion .card {
  border: 1px solid var(--gray-4) !important;
}
.accordion-style-one .accordion .card .card-header {
  padding: 0;
  background: none;
  border-bottom: 1px solid var(--greyClair);
}
.accordion-style-one .accordion .card .card-header a {
  display: block;
  position: relative;
  color: var(--primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: -1px;
  padding: 20px 30px 20px 0;
  z-index: 5;
}
.accordion-style-one .accordion .card .card-header a::before {
  position: absolute;
  content: "+";
  font-family: inherit;
  font-weight: 300;
  right: 16px;
  top: 50%;
  font-size: 24px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -moz-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  -o-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}
.accordion-style-one .accordion .card .card-header a.collapsed {
  color: var(--black);
}
.accordion-style-one .accordion .card .card-header a.collapsed::before {
  -webkit-transform: translate(0, -50%) rotate(0);
  -moz-transform: translate(0, -50%) rotate(0);
  -ms-transform: translate(0, -50%) rotate(0);
  -o-transform: translate(0, -50%) rotate(0);
  transform: translate(0, -50%) rotate(0);
}
.accordion-style-one .accordion .card .card-body {
  padding: 16px;
}
.accordion-style-one .accordion .card .card-body .text {
  color: var(--dark-3);
}

/* Accordion Images Container */
.accordion-images-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-images-container .accordion-image {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.accordion-images-container .accordion-image:first-child {
    position: relative;
    opacity: 0;
    visibility: hidden;
    top: auto;
    left: auto;
    transform: none;
}

.accordion-images-container .accordion-image.active {
  opacity: 1;
    visibility: visible;
    z-index: 1;
}

.border45{
    border-radius: 45px;
    aspect-ratio: 1;
}

/* FIN LES ACCORDIONS */

.marginCover{
    margin-top: 40px;
}

.flexBtnRetailers{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.flexFormats{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.flexFormats div{
    background-color: var(--greyClair);
    border-radius: 30px;
    padding: 4px 16px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.flexFormats div:hover{
    background-color: var(--black);
    color: white;
    transform: translateY(-2px);
}

.flexFormats div:active{
    transform: translateY(0);
}

.flexFormats div.active{
    background-color: var(--black);
    color: white;
}

/* GALERIE PRODUITS */
.product-gallery {
    width: 100%;
}

.gallery-main {
    width: 100%;
    /* overflow: hidden; */
    border-radius: 8px;
    aspect-ratio: 1;
    /* height: 500px; */
}

.gallery-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.gallery-thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 5px 0;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-thumbnail {
    flex: 0 0 auto;
    width: calc(33.333% - 7px);
    height: auto;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    object-fit: contain;
    aspect-ratio: 1;
}

.gallery-thumbnail:hover {
    border-color: var(--primary);
    opacity: 0.8;
}

.gallery-thumbnail.active {
    border-color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0, 52, 121, 0.3);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 35px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.gallery-nav:hover {
    background: var(--primary);
    color: white;
}

.gallery-nav-prev {
    left: -15px;
}

.gallery-nav-next {
    right: -15px;
}

.gallery-nav i {
    font-size: 14px;
}

/* Flèches de navigation sur l'image principale */
.gallery-main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.gallery-main-nav:hover {
    background: var(--primary);
    color: white;
}

.gallery-main-nav-prev {
    left: 15px;
}

.gallery-main-nav-next {
    right: 15px;
}

.gallery-main-nav i {
    font-size: 16px;
}

/* Zoom au survol de l'image principale */
.image-zoom-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 8px;
}

.image-zoom-wrapper img {
    display: block;
    width: 100%;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

/* Bouton pour ouvrir la lightbox */
.lightbox-trigger {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary);
}

.lightbox-trigger:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.lightbox-trigger i {
    font-size: 18px;
}

/* LIGHTBOX */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    color: white;
    font-size: 24px;
}

.lightbox-close:hover {
    background: white;
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    color: white;
}

.lightbox-nav:hover {
    background: white;
    color: var(--primary);
}

.lightbox-nav-prev {
    left: 30px;
}

.lightbox-nav-next {
    right: 30px;
}

.lightbox-nav i {
    font-size: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-nav-prev {
        left: 15px;
    }

    .lightbox-nav-next {
        right: 15px;
    }

    .lightbox-nav i {
        font-size: 18px;
    }

    .lightbox-trigger {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }

    .lightbox-trigger i {
        font-size: 16px;
    }
}

/* FIN LIGHTBOX */

/* FIN GALERIE PRODUITS */

/* MARQUEE */

.wrapper-marquee, .wrapper-marquee2 {
    max-width: 100%;
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 45s linear infinite;
    background-color: var(--green);
    padding: 5px 0;
}

.marquee div {
    display: inline-block;
    text-transform: uppercase;
    color: var(--bleu);
    margin: 0;
}

@keyframes marquee {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(-50%, 0, 0);
    }
}

.imgMarquee{
    height: 80px;
    width: 250px;
    object-fit: contain;
    margin-left: 30px;
    margin-right: 30px;
}

/* FIN MARQUEE */

/* SEARCH SUGGESTIONS */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--greyClair);
    border-radius: 8px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.search-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-suggestions-list li {
    border-bottom: 1px solid var(--greyClair);
}

.search-suggestions-list li:last-child {
    border-bottom: none;
}

.search-suggestions-list a {
    display: block;
    padding: 12px 20px;
    color: var(--primary);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.search-suggestions-list a:hover {
    background-color: var(--greyClair);
    color: var(--secondary);
}

.search-suggestions .no-results {
    padding: 20px;
    text-align: center;
    color: var(--greyHard);
    margin: 0;
}
/* FIN SEARCH RESULTS */

/* SEARCH RESULT TYPE */
.result-type {
    font-size: 0.8em;
    color: var(--secondary);
    font-weight: 600;
    margin-right: 5px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.badge.bg-primary {
    background-color: var(--primary);
    color: white;
}

.mb-10 {
    margin-bottom: 10px;
}

/* OFFCANVAS FILTERS */
.offcanvas-filters {
    z-index: 9999 !important;
}

.offcanvas-filters .offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.offcanvas-filters .offcanvas-body {
    padding: 20px;
}

/* RETAILERS PRODUCTS LIST */
.retailers-products-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-retailers-item {
    display: flex;
    gap: 30px;
    padding: 20px;
    border-radius: 8px;
    align-items: center;
}

.product-retailers-image {
    flex-shrink: 0;
    width: 25%;
    aspect-ratio: 1;
    object-fit: contain;
    overflow: hidden;
    border-radius: 8px;
}

.product-retailers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-retailers-content {
    flex: 1;
}

.product-retailers-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.product-retailers-download-all {
    margin-top: 20px;
}
/* SEARCH RESULTS TOGGLE */
.search-item-hidden {
    display: none;
}

/* .show-all-results {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} */

.show-all-results:hover {
    background-color: var(--secondary);
}

.show-all-results.hidden {
    display: none;
}

.imgContent{
    object-fit: cover;
}

.inputNewsletter{
    border-radius: 100px !important;
}

/* ==========================================
   PAGINATION STYLES
   ========================================== */

.pagination-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.pagination{
    margin-top: 20px;
}

.pagination,
.pagination-wrapper nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style pour les listes de pagination */
.pagination ul,
.page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* Style pour tous les liens et spans de pagination */
.pagination a,
.pagination span,
.page-numbers a,
.page-numbers span,
.page-numbers li a,
.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 12px;
    font-family: var(--mont);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    background-color: var(--white);
    border: 2px solid var(--greyClair);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

/* Effet hover */
.pagination a:hover,
.page-numbers a:hover,
.page-numbers li a:hover {
    background-color: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 52, 121, 0.2);
}

/* Page actuelle */
.pagination .current,
.page-numbers .current,
.page-numbers li .current,
span.current {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    border-color: var(--secondary) !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 52, 121, 0.3);
    cursor: default;
}

/* Boutons précédent et suivant */
.pagination .prev,
.pagination .next,
.page-numbers .prev,
.page-numbers .next,
.page-numbers li a.prev,
.page-numbers li a.next {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    font-weight: 700;
    min-width: 45px;
}

.pagination .prev:hover,
.pagination .next:hover,
.page-numbers .prev:hover,
.page-numbers .next:hover,
.page-numbers li a.prev:hover,
.page-numbers li a.next:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* Icônes dans les boutons prev/next */
.pagination a i,
.page-numbers a i {
    font-size: 14px;
}

/* Points de suspension */
.pagination .dots,
.page-numbers .dots,
.page-numbers li .dots,
span.dots {
    background-color: transparent !important;
    border: none !important;
    color: var(--greyHard);
    cursor: default;
    box-shadow: none !important;
}

.pagination .dots:hover,
.page-numbers .dots:hover {
    transform: none;
    background-color: transparent;
}

/* Style spécifique pour les éléments de liste */
.page-numbers li {
    list-style: none;
    margin: 0;
}

/* Version compacte pour mobile */
@media only screen and (max-width: 768px) {
    .pagination a,
    .pagination span,
    .page-numbers a,
    .page-numbers span,
    .page-numbers li a,
    .page-numbers li span {
        min-width: 40px;
        height: 40px;
        padding: 0 8px;
        font-size: 14px;
    }
    
    .pagination ul,
    .page-numbers {
        gap: 6px;
    }
    
    .pagination-wrapper {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

/* FIN PAGINATION STYLES */

/*Single products*/
.bullets{
    width: 15px;
    height: 15px;
    margin-right: 15px;
}
.usage-icons{
    width: 30px;
    height: 30px;
}
.download-icon{
    width: 20px;
    height: 20px;
    margin-right: 15px;
}
.month-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    background-color: var(--greyClair);
    color: var(--greyHard);
    transition: all 0.3s ease;
}

.month-circle.active {
    background-color: var(--primary);
    color: var(--yellow);
}
/*Fin Single products*/

@media only screen and (max-width: 1400px){ 

}
@media only screen and (max-width: 1200px){ 

}
@media only screen and (max-width: 992px){ 
    .btn-hero-dropdown{
        gap: unset !important;
    }
    header .navbar{
        width: 100%;
        border-radius: 0;
    }
    header{
        top: 0;
    }
    .offcanvas-body{
        margin-top: 80px;
    }
    .absoluteBlocHero{
        left: 0;
        padding: 5%;
    }
    .title1{
        font-size: 30px;
    }
    .title2{
        font-size: 30px;
    }
    .dropdown-hero .dropdown-menu, .dropdown-hero{
        width: 90%;
    }
    .dropdown-item{
        white-space: unset;
    }
    .spaceTopBottom60{
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .spaceBottom100{
        margin-bottom: 60px;
    }
    .mb-50{
        margin-bottom: 30px;
    }
    .mt-68{
        margin-top: 30px;
    }
    .rowMobile{
        gap: 20px;
    }
    .mb-20-mobile{
        margin-bottom: 20px;
    }
    .absoluteContainer{
        position: unset;
        transform: unset;
        margin-bottom: 30px;
        margin-top: 30px;
    }
    #mc_embed_signup .mc-field-group{
        margin-bottom: 30px;
        width: 100% !important;
    }
    .rowReverseMobile{
        flex-direction: column-reverse;
    }
    .absoluteContainer h2, .absoluteContainer p{
        color: var(--primary);
    }
    #mc_embed_signup div#mce-responses{
        width: 100%;
        padding: 0 !important;
    }
    #mc_embed_signup #mce-success-response{
        width: 100% !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }
    .bgBeige{
        padding: 10%;
    }
    footer{
        margin-top: 40px;
    }
    .divProduitsGrid, .divProduitsSolutions, .divTipsGrid{
        grid-template-columns: repeat(1, 1fr);
    }
    .search-container{
        margin-left: 0;
    }
    .mt-44{
        margin-top: 0;
    }
    .product-retailers-item{
        display: block;
        padding: 0;
    }
    .product-retailers-image{
        width: 100%;
        margin-bottom: 25px;
    }
    .lienReseaux{
        margin-bottom: 20px;
    }
    .firstSection{
        margin-top: 100px;
    }
    .breadcrumb{
        margin-bottom: 0;
    }
    .paddingMobile0{
        padding: 0;
    }
    .absoluteDivNewsletter{
        bottom: 0%;
    }
    .newsletter.container-fluid.position-relative,
    .container-fluid.position-relative:has(.absoluteDivNewsletter) {
        padding-bottom: 250px;
        min-height: 500px;
    }
    .imgContent{
        margin-bottom: 30px;
    }
    .flexBtnRetailers{
        justify-content: start;
    }
    /* Alignement des titres à gauche sur mobile */
    .text-center .title2,
    .text-center .title3,
    .text-center h1,
    .text-center h2,
    .text-center h3,
    h1.text-center,
    h2.text-center,
    h3.text-center,
    .title2.text-center,
    .title3.text-center,
    .h1Retailers,
    .quote,
    .texte2,
    .texte1 {
        text-align: start !important;
    }
    /* Boutons filtres mobile pleine largeur */
    .d-lg-none.d-flex.justify-content-center .btnSite,
    .d-lg-none .btnSite {
        width: 100%;
        max-width: unset;
    }
    .nav-link{
        font-family: var(--mont);
        font-size: 20px !important;
        font-weight: 500 !important;
    }
    .offcanvas-body{
        padding: 12px 24px;
    }
    .imgContact{
        display: none;
    }
    .bgBlueNewsletter{
        padding: 30px;
    }
}

/* WPML Language Switcher */
.wpml-ls-statics-shortcode_actions {
    position: relative;
    display: inline-block;
}

.wpml-ls-statics-shortcode_actions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-current-language {
    position: relative;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--mont);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a:hover {
    color: var(--yellow);
    background-color: var(--transparent);
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    min-width: max-content;
    background: transparent;
    border: none;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

/* Afficher le sous-menu quand aria-expanded est true OU au hover */
.wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a[aria-expanded="true"] + .wpml-ls-sub-menu,
.wpml-ls-statics-shortcode_actions .wpml-ls-current-language:hover .wpml-ls-sub-menu {
    display: block;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu li {
    margin: 0;
}

.dropdown-toggle::after{
    width: 9px;
    height: auto;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after{
    display: inline-block !important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    right: 0;
    width: 9px;
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: var(--white);
    font-family: var(--mont);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    background-color: var(--primary) !important;
}

#wpml-ls-submenu-click-default{
    background-color: var(--transparent);
}

.wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a:hover {
    color: var(--yellow);
}

/* Dans le nav extra-menu-container */
.extra-menu-container .wpml-ls-statics-shortcode_actions {
    margin-left: 20px;
    margin-right: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dans l'offcanvas mobile - texte en vert */
.offcanvas-body .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a {
    color: var(--primary);
}

.offcanvas-body .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a:hover {
    color: var(--yellow);
}

.offcanvas-body .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a {
    color: var(--primary);
}

.offcanvas-body .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a:hover {
    color: var(--yellow);
}

/* Mobile - dans le header mobile */
.d-lg-none .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a {
    padding: 8px 14px;
    font-size: 12px;
}

.d-lg-none .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a {
    padding: 8px 14px;
    font-size: 12px;
}

.wpml-ls-legacy-dropdown-click{
    width: auto;
}

@media only screen and (max-width: 991px) {
    .wpml-ls-legacy-dropdown-click{
        width: auto !important;
    }
    .wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a{
        padding: 10px 0px !important;
    }
    .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a{
        background-color: var(--transparent) !important;
    }
    .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a{
        padding: 0 !important;
    }
    .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu li{
        padding: 6px;
        background-color: var(--white);
    }
    .d-lg-none .wpml-ls-statics-shortcode_actions .wpml-ls-sub-menu a, .wpml-ls-legacy-dropdown-click .wpml-ls-flag+span{
        color: var(--black);
    }
    .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after{
        display: none !important;
    }
}

@media only screen and (max-width: 576px) { 

}

/* ========================================
   Language Popup
   ======================================== */

.language-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.language-popup.active {
    display: block;
}

.language-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 52, 121, 0.95); /* Bleu avec transparence */
    backdrop-filter: blur(5px);
}

.language-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary);
    padding: 50px 40px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 100000;
}

.language-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--greyHard);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.language-popup-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.language-popup-welcome {
    color: var(--white);
    font-family: var(--mont);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.language-popup-title {
    margin-bottom: 40px;
    color: var(--white);
    font-family: var(--mont);
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.language-popup-flags {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.language-popup-row {
    display: flex;
    gap: 20px;
    justify-content: start;
    width: 100%;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    width: 250px;
    background-color: var(--white);
    border-radius: 100px;
    padding: 5px;
}

.language-option:hover {
    background-color: var(--yellow);
}

.language-option.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.language-option.active .language-name {
    color: var(--white);
    font-weight: 700;
}

.language-flag {
    width: 45px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.language-name {
    font-family: var(--mont);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    transition: all 0.3s ease;
}

@media only screen and (max-width: 768px) {

    .language-popup-row {
        gap: 15px;
    }

    .language-option {
        padding: 15px;
        max-width: 140px;
    }
    .language-popup-title{
        font-size: 25px;
    }


    .language-name {
        font-size: 14px;
    }
}

@media only screen and (max-width: 576px) {

    .language-popup-row {
        flex-direction: column;
        gap: 12px;
    }

    .language-option {
        padding: 12px;
        gap: 8px;
    }

    .language-flag {
        width: 40px;
    }

    .language-name {
        font-size: 13px;
    }

    .language-popup-close {
        top: 15px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}