#site_header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #FFFFFF33;
    position: absolute;
    top: 0;
    left: 0;
}

#site_header.internal {
    border-bottom: 1px solid #FFFFFF33;
    position: unset;
    top: unset;
    left: unset;
    /*
    background-image: url('https://ips-supply.dev-studios.fr/wp-content/uploads/2025/12/banner_home.webp');
    background-size: cover;
    background-position: center top;
    */
    background: #004D33
}

.site_header_sz {
    display: flex;
    width: calc(100% - 20px);
    max-width: 1540px;
    justify-content: space-between;
}

.header_desktop {
    display: none;
    width: 100%;
    justify-content: space-between;
    height: 100px;
}

.header_desktop_logo_c {
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
}

.header_desktop_logo_c img {
    display: block;
    width: auto;
    height: 64px;
}

#menu-menu-principal-header {
    display: flex;
    height: 100%;
    align-items: center;
}

#menu-menu-principal-header ul {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}

#menu-menu-principal-header ul > li {
    list-style: none;
    padding: 10px 0;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    margin: 0 10px;
}

#menu-menu-principal-header ul > li:hover,
#menu-menu-principal-header ul > li.current_page_item {
    border-bottom-color: #FFFFFF;
}

#menu-menu-principal-header ul > li:hover a,
#menu-menu-principal-header ul > li.current_page_item a {
    color: #FFFFFF !important;
}

#menu-menu-principal-header ul > li > a {
    color: #A1C854;
    text-decoration: none;
    font-family: 'Industry_Regular', sans-serif;
    font-size: 20px;
}

.header_mobile {
    display: none;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header_mobile_top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    height: 80px;
}

.header_mobile_logo_c {
    display: flex;
    width: calc(100% - 100px);
    height: 100%;
    align-items: center;
}

.header_mobile_logo_c img {
    height: 100%;
    max-width: 100%;
    margin-left: -10px;
    margin-right: 10px;
    object-fit: contain;
    max-height: 50px;
}

.header_mobile_top button {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: unset;
    margin: unset;
    padding: unset;
    border: unset;
    cursor: pointer;
}

.header_mobile_top button svg {
    height: 26px;
}

.header_mobile_menu_c {
    display: none;
    width: 100%;
}

#menu-mobile ul {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
}

#menu-mobile ul > li {
    list-style: none;
    padding: 10px 0;
    margin: 0 20px;
    border-bottom: 2px solid transparent;
}

#menu-mobile ul > li:hover,
#menu-mobile ul > li.current_page_item {
    border-bottom-color: #23A3DD;
}

#menu-mobile ul > li > a {
    color: #A1C854;
    text-decoration: none;
    font-family: 'Industry_Regular', sans-serif;
    font-size: 16px;
}

/* États interactifs */
body.with_menu_open .header_mobile_top button:nth-child(3) {
    display: flex;
}

body:not(.with_menu_open) .header_mobile_top button:nth-child(2) {
    display: flex;
}

body.with_menu_open .header_mobile_menu_c {
    display: block;
}

body.with_menu_open .header_desktop_btn.mobile {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 20px;
}

.header_mobile_top svg path {
    fill: #A1C854;
}

/* Responsive */
@media (min-width: 1025px) {
    .header_desktop {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .header_mobile {
        display: flex;
    }
}
