*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif, Arial, Helvetica, sans-serif;
    list-style: none;
    text-decoration: none;
}

:root{
    --text-titles :#1a1818;
    --text-para :#302b2b;
    --bkgd-white :#fff;
    --color-principal :#e94e2b;

    --color-primary: #E94E2B;     /* Rouge/orangé vif */
    --color-background: #FAFAFA;  /* Blanc cassé très clair */
    --color-text: #333333;        /* Gris foncé */
    --color-secondary: #2196F3;   /* Bleu turquoise */
    --color-accent: #FFC107;      /* Jaune doré */

}

html, body{
    width: 100%;
    height: 100%;
    background: var(--color-background);
}

header{
    width: 100%;
}
nav{
    position: fixed;
    width: 100%;
    height: 80px;
    background: var(--color-background);
    box-shadow: 2px 8px  7px 2px #302b2b10;
    display: flex;
    z-index: 1000;
}
.nvgt{
    height: 100%;
   /*  border: 2px solid blue; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo{
    width: 18%;
    gap: 20px;
   /*  box-shadow: 5px 15px 10px 2px #302b2b10; */
}

.logo h1{
    font-size: 1.4rem;
    cursor: pointer;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo  i{
    display: none;
}
.listes-items{
    width: 57%;
    justify-content: space-between;
    padding: 0 20px;
}
.listes-items h2{
    font-size: 1.2rem;
    color: var(--color-text);
    text-align: center;
}

.listes-items h2 p{
   font-size: 1rem;
   font-weight: 400;
}
.search{
    border: 2px solid var(--color-text);
    height: 40px;
    width: 40%;
    display: flex;
    gap: 0;
    padding: 5px;
    border-radius: 30px;
}
.search input{
    height: 100%;
    width: 90%;
    border: none;
    background: transparent;
    padding: 0 10px;
    font-size: 20px;
    color: var(--color-text);
}
.search input:focus{
    outline: none;
}
.search  button{
    width: 10%;
    font-size: 25px;
    border: none;
    background: transparent;
    font-weight: 100;
    cursor: pointer;
     transition: 0.3s ease-in-out;
}
.search  button:hover{
    transform: scale(1.05);
    color: var(--color-primary);
}
.icon-btn{
    width: 25%;
    justify-content: space-evenly;
}

.icon-btn i{
    font-size: 25px;
    color: var(--color-text);
    transition: 0.3s ease-in-out;
}
.icon-btn i:hover{
    transform: translateY(-2px);
    color: var(--color-primary);
}
#profil{
    font-size: 50px;
}  

@media (max-width:1024px){
    .logo{
        width: 40%;
        display: flex;
        justify-content: space-between;
        /* border: 2px solid red; */
        padding: 0 20px;
    }

    .logo h1{
        font-size: 1.5rem;
    }
    .listes-items{
        width: 40%;
        /* border: 2px solid red; */
        padding: 0 10px;
    }
    .icon-btn{
        width: 20%;
    }
    .icon-btn i{
        display: none;
    }
    .panier-btn i{
        display: inline;
        cursor: pointer;
    }
    .logo  i{
        display: block;
        font-size: 25px;
    }
    .search button{
        font-size: 20px;
    }
    .listes-items h2{
        display: none;
    }
    .search{
        width: 100%;
    }

}

@media (max-width:600px){
    
    nav{
        flex-direction: column;
        height: 100px;
       
    }
    .logo{
        width: 70%;
        padding: 5px 0 0 20px;
        display: flex;
        justify-content: space-between;
       
    }
    .logo  i{
        display: block;
        font-size: 20px;
    }
    .logo h1{
        font-size: 1.1rem;
    }

    .listes-items{
        width: 100%;
    }
    .listes-items h2{
        display: none;
    }
    .listes-items{
        padding: 0 20px;
    }
    .search{
        height: 30px;
        width: 100%;
        padding: 1px;
        border: 1px solid var(--text-para);
    }
    .search input{
        width: 85%;
        font-size: 18px;
    }
    .icon-btn{
        display: block;
        position: absolute;
        right:10px ;
        top: 15px;
        padding-left: 20px;
    }
     .icon-btn i{
        display: none;   
     }
    .icon-btn .panier-btn i{
        display: inline;
    }
    .panier-btn{
        font-size: 20px;
    }
}



.absolut-scroll{
    overflow: auto; /* ou scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE et Edge */
}

.absolut-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}





/* Le corps de la page */

main{
    width: 100%;
    display: flex;
    justify-content: right;
}

.box-left{
    width: 18%;
    height: 88vh;
  /*   border: 2px solid var(--color-principal); */
    position: fixed;
    left: 0;
    top: 80px;
    box-shadow: 5px 15px 10px 2px #302b2b10;
    background: var(--color-background);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    z-index: 1000;
}
.box-left ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.box-left ul li {
     transition: 0.3s ease-in-out;
}
.box-left ul li a{
    color: var(--color-text);
    font-size: 1.1rem;
    transition: 0.3s ease-in-out;
}
.box-left ul li a:hover{
   color: var(--color-primary);
}
.box-left ul li:hover{
    transform: translateY(-2px);
    color: var(--color-primary);
}
.box-left ul li a i{
    margin-right: 10px;
    font-size: 1.4rem;
   
}
.box-left-iner{
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-secondary), var(--color-primary));
    border-radius: 6px;
    box-shadow: 0px 1px 2px 2px #302b2b4f;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 6px;
}
.box-left-iner button a{
    color: var(--bkgd-white);
}

.box-left-iner .centerPlus{
    height: 50px ;
    width: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
    color: var(--bkgd-white);
    border: 4px solid var(--bkgd-white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
   
}

.box-left-iner button{
    transition: 0.3s ease-in-out;
}

.box-left-iner button:hover{
    transform: scale(1.05);
}
.box-left-iner p{
    color: var(--bkgd-white);
    font-size: 16px;

}
.box-left-iner button{
    border: none;
    background: var(--color-primary);
    color: var(--bkgd-white);
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 7px;
    box-shadow: 0px 0px 6px 8px #302b2b1a;
}



@media (max-width:1024px){
    .box-left{
        position: fixed;
        width: 300px;
        height: 90vh;
        top: 82px;
        z-index: 1000;
        transform: translateX(-20px);
        transition: 0.5s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }
    .box-left-iner{
        height: 280px;
    }
    .boxleft-active{
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width:600px){
    .box-left{
        width: 200px;
        top: 100px;
    }
    .box-left-iner{
        gap: 10px;
        padding: 15px;
        height: auto;
    }
    .box-left-iner .centerPlus{
        height: 40px ;
        width: 40px;
        background: var(--color-primary);
        border-radius: 50%;
        font-size: 20px;
        font-weight: bold;
        color: var(--bkgd-white);
        border: 3px solid var(--bkgd-white);
        display: flex;
        justify-content: center;
        align-items: center;
    
    }
    .box-left-iner p{
        color: var(--bkgd-white);
        font-size: 10px;

    }
    .box-left-iner button{
        font-size: 12px;
        padding: 5px 10px;
    }

}



/* La boite  centrale qui contient les elements */

.central-box-ultime{
    width: 82%;
}


/* La banniere de la page  */


/* La boite qui est en dessous du banner */

.central-box{
/*     border: 2px solid blue; */    
    width: 100%;
    display:flex ;
}


/* la boite de droite qui se trouve en bas du banner */

.box-right{
    width: 30%;
    height: 780px;
    /* border: 2px solid red; */
    background: var(--color-background);
    padding: 20px 20px 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 80px;
}

.box-left-iner1{
    height: 190px;
    margin-bottom: 20px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(-45deg, var(--color-secondary), var(--color-primary));
   
}
.box-nouveaute{
    display:  flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.box-nouveaute span{
    cursor: pointer;
}
.iner1-text{
    width: 100%;
    height:30%;
    padding: 15px;
}

.iner1-text h6{
    color: var(--bkgd-white);
    font-size: 25px;
    line-height: 25px;
    font-weight: 500;
}
.iner1-image{
    height: 70%;
    width: 100%;
    display: flex;
    align-items: center;    
}
.iner1-image img{
    height: 100px;
}
.iner1-image span{
    margin-top: 50px;
    margin-left: 10px;
    color: var(--bkgd-white);
    font-size: 16px;
    padding: 8px 10px;
    background: var(--color-primary);
    border-radius: 6px;
    box-shadow: 0px 0px 6px 8px #302b2b1a;
    transition: 0.3s ease-in-out;
}
.iner1-image span:hover{
    transform: scale(1.05);
}

.iner1-image span a{
    color: var(--bkgd-white);
}




.box-new1{
    height: 75vh;
   /*  border: 2px solid #ccc; */
    overflow-y: scroll;   
    box-sizing: border-box;
    padding: 0 5px;
}
 .box-new{
    width: 100%;
    box-shadow: 0px 1px 2px 2px #302b2b11;
    border-radius: 7px;
    height: 60px;
    margin: 10px 0;
    background: var(--color-background);
    padding: 2px 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.box-new img{
    border-radius: 50%;
    height: 100%;
}
.box-new-text h5{
    font-size: 13px;
}
.box-new-text  p{
    font-size: 12px;
    color: var(--text-para);
}
.box-new span{
    font-size: 13px ;
    color:  var(--color-primary);
    margin-bottom: 10px;
    margin-left: 2px;
    font-weight: bold;
}
.scroll-btn1{
    display: none;
}

/* La boite de gauche qui se trouve en bas du banner */

.box-center{
    width: 70%;
    /*border: 7px solid var(--color-principal); */     
    height: auto;
    margin-top: 80px;
    
}


.contenteBoxCenter{
   /*  border: 2px solid red; */
    display: flex;
    gap: 20px;
    width: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.boxcenter1{
    width: 100%;
    padding: 10px 20px 60px 20px;
   /*  border: 2px solid; */
    position: relative;
    overflow: hidden;
}


.slider-btn {
    position: absolute;
    transform: translateY(-50%);
    top: 40%;
    background:var(--color-background);
    box-shadow: 0px 3px 20px 8px #302b2b15;
    color:var(--color-secondary);
    border: none;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dots span {
    width: 15px;
    height: 15px;
    background: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dots span.active {
    background: var(--color-secondary);
}


.boxContent-center{
    box-shadow: 0px 8px 15px 9px #302b2b21;
    background: var(--bkgd-white);
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    min-width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

.boxContent-center22{
    background: url('../Images/Banniére\ 1.png');
    background-size: cover;
}
.boxContent-center23{
    background: url('../Images/banniére\ 2.png');
    background-size: cover;
}

.boxContent-center23 .boxContent-center-right h4{
    color: var(--color-accent);
}

.boxContent-center23 .boxContent-center-right p{
    color: var(--bkgd-white);
}

.boxContent-center24{
    background: url('../Images/Banniére\ 3.png');
    background-size: cover;
}

.boxContent-center24 .boxContent-center-right h4{
    color: var(--color-accent);
}




.boxContent-center25{
    background: url('../Images/Bannière\ 4.png');
    background-size: cover;
}
.boxContent-center25 .boxContent-center-right h4{
    color: var(--color-secondary);
}





.boxContent-center-right{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* border: 2px solid; */
    padding: 30px 35px;
    align-items: center;
    justify-content: center;
    background: #08080894;
}

.boxContent-center-right h4{
    font-size: 2.6rem;
    color: var(--color-primary);
    text-align: center;
    line-height: 49px;
}

.etoile i{
    color: var(--color-accent);
    font-size: 22px;
}
.etoile span{
    font-size: 19px;
    color: var(--color-primary);
}

.boxContent-center-right p{
    font-size: 25px;
    line-height: 35px;
    color: var(--bkgd-white);
}



.box-btn{
    width: 100%;
    display: flex;
    gap: 30px;
}

.box-btn .center-btn1{
   border: 2px solid var(--color-principal);
   padding: 8px 16px;
   font-size: 20px;
   background: var(--color-principal);
   border-radius: 10px;
   color: var(--bkgd-white);
   transition: 0.4s ease-in-out;
   cursor: pointer;
}

.box-btn  .center-btn3{
    border: 2px solid var(--color-secondary);
    background: var(--color-secondary);
    color: var(--bkgd-white);
}

.center-btn1:hover{
    transform: scale(1.05);
}




.center-produit{
    height: 290px;
    width: 100%;
    position: relative;
    margin: 20px 0 ;
    
}
.scrollContent-center{
    height: 100%;
    width: 100%;
  /*   border: 2px solid blue; */
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 15px;
}
.boxContent-Produit{
    height: 100%;
    width: 190px;
    box-shadow: 0px 2px 5px 1px #302b2b15;
    border: 1px solid rgba(0, 0, 0, 0.192);
    background: rgba(230, 9, 9, 0.007);
    border-radius: 20px;
    flex-shrink: 0;
    overflow: hidden;
    
}
.box-centerproduit{
    height: 63%;
    width: 100%;
    /* border: 2px solid blue; */
    overflow: hidden;
   
}
.box-centerproduit img{
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}
.box-centerproduit img:hover{
    transform: scale(1.06);
}
.box-centerproduit1{
    height: 37%;
    padding: 5px 5px 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.box-centerproduit1 h4{
    font-size: 16px;
    line-height: 18px;
    color: var(--color-text);
}
.box-centerproduit1 p{
    color: var(--color-principal);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;

}
.box-centerproduit1 span{
    color: var(--color-principal);
    font-weight: bold;
}

.box-centerproduit1 p .etl {
    color: var(--color-accent);
    font-weight: bold;
}

.box-centerproduit1  div{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.box-centerproduit1 .centerPlus{
    color: var(--bkgd-white);
    background: var(--color-secondary);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    border-radius: 15px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    border: none;
}
.box-centerproduit1 .centerPlus i{
    margin-left: 5px;
}
.box-centerproduit1 .centerPlus:hover{
    transform: scale(1.03);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:var(--bkgd-white);
    box-shadow: 0px 3px 20px 8px #302b2b2c;
    color:var(--color-secondary);
    border: none;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-btn.left {
    left: -4px;
}
.scroll-btn.right {
    right: -4px;
}




@media (max-width:1024px){
    .central-box-ultime{
        width: 100%;
    }
    .center-produit{
      /*   border: 2px solid blue; */
        height: 300px;
    }
    
    .boxContent-center-right h4{
        font-size: 1.6rem;
        line-height: 25px;
    } 
    .boxContent-center-right p{
        font-size: 14px;
        line-height: 18px;
    }
    .box-btn .center-btn3{
        display: none;
    }
    .boxContent-center-right{
        justify-content: center;
    }
    .boxContent-center{
        height: 300px;
    }


    .box-left-iner1{
        height: 260px;
    }
    .box-right{
        height: 700px;
      
    }
    .iner1-text {
        text-align: center;
    }
    .iner1-image span{
        margin: 0;
    }
    .iner1-image{
        justify-content: center;
    }
    .iner1-image{
        flex-direction: column-reverse;
        gap: 5px;
    }

    .box-new-text p{
        display: none;
    }
   

}


@media (max-width:600px){
    .central-box{
        flex-direction: column;
        padding: 0;  
        justify-content: center; 
        align-items: center;
        margin-top: 25px;
    }
    .box-center{
        width: 100%;
    }
    .contenteBoxCenter{
        width: 100%;
    }
    .boxContent-center{
        height: 200px;
        gap: 0;
    }
    .boxContent-center-left{
        width: 0%;
    }
    .boxContent-center-right{
        width: 100%;
        background: #1a181883;
        gap: 10px;
    }
    .boxContent-center-right h4{
        font-size: 1.3rem;
    }
     .boxContent-center-right p{
        font-size: 12px;
    }
    .boxContent-center-right .box-btn .center-btn1{
        font-size: 15px;
    }

    .slider-btn{
        font-size: 16px;
        font-weight: bold;
        width: 30px;
        height: 30px;
         top: 90%;
        bottom: 0;
        background: var(--color-primary);
        color: var(--bkgd-white);
    }
    .slider-btn.prev { 
        left: 30px; 
    }
    .slider-btn.next { 
        right: 30px; 
    }

    .boxcenter1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-right: 8px;
        padding-left: 8px;
    }
    .contenteBoxCenter .boxContent-center23 p{
        color: var(--bkgd-white);
    }
    .scroll-btn{
        color: var(--bkgd-white);
        background: var(--color-primary);
    }





    .box-right{
        width: 100%;
    /*     border: 2px solid red; */
        margin-top: 10px;
        padding: 8px;
        position: relative;
        height: auto;
        margin-bottom: 25px;
    }

    .box-left-iner1{
        height: 200px;
    }
    .iner1-image{
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .iner1-text{
        height: auto;
    }
    .box-left-iner1 h6{
        font-size: 1.2rem;
    }

    .box-new1{
        height: 290px;
        width: 100%;
        padding: 10px 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        display: flex;
        gap: 30px;
        position: relative;
    }
    .box-new{
        height: 100%;
        width: 190px;
        box-shadow: 0px 3px 10px 5px #302b2b2c;
        background: var(--bkgd-white);
        border-radius: 12px;
        flex-shrink: 0;
        overflow: hidden; 
        flex-direction: column; 
        padding: 0; 
        margin: 0;
        gap: 10px;
        
    }
    .box-new img{
        border-radius: 0;
        width: 100%;
        height: 65%;
    }

    .box-new .box-new-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0 10px;
    }
    .box-new .box-new-text h5{
        place-self: left;
    }
    .box-new .box-new-text  p{
        display: block;
    }
     .box-new  span{
        font-size: 20px;
        font-weight: bold;
     }

    .scroll-btn1 {
        position: absolute;
        top: 75%;
        transform: translateY(-50%);
        box-shadow: 0px 3px 20px 8px #302b2b2c;
        border: none;
        font-size: 20px;
        font-weight: bold;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--bkgd-white);
        background: var(--color-primary); 
    }
    .left1{
        left: 0;
    }
    .right2{
        right: 0;
    }
}













.box-principal-categorie{
    width: 100%;
   /*  border: 5px solid yellow; */
    padding: 15px;
}
.categorie{
    width: 100%;

   /*  border: 5px solid  var(--color-primary); */
    display: flex;
    flex-direction: column;
    position: relative;
}

.categorie-title{
    width: 100%;
    padding: 10px;
/*     border: 2px solid blue; */
    color: var(--bkgd-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.categorie h2{
   color: var(--text-para);
}

.categorie span{
    color: var(--text-para);
}


.content-categorie{
    width: 100%;
    height: auto;
    padding: 20px;
   /*  border:  2px solid red; */
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    justify-content: center;
  
}

.scroll-btn2, .scroll-btn3{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:var(--bkgd-white);
    box-shadow: 0px 3px 20px 8px #302b2b2c;
    color:var(--color-secondary);
    border: none;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
}

.left22, .left23 {
    left: 0;
}
.right22, .right23{
    right: 0;
}

.box-icon-categrie{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 1px #302b2b25;
    border: 1px solid rgba(0, 0, 0, 0.192);
    background:#302b2b09;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
 
}
.box-icone-categori1{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.box-icon-categrie i{
    font-size: 3rem;
    color: var(--text-titles);
}

.box-icone-categori1 p{
    font-size: 0.9em;
    font-weight: bold;
}

@media(max-width:600px){
    .categorie h2{
        font-size: 20px;
    }
    .categorie-title{
        padding: 5px;
    }
    .categorie, .box-principal-categorie{
        padding: 5px;
    }
    .content-categorie{
        justify-content: left;
    }
}


/* La section pour les produits en vedette  */


.box-vedette{
    padding: 20px;
    position: relative;
}
.box-vedette1{
    width: 100%;
    padding: 10px;
/*     border: 2px solid blue; */
    color: var(--bkgd-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

 .box-vedette1 h2, .box-vedette1 span{
    color: var(--text-para) ;
 }

 .scroll-btn3{
    top: 50%;
}

.box-vedette2{
    width: 100%;
    height: 290px;
    padding: 0 20px;
   /*  border:  2px solid red; */
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    color: var(--text-para);
} 


@media(max-width:600px){
    .box-vedette1 h2{
        font-size: 18px;
    }
    .box-vedette{
        padding: 5px;
    }
    .btnLeft, .btnRight{
        display: none;
    }
    
}


/* La section pour notre catalogue complet  */

.catalogue{
   /*  border: 2px solid red; */
    width: 100%;
    background: rgba(65, 67, 71, 0);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.catalogue h2{
    margin-top: 60px;
    color: var(--text-para);
    font-size: 1.7rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.catalogue-sacs{
    position: relative;
    width: 100%;
}

.Sacs{
    width: 100%;
/*     border: 1px solid blue; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.sacs1{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sacs1 h3{
    font-size: 1.5rem;
    color: var(--text-para);
}

.sacs2{
    width: 100%;
    height: 290px;
   /*  border:  2px solid red; */
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    color: var(--text-para);

}    
#left4{
    left: 0;
}
#right4{
    right: 0;
}

@media (max-width:600px){
    .sacs1 h3{
        font-size: 1rem;
        color: var(--text-para);
    }
    .Sacs{
        padding: 10px;
    }
}  









.panier-btn {
    color: var(--color-text);
    border: none;
    background: transparent;
    font-size: 18px;
    transition: .3s ease-in-out;
    position: relative;
    cursor: pointer;
}

.panier-btn:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.panier-count{
    background: var(--color-primary);
    color: var(--bkgd-white);
    height: 25px ;
    width: 25px;
    justify-content: center;
    align-items: center;
    border-radius:50% ;
    position: absolute;
    display: inline-flex;
    font-weight: bold;
    left: 20px;
    top: -15px;
    font-size: 14px;
}
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}


        .centerPlus.added {
            background: #27ae60;
        }

        .panier-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
        }

        .panier-content {
            background: white;
            margin: 5% auto;
            padding: 20px;
            width: 90%;
            max-width: 600px;
            border-radius: 15px;
            max-height: 80vh;
            overflow-y: auto;
        }

        .panier-item {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding: 15px;
            border-bottom: 1px solid #eee;
            margin: 10px;
            box-shadow: 0 1px 4px 4px rgba(0,0,0,0.1);
            border-radius: 8px;
            
        }
        .panier-item1{
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .panier-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
        }

        .panier-item-info {
            flex: 1;
        }

        .panier-item-info h5 {
            margin-bottom: 5px;
            color: #333;
        }

        .panier-item-info p {
            color: #666;
            font-size: 14px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .quantity-controls span{
            font-size: 20px;
        }

        .qty-btn {
            background: #3498db;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .qty-btn:hover {
            background: #2980b9;
        }

        .remove-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 20px;
            width: 50px;
            height: 50px;
            display:flex ;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .remove-btn:hover {
            background: #c0392b;
        }

        .panier-total {
            text-align: center;
            margin: 20px 0;
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }

        .close-modal {
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #aaa;
        }

        .close-modal:hover {
            color: #333;
        }

        .commander-btn {
            background: #25D366;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .commander-btn:hover {
            background: #128C7E;
        }

        .empty-cart {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        @media (max-width: 768px) {
            .panier-header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .produits-grid {
                grid-template-columns: 1fr;
            }

            .panier-content {
                margin: 2% auto;
                width: 95%;
                max-height: 90vh;
            }
        }




/* la section pourquoi nous choisir */


.autre-et-temoignage{
    width: 100%;
}

.advantages {
  padding: 50px 20px;
  text-align: center;
  width: 100%;
  /* order: 2px solid red; */
}

.advantage-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card i {
  color: var(--color-primary);
  margin-bottom: 15px;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bkgd-white);
  border-radius: 50%;
}

.card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--bkgd-white);
}
.card  p{
    color: var(--bkgd-white);
}


/* la section pour les temoignage  */

.testimonials {
  padding: 50px 20px;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 1px 4px 10px rgba(0, 0, 0, 0.007);
  text-align: center;
  border: 1px solid var(--color-secondary);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-card  h4{
    color: var(--color-secondary);
}
.testimonial-card p{
    color: var(--color-accent);
}

.testimonial-card q {
  font-style: italic;
  font-size: 14px;
}


.btn {
  margin-top: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.btn:hover{
    transform: translateY(-3px);
}






.cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding:0 10px 50px 10px;
}
.cta1{
    background-color: #f3f0f0;
    text-align: center;
    margin-bottom: 0px;
    display: flex;
    height: 280px;
    width: 95%;
    border-radius: 25px;
    background: #2195f348;
}


.box-cta1{
    width: 25%;
    height: 100%;
}

.box-cta1 img{
    height: 100%;
    width: 100%;
    transform: scale(1.5);
}

.box-cta3 img{
    height: 100%;
    width: 100%;
    transform: scale(1.2);
}

.box-cta2{
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;

}

.box-cta2 h3{
    font-size: 2.5rem;
    color: var(--color-primary);
}

.box-cta2 p{
    color: var(--color-text);
    font-size: 18px;
}
.box-cta2 form{
    border: 1px solid #ffffffb2;
    background: #fafbfc60;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 0;
    align-items: center;
}
.box-cta2 form .form-text{
    height: 100%;
    width: 80%;
    background: transparent;
    border: none;
    padding: 0 10px;
    font-size: 16px;
}
.box-cta2 form .form-text:focus{
    outline: none;
}
.box-cta2 form .form-submit{
    width: 20%;
    height: 80%;
    border: none;
    border-radius: 10px;
    background: var(--color-primary);
    color: var(--bkgd-white);
    transition: 0.5s ease-in-out;
}

.box-cta2 form .form-submit:hover{
    background: var(--color-secondary);
}
.box-cta3{
    width: 25%;
    height: 100%;
}

.cta .btn {
  margin: 10px;
}

.btn-secondary {
  background-color: #333;
}

@media (max-width:1024px){
    .cta1{
        height: 220px;;
    }
    .box-cta2{
        padding: 15px;
        gap: 10px;
       

    }

    .box-cta2 h3{
        font-size: 2rem;
        color: var(--color-primary);
    }

    .box-cta2 p{
        color: var(--color-text);
        font-size: 15px;
    }
    .box-cta2 form .form-text{
        width: 70%;
        background: transparent;
        border: none;
        padding: 0 10px;
        font-size: 16px;
    }
    .box-cta2 form{
        height: 40px;
    }
    .box-cta2 form .form-text:focus{
        outline: none;
    }
    .box-cta2 form .form-submit{
        width: 30%;

    }
}    

@media (max-width:600px){
    .box-cta{
        width: 100%;
    }
    .cta1{
        height: auto;
        flex-direction: column;
    }
    .box-cta1 img{
        transform: scale(1.1);
    }

    .box-cta3 img{

        transform: scale(1);
    }

}



.footer {
  background-color: var(--color-text);
  color: #fff;
  padding: 40px 0;
}

/** Le footer : le pied de la page ***/

.footer-container{
  background: var(--primary-color);
  height: auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
}
.footer-content{
  width: 300px;
  height: 320px;
  gap: 30px;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.footer-content h2{
  font-size: 2rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.footer-content p{
  color: var(--bg1-color);
  font-size: .9rem;
}

.footer-icon a{
  font-size: 1.6rem;
  color: var(--bg-color);
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur (10px);
  padding: 7px 13px;
  border-radius: 30%;
  transition: 0.6s ease-in-out;
  cursor: pointer;
}
.footer-icon a i{
  transition: 0.3s ease-in-out; 
  cursor: pointer;
}
.footer-icon a i:hover{
  transform: scale(1.3);
}

.footer-content ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}
.footer-content ul li {
  transition: .4s ease-in-out;
  cursor: pointer;
}
.footer-content ul li a{
  color: var( --bg1-color);
}
.footer-content ul li:hover{
  transform: translateX(10px);
}
.footer-icon1{
  height: 60px;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur (10px);
  border-radius: 10px;
  border: 1px solid rgba(250, 188, 188, 0.418);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}
.footer-icon1 input{
    height: 80%;
    background: transparent;
    border: none;
    color: var(--bg1-color);
    font-size: 1rem;
    width: 60%;
    padding: 0 3px;
}

.footer-icon1 input:focus{
  outline: none;
}
.footer-icon1 button{
  width: 40%;
  height: 80%;
  background: var(--accent-color);
  border-radius: 8px;
  border: none;
  transition: 0.5s ease-in-out;
  color: var(--bg-color);
  font-weight: 600;
}
.footer-icon1 button:hover{
  background: #e2a886;
}

.footer-bottom {
    background-color: var(--primary-color);
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    color: var(--bg1-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p{
    font-size: 18px;
    line-height: 23px;
}
