.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for menu_custom_agence, class: .elementor-element-38e1a4c *//* --- 1. POSITION STICKY (FIXÉ EN HAUT) --- */
.lapoke-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 100px 20px 100px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    z-index: 9999;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* --- 2. PREMIÈRE CELLULE (MENU + LOGO) --- */
.lapoke-header-pill {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: #2081BE;
    border-radius: 60px;
    padding: 10px 40px 10px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.lapoke-header-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.lapoke.fr/wp-content/uploads/2026/07/Fond_Piscinet-scaled.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 1;
    border-radius: 60px;
}

.lapoke-header-pill > * {
    position: relative;
    z-index: 2;
}

/* --- 3. LE LOGO --- */
.lapoke-logo img {
    max-height: 55px; 
    width: auto;
    display: block;
    margin: 0;
}

/* --- 4. LE MENU PRINCIPAL --- */
.lapoke-menu {
    display: flex;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 30px;
    align-items: center;
}

.lapoke-menu > li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.lapoke-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.lapoke-menu li a:hover {
    opacity: 0.8;
}

.lapoke-menu li a .arrow {
    display: flex;
    align-items: center;
}

.lapoke-menu li a .arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lapoke-menu li.has-dropdown:hover > a .arrow svg {
    transform: rotate(180deg);
}

/* MASQUER LE LIEN COMMANDER DU MENU SUR PC */
.lapoke-mobile-commander-item {
    display: none !important;
}

/* --- 5. DEUXIÈME CELLULE (BOUTON COMMANDER) --- */
.lapoke-btn-commander {
    background-color: #e23b89;
    color: #ffffff;
    padding: 0 40px;
    border-radius: 60px;
    border: 2px solid #ffffff; 
    box-sizing: border-box; 
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 10px; /* <-- AJOUT : Espace entre l'icône et le texte */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    white-space: nowrap;
    position: relative; 
    overflow: hidden; 
    z-index: 1; 
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lapoke-btn-commander::before {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #FFB366;
    z-index: -1; 
    border-radius: 50% 50% 0 0; 
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.lapoke-btn-commander:hover::before {
    height: 150%; 
    border-radius: 0; 
}

.lapoke-btn-commander:hover {
    color: #000000; 
}

/* Gestion du texte et de l'icône sur PC */
.lapoke-btn-text {
    display: block;
    order: 2; /* <-- AJOUT : Positionne le texte à droite de l'icône */
}

.lapoke-btn-icon {
    display: flex; /* <-- MODIFIÉ : On affiche l'icône sur PC */
    align-items: center;
    justify-content: center;
    order: 1; /* <-- AJOUT : Positionne l'icône à gauche du texte */
}

.lapoke-btn-icon svg {
    width: 20px; /* <-- AJOUT : Taille de l'icône sur PC */
    height: 20px;
}

/* --- 6. LE SOUS-MENU DÉROULANT (MEGA MENU CARDS) --- */
.lapoke-menu li.has-dropdown {
    position: relative;
}

.lapoke-sous-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    margin-top: 40px; 
    transition: all 0.3s ease;
    list-style-type: none !important;
    z-index: 9999;
}

.lapoke-menu li.has-dropdown:hover .lapoke-sous-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 30px; 
}

.lapoke-sous-menu::before {
    content: '';
    position: absolute;
    top: -40px; 
    left: 0;
    width: 100%;
    height: 40px;
    background-color: transparent; 
}

.lapoke-sous-menu li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.lapoke-sous-menu li a.mega-menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    width: 180px;
}

.mega-menu-img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    border-radius: 15px;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.mega-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.lapoke-sous-menu li a.mega-menu-card:hover .mega-menu-img img {
    transform: scale(1.1); 
}

.mega-menu-title {
    color: #2081BE;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.lapoke-sous-menu li a.mega-menu-card:hover .mega-menu-title {
    color: #e23b89; 
}

/* --- 7. RESPONSIVE MOBILE & TABLETTE --- */
.lapoke-mobile-toggle {
    display: none;
    background: transparent !important; 
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 99;
    outline: none !important;
}

.lapoke-mobile-toggle:hover,
.lapoke-mobile-toggle:focus,
.lapoke-mobile-toggle:active,
.lapoke-mobile-toggle.is-active {
    background: transparent !important;
    box-shadow: none !important;
}

.lapoke-mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* === DÉBUT ZONE STRICTEMENT MOBILE === */
@media (max-width: 992px) {
    .lapoke-header-wrapper {
        padding: 20px 15px 15px 15px;
        flex-wrap: nowrap; 
        align-items: center; 
        gap: 10px; 
    }

    .lapoke-header-pill {
        width: auto;
        flex-grow: 1; 
        padding: 0 20px;
        height: 50px;    
    }

    .lapoke-logo img {
        max-height: 38px; 
    }

    .lapoke-mobile-toggle {
        display: block;
        padding: 5px 10px; 
    }

    .lapoke-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #DE5995; 
        border-radius: 20px;
        padding: 20px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
    }

    .lapoke-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lapoke-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    /* --- MISE EN AVANT "COMMANDER" DANS LE MENU MOBILE --- */
    .lapoke-mobile-commander-item {
        display: block !important;
        width: 100%;
        margin-bottom: 15px !important;
        padding-bottom: 15px !important;
        border-bottom: 2px dashed rgba(255, 255, 255, 0.5); 
    }

    .lapoke-mobile-commander-item a {
        color: #ffffff !important; 
        font-size: 18px !important;
        font-weight: bold !important; 
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-commander-arrow {
        width: 22px;
        height: 22px;
        transition: transform 0.3s ease;
        stroke: #ffffff; 
    }

    .lapoke-mobile-commander-item a:active .mobile-commander-arrow,
    .lapoke-mobile-commander-item a:hover .mobile-commander-arrow {
        transform: translateX(5px);
    }
    /* --- FIN DE LA MISE EN AVANT --- */

    .lapoke-sous-menu {
        display: none !important; 
    }

    .lapoke-menu li.has-dropdown > a .arrow {
        display: none !important;
    }

    .lapoke-btn-commander {
        width: 50px; 
        height: 50px; 
        min-width: 50px; 
        padding: 0; 
        border-radius: 50%; 
        flex-shrink: 0; 
    }

    .lapoke-btn-text {
        display: none;
    }

    /* Redimensionnement de l'icône pour le bouton rond mobile */
    .lapoke-btn-icon svg {
        width: 22px; 
        height: 22px;
    }
    
    .lapoke-btn-commander::before {
        border-radius: 50%;
    }

    .lapoke-mobile-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .lapoke-mobile-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .lapoke-mobile-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* === FIN ZONE STRICTEMENT MOBILE === *//* End custom CSS */