body{
    background-color: white;
    font-family: 'Poppins';
    margin: 0;
    }
    

    header {
        background: linear-gradient(90deg, #CCCCCC, #ffffff 80%);
        color: white;
        padding: 1rem 0;
        padding: 1.2em;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .header-logo{
            margin-left: 1rem;
        }

    }
    
    .language-selector {
        display: flex;
        gap: 7px; 
        align-items: center;
        justify-content: right;
        
    }
    
    .language-icon {
        background: none;
        border: none;
        cursor: pointer;
        
    }
    
    .language-icon img {
        width: 30px; 
        height: 30px;
    }
    
    .language-icon {
        width: 30px; 
        height: 30px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        
    }
    
    .language-icon:hover {
        transform: scale(1.1); 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    }
    

    .header-nav ul{
        background-color: white;
        position: fixed;
        z-index: 999;
        right: 0;
        top: 0;
        height: 100vh;
        margin: 0;
        list-style: none;
        width: 40%;
        text-align: right;
        padding: 2em;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
    
        li{
            margin: 1em 0;
            
            &:nth-of-type(1){
                margin-bottom: 2em;
                margin-top: 0em;
            }
    
            a{
                color: #737373;
                text-decoration: none;
                font-weight: 600;
                font-size: 1.1rem;
    
                &:hover{
                    text-decoration: underline;
                }
                
            }
    
        }
    }
    
    .header-nav ul.open {
        transform: translateX(0%);
    }
    
    
    
    .dropdown-header {
        position: relative;
    }
    
    .dropdown-toggle-header::after {
        content: ' ▼';
    }

    /* .header-nav ul li a:visited {
        color: #0DA770; 
    } */

    .dropdown-menu-header {
        display: none;
        position: fixed;
        background-color: #ffffff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        z-index: 1;
        flex-direction: column;
        right: 2em;
        font-weight: 400;
        text-align: right;
        margin-top: 5px;
        
    }
    
    .dropdown-menu-header a {
        color: white;
        padding: 10px;
        padding-left: 40px;
        padding-right: 20px;
        text-decoration: none;
        display: block;
    }
    
    .dropdown-menu-header a:hover {
        color: white;
        background-color: #CCCCCC;
        
           
    }
    
    .show {
        display: block;
    }


    .home-intro{
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: center;
        background: linear-gradient(90deg, #CCCCCC, #ffffff 80%);
                
        .home-intro-left{
            order: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            
            img{
                width: 400px;
                height: 400px;
            }

        }

        .home-intro-right{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            order: 1;

            p{
                color: #737373;
                font-weight: 300;
                max-width: 400px;
                text-align: justify;
                text-align-last: center;
                text-justify: inter-word;
                font-size: 1rem;                
                line-height: 1.2;                
                padding-bottom: 2rem;
            }

            .home-intro-logo{
                margin-top: 2rem;
                margin-bottom: 1rem;
                width: 200px;
            }
        }
    }

    .quality{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        background: linear-gradient(00deg, #CCCCCC, #ffffff 45%);
        padding-left: 2rem;
        padding-right: 2rem;        

        h2{
            font-size: 1.5rem;
            line-height: 1.2;                
            margin-top: 0em;
            padding-top: 5rem; 
            color: #737373; 
            text-align: center;
                   
        }

        
        p{
            color: #737373;
            font-weight: 300;
            max-width: 400px;
            text-align: justify;
            text-align-last: center;
            text-justify: inter-word;
            font-size: 1rem;                
            line-height: 1.2;
            padding-bottom: 4rem;
            
        }

    }

    .nos-boissons{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: linear-gradient(90deg, #CCCCCC, #ffffff 80%);
        gap: 40px;
        padding-bottom: 4rem;
        h2{
            font-size: 1.5rem;
            line-height: 1.2;                
            padding-top: 20px;
            margin-bottom: 0px;
            text-align: center;
            color: #737373;  
                   
        }

        .konjac-box{
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 400px;
            flex-direction: column;
            background-color: #ffffff;
            padding-left: 2rem;
            padding-right: 2rem;
            border-radius: 20px;
            margin-left: 2rem;
            margin-right: 2rem;
            box-shadow: 0 4px 80px rgba(0, 0, 0, 0.2); 

            .konjac-box-left{
                display: flex;
                flex-direction: column;
                justify-content: left;
                align-items: left;
                order: 2;
                
                h3{
                    font-size: 1.2rem;
                    line-height: 1.2;                  
                    padding-top: 1rem; 
                    padding-bottom: 0rem; 
                    color: #000000; 
                    text-align: left; 
                            
                }
        
                p{
                    color: #737373;
                    font-weight: 300;
                    max-width: 400px;
                    margin-top: 0rem;
                    text-align:justify;
                    text-align-last: left;
                    text-justify: inter-word;
                    font-size: 1rem;                
                    line-height: 1.2;
                    margin-bottom: 2rem;
                    
                }

                .konjac-cta a{
                    display: flex;
                    justify-content: center;
                    align-items: center;                    
                    border-radius: 10px;
                    width: 280px;
                    height: 50px;
                    background-color: #ff4a7a;
                    margin-bottom: 2rem;                    
                    text-decoration: none;
                    font-weight: 700;
                    font-size: 1rem;
                    color: #ffffff;
                    
                }

                .konjac-cta a:hover{
                    background-color: #ff7d9f;
                }
            }

            .konjac-box-right{
                display: flex;
                order: 1;
                img{
                    max-width: 300px;
                    margin-bottom: -2rem;
                }
            }  
        }

        .fat-burner-box{
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 400px;
            flex-direction: column;
            background-color: #ffffff;
            padding-left: 2rem;
            padding-right: 2rem;
            border-radius: 20px;
            margin-left: 2rem;
            margin-right: 2rem;
            box-shadow: 0 4px 80px rgba(0, 0, 0, 0.2); 

            .fat-burner-box-left{
                display: flex;
                flex-direction: column;
                justify-content: left;
                align-items: left;
                order: 2;
                
                h3{
                    font-size: 1.2rem;
                    line-height: 1.2;                  
                    padding-top: 1rem; 
                    padding-bottom: 0rem; 
                    color: #000000; 
                    text-align: left; 
                            
                }
        
                p{
                    color: #737373;
                    font-weight: 300;
                    max-width: 400px;
                    margin-top: 0rem;
                    text-align:justify;
                    text-align-last: left;
                    text-justify: inter-word;
                    font-size: 1rem;                
                    line-height: 1.2;
                    margin-bottom: 2rem;
                    
                }

                .fat-burner-cta a{
                    display: flex;
                    justify-content: center;
                    align-items: center;                    
                    border-radius: 10px;
                    width: 280px;
                    height: 50px;
                    background-color: #4ad5ff;
                    margin-bottom: 2rem;                    
                    text-decoration: none;
                    font-weight: 700;
                    font-size: 1rem;
                    color: #ffffff;
                    
                }

                .fat-burner-cta a:hover{
                    background-color: #7de1ff;
                }
            }

            .fat-burner-box-right{
                display: flex;
                order: 1;
                img{
                    max-width: 300px;
                    margin-bottom: -2rem;
                }
            }  
        }
    }

    .final-message{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: linear-gradient(45deg, #CCCCCC, #ffffff 80%);
        

        h2{
            font-size: 1.5rem;
            line-height: 1.2;                
            padding-top: 40px;
            color: #737373;  
            max-width: 400px;
            text-align: center;
                   
        }

        p{
            color: #737373;
            font-weight: 300;
            max-width: 400px;
            margin-top: 0rem;
            text-align:justify;
            text-align-last: center;
            text-justify: inter-word;
            font-size: 1rem;                
            line-height: 1.2;
            margin-bottom: 2rem;
            
        }

        img{
            width: 600px;
        }
    }

    footer {
        background: linear-gradient(90deg, #CCCCCC, #ffffff 80%);
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 1rem;
        

        .container {
            display: flex;
            flex-direction: column;
            height: 200px;
            justify-content: center;
            align-items: center;
        }
        
        .footer-links {
            margin-top: 2rem;
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        a {
            color: #737373;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.1rem;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        
        .footer-logo {
            width: 100%;
            height: 100%;
            
        }
        
        .links-container{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;            
        }
        
           
        .copyright-text {
            color: #737373;
            font-weight: 300;
            font-size: 0.8rem;
        }
        
    }
    
    .contact-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        gap: 2rem;
        margin-top: 2rem;
        margin-bottom: 6rem;

        .savoir-plus{
            display: flex;
            justify-content: center;
            text-align: center;
            background-color: white;  
            padding-left: 2rem;     
            padding-right: 2rem;  
            
            
            h2{
                font-size: 1.5rem;
                line-height: 1.2;
                font-weight: 700;
                text-align: center;
                color: black;
                max-width: 400px;
            }
        }
        
        .map-box{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 1rem;
            padding-left: 2rem;     
            padding-right: 2rem;  
            align-items: center;
            .map{
                width: 400px;
                height: 200px;
                border-radius: 1rem;
            }
        }

        .contact-info{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center; 
            padding-left: 2rem;     
            padding-right: 2rem;  
            padding-top: 0rem;
            padding-bottom: 3rem;

            p{
                font-size: 1rem;
                font-weight: 400;
                line-height: 1.2;
                text-align: center;
                color: black;
                max-width: 400px;
            }

        }
    }
    
    
    @media (min-width: 850px) {
        .hide-p-desktop{
            display: none;
        }

        .quality{
            
            h2{
                font-size: 2.5rem;
                line-height: 1.2; 
            }
    
            
            p{
                font-size: 1rem;                
                line-height: 1.2;
            }
    
        }
        
        .nos-boissons{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: linear-gradient(90deg, #CCCCCC, #ffffff 80%);
            gap: 40px;
            padding-bottom: 4rem;
            
            h2{
                font-size: 2.5rem;
                line-height: 1.2;                
                padding-top: 20px;
                margin-bottom: 0px;
                color: #737373;  
                       
            }
    
            .konjac-box{
                
                display: flex;
                align-items: left;
                justify-content: left;
                max-width: 800px;
                flex-direction: row;
                background-color: #ffffff;
                padding-left: 2rem;
                padding-right: 2rem;
                border-radius: 20px;
                margin-left: 2rem;
                margin-right: 2rem;
                box-shadow: 0 4px 80px rgba(0, 0, 0, 0.2); 
                gap: 20px;
    
                .konjac-box-left{
                    display: flex;
                    flex-direction: column;
                    justify-content: left;
                    align-items: left;
                    order: 1;
                    
                    h3{
                        font-size: 1.5rem;
                        line-height: 1.0;                  
                        padding-top: 1rem; 
                        max-width: 500px;
                        padding-bottom: 0rem; 
                        color: #000000; 
                        text-align: left; 
                        
                    }
            
                    p{
                        color: #737373;
                        font-weight: 300;
                        max-width: 400px;
                        margin-top: 0rem;
                        text-align:justify;
                        text-align-last: left;
                        text-justify: inter-word;                        
                        font-size: 1rem;                
                        line-height: 1.2;
                        margin-bottom: 3rem;
                        
                    }
    
                    .konjac-cta{
                        a{
                            font-weight: 700;
                            font-size: 1.1rem;
                            
                        }
                    }
                }
    
                .konjac-box-right{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    
                    order: 2;
                    img{
                        max-width: 350px;
                        margin-bottom: 0rem;
                        
                    }
                }  
            }
    
            .fat-burner-box{
                display: flex;
                align-items: left;
                justify-content: left;
                max-width: 800px;
                flex-direction: row;
                background-color: #ffffff;
                padding-left: 2rem;
                padding-right: 2rem;
                border-radius: 20px;
                margin-left: 2rem;
                margin-right: 2rem;
                box-shadow: 0 4px 80px rgba(0, 0, 0, 0.2); 
    
                .fat-burner-box-left{
                    display: flex;
                    flex-direction: column;
                    justify-content: left;
                    align-items: left;
                    order: 1;
                    
                    h3{
                        font-size: 1.5rem;
                        line-height: 1.2;                  
                        padding-top: 1rem;
                        max-width: 500px; 
                        padding-bottom: 0rem; 
                        color: #000000; 
                        text-align: left; 
                                
                    }
            
                    p{
                        color: #737373;
                        font-weight: 300;
                        max-width: 400px;
                        margin-top: 0rem;
                        text-align:justify;
                        text-align-last: left;
                        text-justify: inter-word;
                        font-size: 1rem;                
                        line-height: 1.2;
                        margin-bottom: 3rem;
                        
                    }
    
                    .fat-burner-cta{
                        display: flex;
                        justify-content: center;
                        align-items: center;                    
                        border-radius: 10px;
                        width: 280px;
                        height: 50px;
                        margin-bottom: 2rem;
    
                        a{
                            text-decoration: none;
                            font-weight: 700;
                            font-size: 1.1rem;
                            color: #ffffff;
                        }
                    }
                }
    
                .fat-burner-box-right{
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    
                    order: 2;
                    img{
                        max-width: 350px;
                        margin-bottom: 0rem;
                        
                    }
                }  
            }
        }

        .home-intro{            
            flex-direction: row;  
            justify-content: center;
            .home-intro-left{
                order: 1;
                display: flex;
                justify-content: left;
                align-items: left;
                
                img{
                    width: 500px;
                    height: 500px;
                }
    
            }
    
            .home-intro-right{
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: left;
                padding-right: 4rem;
                order: 2;
    
                p{
                    text-align: justify;
                    text-align-last: left;                    
                    font-size: 1rem;
                    max-width: 400px;
                }
    
                .home-intro-logo{
                    margin-top: 2rem;
                    width: 280px;
                }
            }
        
        }

        

        .final-message{
            h2{
                font-size: 2.5rem;
                line-height: 1.2;                
               
            }
    
            p{
                font-size: 1rem;                
                line-height: 1.2;
                
            }
        }

    }
    
    @media (min-width: 600px) {
        .hide-desktop{
            display:none;
        }
    
        .header-nav ul li a:visited {
            color: #737373;
        }
    
        .dropdown-menu-header {
            right: 200px;
            margin-top: 10px;
            background-color: #ffffff;
            text-align: center;
        }
        
        .dropdown-menu-header a {
    
            padding-left: 40px;
            padding-right: 40px;
        }
    
        .dropdown-menu-header a:hover {
            background-color: #CCCCCC;
        }
    
        .header-nav ul{
            position: unset;
            background: none;
            display: flex;
            gap: 2em;
            height: auto;
            width: auto;
            transform: translateX(0%);
        
            li a {
                color: #737373;
                font-weight: 400;
                font-size: 0.9rem;
                
                }
        }
    
        header {
            height: 6vh;
            
        }

        .quality{
            
            h2{
                font-size: 2.5rem;
                line-height: 1.2; 
                margin-bottom: 0px;
            }
    
            
            p{
                font-size: 1rem;                
                line-height: 1.2;
                padding-left: 2rem;
                padding-right: 2rem;
                max-width: 600px;
            }
    
        }

        

        .nos-boissons{
                           
            h2{
                font-size: 2.5rem;
            }
               
        }

        .final-message{

            h2{
                font-size: 3rem;  
                max-width: 600px;
                padding-left: 2rem;
                padding-right: 2rem;
                margin-bottom: 1rem;
            }
    
            p{
                max-width: 600px;                
                font-size: 1.2rem;
                padding-left: 2rem;
                padding-right: 2rem;
            }
    
            img{
                width: 700px;
            }

        }

        .contact-section{
            
            .savoir-plus{
                h2{
                    max-width: 600px;
                    font-size: 2.5rem;
                    line-height: 1.2;
                }
            }    
            
            .contact-info{
                p{
                    max-width: 600px;
                    font-size: 1rem;
                    line-height: 1.2;
                }
            }

            .map-box{
                .map{
                    width: 800px;
                    height: 400px;
                    
                }
            }

        } 
        
        
    }

    @media (min-width: 600px) and (max-width: 850px) {

        .home-intro{
            .home-intro-right{
                
    
                p{
                    padding-left: 2rem;                    
                    padding-right: 2rem;                    
                    font-size: 1rem;
                    max-width: 600px;
                }
            }    
        }
        

    }