:root{
  --bg:#f4f7f4;
  --fg:#0f1c0f;
  --muted:#5a6b5a;
  --brand:#2e7d32;
  --brand-2:#1b5e20;
  --card:#ffffff;
  --shadow:0 4px 16px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--fg);
  background:var(--bg);
  line-height:1.6;
}

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

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#fff;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
}
.brand{font-weight:700;letter-spacing:.5px}
.nav{display:flex;gap:18px;flex-wrap:wrap}
.nav a{
  color:#fff;
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
}
.nav a:hover{background:rgba(255,255,255,.12)}

.hero{
  display:grid;
  gap:24px;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  padding:28px 16px 40px;
}
.hero-text h1{
  margin:0 0 8px 0;
  font-size:clamp(28px,4vw,40px);
  line-height:1.2;
}
.hero-text p{margin:0;color:var(--muted)}
.hero-media{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.about{
  padding:24px 16px 8px;
}
.about h2{margin:0 0 8px 0}
.about-grid{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3,1fr);
  margin-top:16px;
}
.about-card{
  background:var(--card);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:12px;
}
.about-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}
.about-card h3{margin:10px 0 4px 0;font-size:18px}
.about-card p{margin:0;color:var(--muted);font-size:15px}

.products{padding:32px 0 8px}
.products h2{margin:0 0 12px 0;padding:0 16px}

.product-scroller{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:8px 16px 24px;
}
.product-scroller::-webkit-scrollbar{height:10px}
.product-scroller::-webkit-scrollbar-thumb{background:#c7d4c7;border-radius:8px}

.product-card{
  min-width:240px;
  max-width:260px;
  background:var(--card);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:12px;
  scroll-snap-align:start;
  flex:0 0 auto;
}
.product-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}
.product-card h3{margin:10px 0 4px 0;font-size:16px}
.product-card p{margin:0 0 8px 0;color:var(--muted);font-size:14px}
.price{font-weight:600;color:var(--brand-2)}

.footer{
  background:#0e160e;
  color:#e6efe6;
  margin-top:24px;
}
.footer-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(3,1fr);
  padding:24px 16px;
}
.footer h4{margin:0 0 8px 0}
.footer p{margin:4px 0;color:#c9d6c9}
.legal{
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  padding:12px 16px;
  font-size:14px;
  color:#b8c7b8;
}

@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:560px){
  .about-card img{height:200px}
  .product-card{min-width:200px;max-width:220px}
  .product-card img{height:200px}
}
