
:root{
  --accent:#0a7a3f;
  --bg:#fbfdfb;
  --muted:#6b7175;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(10,10,12,0.08);
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:#111;line-height:1.5}
.container{max-width:1100px;margin:0 auto;padding:28px}
.header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 0}
.brand{display:flex;align-items:center;gap:14px}
.brand h1{font-size:22px;margin:0;color:#07371f}
nav a{margin:0 10px;text-decoration:none;color:var(--muted);font-weight:600}
.hero{display:grid;grid-template-columns:1.1fr 0.9fr;gap:28px;align-items:center;margin:18px 0}
.hero .card{background:linear-gradient(180deg,rgba(255,255,255,0.96),rgba(255,255,255,0.9));padding:28px;border-radius:18px;box-shadow:var(--shadow)}
.cta{display:inline-block;padding:10px 18px;border-radius:999px;background:var(--accent);color:white;text-decoration:none;font-weight:700}
.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:18px}
.product{background:var(--card);border-radius:16px;padding:12px;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:10px}
.product img{width:100%;height:190px;object-fit:cover;border-radius:12px;background:white}
.product h3{margin:6px 0 0;font-size:16px;color:#0b3b26}
.badge{display:inline-block;padding:6px 9px;border-radius:999px;background:#e6f5ea;color:var(--accent);font-weight:700;font-size:12px}
.footer{padding:30px 0;color:var(--muted);font-size:14px;border-top:1px solid #eef2ee;margin-top:28px}
.site-logo-right{position:fixed;top:12px;right:16px;height:62px;border-radius:14px;box-shadow:0 6px 16px rgba(0,0,0,0.18);z-index:999;overflow:hidden}
.contact-card{background:var(--card);padding:18px;border-radius:16px;box-shadow:var(--shadow)}
.gallery{display:flex;gap:10px;flex-wrap:wrap}
.gallery img{border-radius:12px;max-width:100%;height:auto;flex:1 1 180px;object-fit:cover}
@media(max-width:880px){
  .hero{grid-template-columns:1fr}
  .container{padding:18px}
  .site-logo-right{height:56px}
}
