:root{
  --bg:#ffffff;
  --fg:#0f172a;
  --muted:#5b6472;
  --soft:#f6f7fb;
  --card:#ffffff;
  --border:#e6e8ef;
  --brand:#1b7a3a;   /* green */
  --brand2:#19a463;
  --accent:#f59e0b;  /* gold */
  --shadow:0 10px 30px rgba(15,23,42,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.small{font-size:13px;color:var(--muted)}
/* Header (PrestaShop-ish) */
#header{position:sticky;top:0;z-index:80;background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--border)}
.header-nav{padding:12px 0}
.header-row{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:10px;min-width:240px}
.brand__mark{
  width:38px;height:38px;border-radius:14px;
  background:radial-gradient(100% 100% at 30% 20%, #c9f7d8 0%, #34d399 45%, #1b7a3a 100%);
  box-shadow:0 10px 24px rgba(27,122,58,.25);
}
.brand__name{display:flex;flex-direction:column;line-height:1.1}
.brand__name strong{letter-spacing:.2px}
.brand__name span{font-size:12px;color:var(--muted)}
.menu{display:flex;gap:18px;flex-wrap:wrap;justify-content:center;color:var(--muted)}
.menu a{padding:8px 10px;border-radius:12px}
.menu a:hover{background:var(--soft);color:var(--fg)}
.header-actions{display:flex;align-items:center;gap:10px;justify-content:flex-end;min-width:240px}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 12px;border:1px solid var(--border);
  border-radius:999px;background:#fff;
}
.pill svg{width:18px;height:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 14px;border-radius:999px;border:0;cursor:pointer;
  background:var(--brand);color:#fff;font-weight:800;
  box-shadow:0 12px 28px rgba(27,122,58,.22);
}
.btn:hover{filter:brightness(.98)}
.btn--ghost{
  background:#fff;color:var(--fg);
  border:1px solid var(--border);
  box-shadow:none;
}
.badge{
  display:inline-grid;place-items:center;
  min-width:22px;height:22px;padding:0 6px;
  border-radius:999px;background:#0f172a;color:#fff;font-size:12px;font-weight:800;
}
/* Hero */
.hero{
  margin:18px auto 10px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:16px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.hero__main{position:relative;min-height:460px}
.hero__bg{
  height:460px;
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(25,164,99,.18), transparent 70%),
    radial-gradient(700px 380px at 90% 40%, rgba(245,158,11,.12), transparent 60%),
    linear-gradient(135deg, #0b1220 0%, #0f172a 55%, #0b1220 100%);
  display:grid;
  place-items:center;
}
.hero__content{
  position:absolute;left:22px;right:22px;bottom:22px;
  color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,.45);
}
.h1{margin:0 0 10px;font-size:38px;line-height:1.1;letter-spacing:-.6px}
.sub{margin:0 0 14px;color:#e6edf5;max-width:58ch}
.hero__bullets{display:grid;gap:8px;margin:14px 0 0}
.bullet{display:flex;align-items:flex-start;gap:10px;color:#eaf2ff}
.bullet svg{width:18px;height:18px;margin-top:2px;color:var(--accent)}
.hero__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.hero__aside{padding:18px}
.kpi{display:grid;gap:12px;margin-top:10px}
.kpi .row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px;border:1px solid var(--border);border-radius:14px;background:var(--soft)}
.kpi strong{font-size:18px}
.tag{display:inline-flex;align-items:center;gap:8px;font-weight:800}
.tag .dot{width:10px;height:10px;border-radius:999px;background:var(--brand2)}
/* Sections */
.section{margin:26px auto}
.section h2{margin:0 0 14px;font-size:26px;letter-spacing:-.3px}
.section .lede{margin:-6px 0 14px;color:var(--muted);max-width:80ch}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}
.product-card{
  display:flex;flex-direction:column;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--card);
  transition:.2s ease;
}
.product-card:hover{box-shadow:var(--shadow);transform:translateY(-1px)}
.thumb{
  height:170px;
  display:grid;place-items:center;
  background:linear-gradient(180deg, #f7fafc, #f2f6fb);
}
.thumb svg{width:120px;height:120px}
.p-body{padding:14px}
.p-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.pill-mini{font-size:12px;padding:6px 10px;border-radius:999px;background:rgba(25,164,99,.12);color:#0f5132;font-weight:800}
.p-title{margin:8px 0 8px;font-size:16px;line-height:1.3}
.p-desc{margin:0;color:var(--muted);font-size:13px}
.p-price{margin-top:10px;font-weight:900;color:var(--brand);font-size:18px}
.p-actions{margin-top:auto;display:flex;gap:10px;padding:12px;border-top:1px solid var(--border);background:#fff}
.btn-small{
  flex:1;
  padding:10px 12px;border-radius:12px;border:0;cursor:pointer;
  background:var(--brand);color:#fff;font-weight:900;
}
.btn-small.alt{background:#eef2f6;color:var(--fg)}
/* Trust strip */
.trust{
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}
.trust .item{
  display:flex;align-items:center;gap:10px;
  padding:10px;border-radius:14px;background:#fff;border:1px solid var(--border);
}
.trust .item svg{width:18px;height:18px;color:var(--brand)}
.trust strong{display:block;font-size:14px;line-height:1.2}
.trust span{display:block;font-size:12px;color:var(--muted)}
/* Realisations */
.work-card{padding:14px}
.work-img{
  height:170px;border-radius:14px;border:1px solid var(--border);
  background:
    radial-gradient(380px 120px at 30% 20%, rgba(25,164,99,.25), transparent 60%),
    radial-gradient(300px 120px at 70% 70%, rgba(245,158,11,.18), transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #f6f7fb 60%, #ffffff 100%);
  display:grid;place-items:center;
}
.work-img svg{width:140px;height:140px}
.work-card h3{margin:12px 0 6px;font-size:16px}
.work-card p{margin:0;color:var(--muted);font-size:13px}
/* Reviews */
.review{
  padding:14px;border:1px solid var(--border);border-radius:var(--radius);
  background:#fff;
}
.stars{color:var(--accent);letter-spacing:1px}
.review p{margin:8px 0 0;color:var(--muted);font-size:13px}
.review .who{margin-top:10px;font-weight:800}
/* FAQ */
.faq{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff}
.faq details{border-top:1px solid var(--border)}
.faq details:first-child{border-top:0}
.faq summary{
  list-style:none;cursor:pointer;
  padding:14px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  font-weight:900;
}
.faq summary::-webkit-details-marker{display:none}
.faq .ans{padding:0 16px 14px;color:var(--muted);font-size:14px}
/* Contact */
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact .box{padding:16px}
.list{display:grid;gap:10px;margin:12px 0 0;padding:0;list-style:none}
.list li{display:flex;gap:10px;align-items:flex-start;color:var(--muted)}
.list svg{width:18px;height:18px;margin-top:2px;color:var(--brand)}
/* Cart drawer (demo) */
.cart{
  position:fixed;top:0;right:0;
  width:390px;max-width:92vw;height:100vh;
  background:#0b1220;color:#e5e7eb;
  border-left:1px solid rgba(255,255,255,.08);
  transform:translateX(100%);
  transition:.25s ease;
  z-index:120;
}
.cart.open{transform:translateX(0)}
.cart header{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08)}
.cart .items{max-height:calc(100vh - 240px);overflow:auto;padding:12px}
.cart .line{display:grid;grid-template-columns:auto 1fr auto;gap:10px;align-items:center;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08)}
.cart .mini{width:44px;height:44px;border-radius:12px;background:rgba(255,255,255,.06);display:grid;place-items:center}
.cart .mini svg{width:26px;height:26px;opacity:.9}
.qty{display:flex;align-items:center;gap:8px}
.qty button{
  background:rgba(255,255,255,.08);
  color:#e5e7eb;border:0;width:26px;height:26px;border-radius:10px;cursor:pointer;
}
.cart footer{position:absolute;left:0;right:0;bottom:0;padding:14px;border-top:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,1) 30%)}
.cart .row{display:flex;justify-content:space-between;margin:8px 0}
.cart .checkout{width:100%}
/* Footer */
#footer{border-top:1px solid var(--border);margin-top:34px;background:#fff}
.footer-inner{padding:20px 0;color:var(--muted);display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.footer-links{display:flex;gap:12px;flex-wrap:wrap}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--fg)}
/* Responsive */
@media (max-width:1000px){
  .hero{grid-template-columns:1fr}
  .brand{min-width:auto}
  .header-actions{min-width:auto}
  .trust{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
}
@media (max-width:640px){
  .menu{display:none}
  .h1{font-size:30px}
}
