:root{
  --bg: #f7f3ea;
  --card: #ffffff;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --border: rgba(0,0,0,0.10);
  --shadow: 0 8px 24px rgba(0,0,0,0.06);
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}

.nav{
  border-bottom: 1px solid var(--border);
  background: rgba(247,243,234,0.9);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  font-size: 14px;
}

.hero{
  padding: 42px 0 18px;
}

.h1{
  font-size: 34px;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.sub{
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
}

.btn{
  display:inline-block;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 14px;
}

.btn.primary{
  font-weight: 700;
}

.section{
  padding: 26px 0;
}

.h2{
  font-size: 18px;
  margin: 0 0 10px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.card img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display:block;
}

.card-body{
  padding: 14px;
}

.product-title{
  margin: 0 0 6px;
  font-weight: 700;
}

.price{
  margin: 0 0 12px;
  color: var(--muted);
}

.footer{
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

/* Mobile */
@media (max-width: 680px){
  .h1{ font-size: 28px; }
  .grid{ grid-template-columns: 1fr; }
  .btn{ width: 100%; text-align: center; }
  .nav-inner{ flex-direction: column; align-items:flex-start; }
}
