/* GLOBAL */

body{
font-family: Arial, sans-serif;
margin:0;
background:#f5efe6;
color:#3a1f14;
line-height:1.6;
}

h1,h2,h3{
line-height:1.3;
margin:0;
}

section{
padding:60px 40px;
}



/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
background:#6b3e2e;
flex-wrap:wrap;
}

.logo img{
height:60px;
}

nav{
display:flex;
gap:20px;
flex-wrap:wrap;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:16px;
}



/* HERO SECTION */

.hero{
text-align:center;
padding:100px 20px;
background:#f5efe6;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}



/* BUTTON */

.btn{
background:#c9a66b;
color:white;
padding:14px 30px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
display:inline-block;
margin-top:20px;
}



/* PRODUCTS */

.products{
text-align:center;
}

.product-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.product-card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
}

.product-card img{
width:100%;
border-radius:10px;
}

.product-card h3{
margin-top:15px;
}

.price{
font-size:20px;
font-weight:bold;
color:#6b3e2e;
}

.buy{
background:#6b3e2e;
color:white;
border:none;
padding:10px 20px;
margin-top:10px;
border-radius:5px;
cursor:pointer;
}



/* ABOUT */

.about{
text-align:center;
background:white;
}



/* CONTACT */

.contact{
text-align:center;
}

.whatsapp{
background:#25D366;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
display:inline-block;
margin-top:15px;
}



/* FOOTER */

footer{
background:#6b3e2e;
color:white;
text-align:center;
padding:20px;
}



/* MOBILE RESPONSIVE */

@media (max-width:768px){

header{
flex-direction:column;
text-align:center;
}

.logo img{
height:70px;
margin-bottom:10px;
}

nav{
justify-content:center;
gap:15px;
}

.hero{
padding:60px 20px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:18px;
}

.products{
padding:40px 20px;
}

}

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}
