body{
margin:0;
font-family:Arial;
background:#f7f6f3;
color:#333;
}

.header{
background:#2f4f2f;
color:white;
padding:25px 20px 15px 20px;
text-align:center;
font-family:'Cinzel', serif;
letter-spacing:2px;
}

.header-brand{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
}

.header-brand img{
width:52px;
height:52px;
object-fit:contain;
}

.header-brand h1{
margin:0;
font-size:34px;
}

nav{
margin-top:10px;
padding-bottom:10px;
border-bottom:1px solid rgba(255,255,255,0.3);
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
padding:120px 20px;
text-align:center;
background:#d7d4c8;
}

.button{
background:#3f4a3c;
color:white;
padding:12px 20px;
text-decoration:none;
}

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

.product-card{
background:white;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,.1);
text-decoration:none;
color:#333;
}

.container{
max-width:1100px;
margin:auto;
padding:40px;
}


