*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#f4f4f4;
display:flex;
flex-direction:column;
min-height:100vh;
color:#111;
}

.promo{
background:#ff6a00;
color:white;
text-align:center;
padding:12px;
font-weight:bold;
}

.header{
background:black;
color:white;
display:flex;
align-items:center;
padding:15px 40px;
position:relative;
}

.logo{
display:flex;
align-items:center;
gap:15px;
font-size:20px;
font-weight:bold;
}

.logo a{
color:white;
text-decoration:none;
}

.nav{

position:absolute;
left:50%;
transform:translateX(-50%);

display:flex;
gap:40px;

}

.nav a{

color:white;
text-decoration:none;
font-size:16px;
transition:0.2s;

}

.nav a:hover{

color:#ff6a00;

}


#menu{
position:fixed;
top:0;
left:-250px;
width:250px;
height:100%;
background:#111;
padding-top:80px;
transition:0.3s;
z-index:1000;
}

#menu a{
display:block;
padding:15px;
color:white;
text-decoration:none;
border-bottom:1px solid #333;
}

#menu a:hover{
background:#222;
}

#menu.active{
left:0;
}


.layout{
flex:1;
display:flex;
align-items:center;
justify-content:space-between;
padding:80px;
gap:80px;
}

.left{
width:40%;
}

.left h1{
font-size:50px;
line-height:1.1;
margin-bottom:20px;
}

.left p{
color:#555;
margin-bottom:20px;
}


.intro-links{

margin-bottom:25px;

font-size:15px;
line-height:1.6;

color:#444;

max-width:480px;

}

.intro-links a{

color:#ff6a00;
font-weight:bold;
text-decoration:none;

}

.intro-links a:hover{

text-decoration:underline;

}


.btn{
background:#ff6a00;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:6px;
display:inline-block;
}


.right{
width:60%;
}

.slider{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding-bottom:10px;
}

.card{
min-width:240px;
background:white;
padding:15px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:center;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
height:160px;
object-fit:contain;
cursor:pointer;
}

.price{
font-weight:bold;
margin:8px 0;
}

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
align-items:center;
justify-content:center;
z-index:2000;
}

.modal img{
max-width:80%;
max-height:80%;
background:white;
padding:10px;
border-radius:10px;
}

footer{

background:#111;
color:white;

text-align:center;

padding:20px;

font-size:14px;

}



footer a{

color:#ff6a00;  

text-decoration:none;

font-weight:bold;

margin:0 5px;

transition:0.2s;

}


footer a:hover{

color:#ff6a00;  

text-decoration:underline;

}

.catalogue{
padding:80px;
text-align:center;
}

.catalogue h1{
font-size:40px;
margin-bottom:10px;
}

.catalogue-intro{
color:#555;
margin-bottom:50px;
max-width:900px;
margin-left:auto;
margin-right:auto;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.grid .card{
padding:20px;
}

.grid img{
width:100%;
height:180px;
object-fit:contain;
cursor:pointer;
}

.type{
font-weight:bold;
margin-top:8px;
color:#444;
}

.description{
font-size:14px;
color:#555;
margin:10px 0;
line-height:1.4;
}

.filters{
margin:40px 0;
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:center;
}

.filters button{
background:#111;
color:white;
border:none;
padding:10px 18px;
cursor:pointer;
border-radius:5px;
transition:0.2s;
}

.filters button:hover{
background:#ff6a00;
}

.bienfaits-container{
max-width:900px;
margin:auto;
padding:60px 20px;
}

.bienfaits-container h1{
text-align:center;
margin-bottom:40px;
}

.bienfait{
display:flex;
align-items:center;
gap:20px;
background:#1e1e1e;
color:white;
padding:20px;
border-radius:8px;
margin-bottom:20px;
}

.bienfait img{
width:70px;
height:70px;
object-fit:contain;
flex-shrink:0;
}

.bienfait h3{
margin-bottom:6px;
font-size:18px;
}

.bienfait p{
color:#ccc;
line-height:1.5;
}


@media(max-width:900px){

.layout{
flex-direction:column;
padding:40px;
}

.left{
width:100%;
}

.right{
width:100%;
}

.left h1{
font-size:34px;
}

.catalogue{
padding:40px 20px;
}

}

@media(max-width:800px){

.bienfait{
flex-direction:column;
text-align:center;
}

}


.popup{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.6);

display:none;

align-items:center;
justify-content:center;

z-index:5000;

}

.popup-box{

background:white;

padding:40px;
border-radius:10px;

max-width:520px;
text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,0.2);

}

.popup-box h2{

margin-bottom:15px;

}

.popup-box p{

margin-bottom:12px;
color:#555;

}

.popup-buttons{

display:flex;
justify-content:center;
align-items:center;
gap:20px;

margin-top:20px;

}

.popup-box button{

background:#ff6a00;
color:white;

border:none;
padding:10px 20px;

border-radius:5px;
cursor:pointer;

}

.popup-check{

font-size:14px;
color:#444;

}