
:root{
  --warm-white:#F7F4EE;
  --sand:#D8C3A5;
  --wood:#B08968;
  --olive:#6B705C;
  --taupe:#A68A64;
  --terracotta:#CB997E;
  --text:#3f3b36;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:Arial,sans-serif;
  background:var(--warm-white);
  color:var(--text);
  line-height:1.7;
}
header{
  background:white;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.logo{
  font-size:1.6rem;
  font-weight:bold;
  color:var(--olive);
}
nav a{
  margin-left:20px;
  text-decoration:none;
  color:var(--text);
}
.hero{
  padding:120px 8%;
  background:linear-gradient(rgba(247,244,238,.8),rgba(247,244,238,.9)),
  url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1200&auto=format&fit=crop') center/cover;
}
.hero h1{
  font-size:3rem;
  max-width:700px;
  margin-bottom:20px;
}
.hero p{
  max-width:600px;
  margin-bottom:30px;
}
.btn{
  background:var(--olive);
  color:white;
  padding:14px 24px;
  text-decoration:none;
  border-radius:30px;
}
.section{
  padding:80px 8%;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
  margin-top:40px;
}
.card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}
.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.card-content{
  padding:20px;
}
.card h3{
  margin-bottom:10px;
}
footer{
  background:var(--olive);
  color:white;
  padding:40px 8%;
  margin-top:60px;
}
.lang{
  border:1px solid var(--olive);
  padding:8px 12px;
  border-radius:20px;
}
.shop-item{
  background:#fff;
  padding:20px;
  border-radius:16px;
}
.price{
  color:var(--olive);
  font-weight:bold;
  margin-top:10px;
}
@media(max-width:768px){
  .hero h1{
    font-size:2.2rem;
  }
  nav{
    display:none;
  }
}
