body {
    background-color: #FEF7F0;
    font-family: "Atkinson Hyperlegible Mono", sans-serif;
    color: #4B2307;
}

header {
    height: 85px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed; /* Pour que le header soit toujours en haut visible */
    z-index: 10; /* Garder le header au dessus des autres éléments */
    width: 100%;
    border-bottom: 1px solid #C9AF9E;
}

.container_image_sp {
    margin-left: 20px;
    margin-right: 20px;
    height: 100%;
}

.container_menu {
font-weight: bold;
}

.container_image_sp a {
    height: 100%;
}

.container_image_sp a img {
    height: 100%;
}

.ul_container_menu{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    display: flex;
    align-items: center;
}

.li_container_menu {
    text-align: center;
    max-width: 180px;
}

.effect_hover {
    color: currentColor;
    position: relative;
    display: inline-block; /* Pour empecher sur FireFox de mettre la ligne du hover a travers le texte "Conditions générales de ventes" */
}

.effect_hover:hover:after {
    transform: scaleX(1);
}

.effect_hover:after {
    background: currentColor;
    bottom: -6px;
    content: " ";
    height: 2px;
    left: 0;
    margin-bottom: -1px;
    position: absolute;
    transform: scaleX(0);
    transition: transform .3s;
    width: 100%;
}

.first_li_menu {
    margin-left: 20px;
}

.last_li_menu {
    margin-right: 20px;
}

#sidebarMenu {
    height: auto;
    position: fixed;
    right: 0;
    width: 250px;
    top: 85px;
    transform: translateX(250px);
    transition: transform 250ms ease-in-out;
    background: #FFFFFF;
}
.sidebarMenuInner{
    margin:0;
    padding:0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sidebarMenuInner li{
    list-style: none;
    color: #7E4B30;
    text-transform: uppercase;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    border-bottom: 1px solid #C9AF9E ;
}
.sidebarMenuInner li span{
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.50);
}
.sidebarMenuInner li a{
    color: #7E4B30;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(0);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    display: none;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 35px;
    right: 42.5px;
    height: 22px;
    width: 22px;
}
.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000000;
}
.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: left;
}
.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    margin-top: 3px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 8px;
}
input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}




main {
    position: relative;
    top: 100px;
}

h1 {
    font-size: 20px;
    font-weight: bolder;
}

p {
    font-size: 14px;
}



footer {
    background-color: #FFFFFF;
    border-top: 1px solid #C9AF9E;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    z-index: 10; /* Garder le header au dessus des autres éléments */
    position: relative;
    top: 150px;
}

.footer_svg_icon {
    width: 20px;
    height: 20px;
}

.footer_left, .footer_center, .footer_right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 130px;
}

.footer_left {
    margin-left: 20px;
}

.footer_center {
    text-align: center;
}

.footer_right {
    margin-right: 20px;
    align-items: end;
}

.footer_right a {
    align-items: center;
    display: flex;
    gap: 5px;
}

@media screen and (max-width: 1250px) {
    .li_container_menu {
        max-width: 100px;
    }
}

@media screen and (max-width: 983px) {
    .sidebarIconToggle {
        display: block;
    }
        .container_menu {
        display: none;
    }
}

@media screen and (max-width: 560px) {
    .footer_left {
        width: min-content;
    }
}
