
/* ===== Base / Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Variables ===== */
:root{
  --container: 1120px;
  --pad: clamp(16px, 2vw, 24px);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --green: #5BAA31;
  --dark: #102015;

  --text: #1b1b1b;
  --muted: #667b68;
  --bg: #ffffff;
  --light: #f5faf3;
  --border: #e6efe2;
}

/* ===== Layout ===== */
.container{
  width: min(var(--container), 100% - (var(--pad) * 2));
  margin-inline: auto;
}
section{ padding: 64px 0; scroll-margin-top: 110px; }

.grid{ display: grid; gap: 22px; }
.cols-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.products{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 1024px){
  .cols-3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.products{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px){
  .cols-2, .cols-3{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .cols-2, .cols-3, .grid.products{ grid-template-columns: 1fr; }
}

/* ===== Typography ===== */
h1{
  margin: 0 0 14px;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}
h2{ font-size: 32px; margin: 0 0 10px; }
h3{ margin: 6px 0 4px; font-size: 20px; }
.sub{ color: #636e61; margin: 0 0 26px; }
.lead{ font-size: clamp(16px, 1.8vw, 20px); max-width: 860px; opacity: .95; }
.small{ font-size: 13px; color: #6f7a70; }
.muted{ color: #738678; }
.mt8{ margin-top: 8px; }

/* ===== UI ===== */
.card{
  border: 1px solid #e7efe3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.02);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
  border-color: var(--green);
}
.card .pad{ padding: 18px; }

.pill{
  display: inline-block;
  background: rgba(91,170,49,.12);
  color: var(--green);
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.tag{
  display: inline-block;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.2);
  color: #e9ffe8;
  backdrop-filter: blur(6px);
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn.primary{
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn.primary:hover{ filter: brightness(.95); }
.btn.outline{
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn.outline:hover{
  background: rgba(255,255,255,.08);
  border-color: #fff;
}
/* ===== Catalogue: mobile filters toggle ===== */
.filters-bar{ display:none; }
@media (max-width: 980px){
  .filters-bar{
    display:block;
    position: sticky;
    top: 74px;          
    z-index: 950;
    padding: 10px 0;
    margin: 0 0 12px;          
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .filters-btn{
    width: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap: 10px;

    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    color: #1d381f;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
  }

  .filters-btn:active{ transform: translateY(1px); }
  .filters-btn[aria-expanded="true"]{
    border-color: var(--green);
    box-shadow: 0 10px 24px rgba(91,170,49,.18);
  }

  .filters-ico{ font-size: 18px; line-height: 1; }
}

.sidebar{
  position: sticky;
  top: 82px;
  align-self: start;
}

@media (max-width: 980px){

  .catalog-wrap{
    grid-template-columns: 1fr !important;
  }

  .sidebar{
    display: none;              
    position: fixed;
    inset: 74px 12px 12px 12px;
    overflow: auto;
    z-index: 1200;

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;

    background: #f7fbf6;
    border: 1px solid #e2edde;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .sidebar.is-open{
    display: block;           
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px){
  section{ padding: 40px 0; }
}
@media (max-width: 980px){
  .filters-overlay{
    display:none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 1100;
  }
  .filters-overlay.is-open{ display:block; }

}

/* =========================================================
   HEADER / NAV (ONE SYSTEM)
   ========================================================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e9f0e6;
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}
.brand img{
  height: 64px;
  width: auto;
}
.brand span{
  font-weight: 900;
  font-size: 22px;
  color: var(--green);
  letter-spacing: .4px;
}
@media (max-width: 900px){
  .brand img{ height: 52px; }
  .brand span{ font-size: 18px; }
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{
  font-weight: 700;
  color: #222;
  padding: 10px 6px;
}
.nav a:hover{ color: var(--green); }

.nav-cta{
  background: var(--green);
  color: #fff !important;
  padding: 10px 14px;
  border-radius: 12px;
}
.nav-cta:hover{ filter: brightness(.95); }

.menu-btn{
  display:none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

/* Dropdown */
.dropdown{ position: relative; }
.drop-btn{
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  color: #222;
  padding: 10px 6px;
  cursor: pointer;
}
.drop-btn:hover{ color: var(--green); }

.drop-panel{
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 320px;
  background: #fff;
  border: 1px solid #e7efe3;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  display: none;
  padding: 8px;
}
.drop-panel a{
  display:block;
  padding: 10px;
  border-radius: 8px;
  color: #1f2a1f;
}
.drop-panel a:hover{ background: #f6fbf4; }

.dropdown:hover .drop-panel{ display:block; }
/* mobile click mode (avec JS dropdown.open) */
.dropdown.open .drop-panel{ display:block; }
.no-scroll { overflow: hidden; }

/* Mobile Nav */
@media (max-width: 900px){
  .menu-btn{ display:inline-flex; }
  .nav{
    position: fixed;
    inset: 74px 12px auto 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: grid;
    gap: 10px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .drop-panel{
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0;
  }
  .drop-panel a{ padding: 10px 6px; }
}

/* =========================================================
   HERO 
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  min-height: 530px;
  height: clamp(360px, 52vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%; 
  z-index: 0;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.25) 50%,
    rgba(0,0,0,.10) 100%);
  z-index:1;
}
.hero h1,
.hero .lead,
.hero .tag,
.hero .hero-list{
  text-shadow: 0 6px 22px rgba(0,0,0,.55);
}

.hero h1{
  text-shadow: 0 10px 30px rgba(0,0,0,.65);
}

.hero .inner{
  position: relative;
  z-index: 2;
  max-width: 920px;

  padding-top: clamp(56px, 6vh, 84px);
  padding-bottom: clamp(56px, 7vh, 96px); 
}

@media (max-width: 768px){
  .hero{
    height: clamp(450px, 58vh, 520px); 
  }
  .hero-bg{
    object-position: 50% 30%;
  }
  .hero::after{
    background: linear-gradient(0deg,
      rgba(0,0,0,.70) 0%,
      rgba(0,0,0,.40) 60%,
      rgba(0,0,0,.15) 100%);
  }
}


/* Hero extras */
.hero-list{
  margin: 16px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.hero-cta{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 720px){
  .hero-cta{ flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-cta .btn{ width: 100%; text-align: center; }
}

/* =========================================================
   CAROUSEL (ONE VERSION)
   ========================================================= */
.value-carousel{
  background: #f6fbf4;
  padding: 10px 0 8px;
  overflow: hidden;
}
.carousel-track{
  display: flex;
  gap: 30px;
  transition: transform .8s ease-in-out;
  will-change: transform;
}
.value-slide{
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  padding: 8px;
  flex: 0 0 calc(50% - 15px);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2eadf;
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-slide:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(91,170,49,.15);
}
.icon-wrap{
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  font-size: 40px;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(91,170,49,.25);
}
.text-wrap h3{ margin: 0 0 8px; font-size: 22px; font-weight: 800; color: #20321f; }
.text-wrap p{ margin: 0; color: #4a5a4a; line-height: 1.5; font-size: 15.5px; max-width: 400px; }

.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}
.carousel-dots .dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: #cfd8cf;
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.carousel-dots .dot.active{
  background: var(--green);
  transform: scale(1.2);
  box-shadow: 0 0 0 5px rgba(91,170,49,.15);
}
@media (max-width: 900px){
  .value-slide{ flex: 0 0 100%; }
}

/* =========================================================
   PRODUCTS CARDS
   ========================================================= */
.card.product .media{
  position: relative;
  overflow: hidden;
  height: 240px;
  background: #f6f8f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card.product .media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.card.product:hover .media img{ transform: scale(1.06); }

.card.product .body{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}
.pill.cat{ display:inline-block; padding: 6px 10px; border-radius: 999px; font-weight: 800; font-size: 12px; }
.pill.cat.epi{ background: rgba(62,134,253,.12); color: #2a64d9; }
.pill.cat.hyg{ background: rgba(91,170,49,.12); color: var(--green); }
.pill.cat.d4{ background: rgba(0,0,0,.08); color: #2b2b2b; }
.card.product h3{ margin: 2px 0 4px; font-size: 18px; }
.card.product .small{ color: #6a7569; }

.card.product .foot{
  margin-top: auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.card.product .foot .cta{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-weight: 800;
  color: #1d381f;
}
.card.product .foot .cta svg{ width: 18px; height: 18px; }

.catalog-cta{ text-align:center; margin-top: 18px; }
.catalog-cta .btn{
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  border: 2px solid var(--green);
  color: var(--green);
}
.catalog-cta .btn:hover{ background: var(--green); color: #fff; }

/* =========================================================
   LISTS / TABLE
   ========================================================= */
.list{
  columns: 2;
  column-gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.list li{
  break-inside: avoid;
  padding-left: 20px;
  position: relative;
  margin: 6px 0;
}
.list li::before{
  content: '•';
  color: var(--green);
  position: absolute;
  left: 0;
}

.tick-list, .dash, .steps{ list-style:none; margin:0; padding:0; }
.tick-list li{
  position: relative;
  margin: 10px 0;
  padding: 12px 16px 12px 40px;
  border-radius: 10px;
  background: rgba(91,170,49,.04);
  transition: background .2s;
}
.tick-list li:hover{ background: rgba(91,170,49,.08); }
.tick-list li::before{
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 14px;
  top: 12px;
  font-weight: 900;
}

.dash li{
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}
.dash li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.steps{ counter-reset: s; }
.steps li{
  counter-increment: s;
  margin: 10px 0;
  padding-left: 34px;
  position: relative;
}
.steps li::before{
  content: counter(s);
  position: absolute;
  left: 0;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e7efe3;
  border-radius: 14px;
  overflow: hidden;
}
.table th, .table td{
  padding: 10px 12px;
  border-bottom: 1px solid #e7efe3;
  text-align: left;
}
.table th{ background: #f3f9f0; }

/* =========================================================
   SECTIONS (banner / stats / sectors / 4D / faq)
   ========================================================= */
.banner{
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.stat-grid{ gap: 24px; margin: 40px 0; }
.stat{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
  border-color: var(--green);
}
.stat .big{ font-size: 24px; font-weight: 800; margin-bottom: 8px; color: #1d381f; }
.stat .muted{ font-size: 15px; color: var(--muted); line-height: 1.5; }

/* Sectors */
.sector-grid{ gap: 18px; }
.sector-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media (max-width:900px){ .sector-img{ height: 220px; } }

/* 4D */
.fourD{
  padding: 70px 0;
  background: linear-gradient(180deg, #f7fbf7 0%, #ffffff 100%);
}
.fourD-grid{
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}
@media (max-width:1024px){ .fourD-grid{ grid-template-columns: 1fr; } }

.fourD-copy .kicker{
  display: inline-block;
  background: #e8f6e7;
  color: #2a5720;
  font-weight: 800;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 12px;
}
.fourD-copy h2{ margin: 0 0 8px; font-size: 34px; line-height: 1.15; }
.fourD-copy h2 .accent{ color: var(--green); }
.features{ display: grid; gap: 12px; margin: 18px 0 22px; }
.feat{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 22px rgba(16,32,21,.05);
}
.feat .ico{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: #f0f7ee;
  border: 1px solid #def0de;
  border-radius: 10px;
  font-size: 20px;
}
.feat h4{ margin: 2px 0 2px; font-size: 16px; }
.feat p{ margin: 0; color: #586a5c; font-size: 14px; }

.visual-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e7efe3;
  box-shadow: 0 16px 36px rgba(0,0,0,.08);
}
.visual-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .8s ease;
}
.visual-card:hover img{ transform: scale(1.06); }
.visual-card .chips{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(91,170,49,.25);
  color: #1e2c22;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

/* FAQ */
.faq details{
  background: #f9fbf8;
  border: 1px solid #e3ecdf;
  border-radius: 12px;
  padding: 12px;
  margin: 8px 0;
}
.faq summary{ cursor: pointer; font-weight: 800; }

/* Gallery img */
.gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e7efe3;
}
.trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.trust-label{
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.trust-list{
  font-size: 14px;
  font-weight: 800;       
  color: #1d381f;
}

.trust-list .sep{
  opacity: .55;
  margin: 0 6px;
}

/* mobile : plus compact */
@media (max-width: 480px){
  .trust-list{ font-size: 13px; }
  .trust{ gap:8px; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-hero{ color:#fff; background-size: cover; background-position: center; }
.contact-hero .container{ padding: 70px 0; }

.contact-wrap{ padding: 40px 0; }
.contact-grid{ align-items: flex-start; grid-template-columns: 1fr 2fr; }
@media (max-width:900px){ .contact-grid{ grid-template-columns: 1fr; } }

.info-cards{ display: grid; gap: 12px; }
.info-card{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background: #f6fbf4;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.info-card .ico{ font-size: 22px; line-height: 1; }
.info-title{ font-weight: 800; margin-bottom: 2px; }

.contact-form .form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form .field{ display:flex; flex-direction: column; gap: 6px; }
.contact-form .field.full{ grid-column: 1/-1; }

.contact-form input,
.contact-form select,
.contact-form textarea{
  border: 1px solid #dfe8da;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
}
.contact-form textarea{ resize: vertical; }
.contact-form .consent label{
  display:flex;
  gap: 8px;
  align-items:flex-start;
}
@media (max-width:900px){
  .contact-form .form-grid{ grid-template-columns: 1fr; }
}
body { overflow-x: hidden; }

@media (max-width: 900px){
  .contact-grid{
    display: flex;
    flex-direction: column;
  }
  .contact-grid > div:first-child{
    order: 2;
  }
  .contact-grid > div:last-child{
    order: 1; 
  }
}
@media (max-width:900px){
.contact-form select,
.contact-form textarea{
  width: 100%;
  font-size: 16px; 
  line-height: 1.2;
}

.contact-form select{
    font-size: 16px !important;   
  line-height: 1.4;            
  height: 48px;     
  appearance: none;
  -webkit-appearance: none;

  background-color: #fff;
  padding: 12px 42px 12px 12px;
  border-radius: 12px;
  border: 1px solid #dfe8da;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23667b68' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
}
.contact-form .hint{
  margin: 6px 0 0;
  font-size: 12.5px;
  color: #6f7a70;
}

.contact-form select option{
  font-size: 16px;
    line-height: 1.4;
}





/* =========================================================
   FOOTER + FLOATING
   ========================================================= */
.site-footer{
  background: #636e61;
  color: #fff;
  position: relative;
}
.footer-grid{
  display: grid;
  gap: 28px;
  padding: 48px 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width:1024px){ .footer-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width:640px){ .footer-grid{ grid-template-columns: 1fr; } }

.site-footer h4{
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.site-footer h4::after{
  content:"";
  display:block;
  width: 140px;
  height: 3px;
  background: var(--green);
  margin-top: 8px;
  border-radius: 2px;
}
.site-footer p, .site-footer li{ color: #e7f0ff; line-height: 1.6; }

.icon-line{ display:flex; align-items:center; gap:10px; }
.icon-line svg{ width: 18px; height: 18px; fill: #e7f0ff; opacity: .9; }

.foot-list{ list-style:none; padding:0; margin:0; }
.foot-list li{ margin: 8px 0; }

.socials{ display:flex; gap: 12px; margin-top: 6px; }
.s-ico{
  display:grid;
  place-items:center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--green);
  border: 1px solid rgba(255,255,255,.15);
}
.s-ico svg{ width: 20px; height: 20px; fill:#fff; }

.footer-bottom{
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 12px 0;
  font-size: 14px;
}
.footer-bottom a{ color: #dff4ff; text-decoration: underline; }



/* =========================================================
   REVEAL (GLOBAL — pas dans @media)
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.5,0,0,1);
}
.reveal.active{ opacity: 1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: .1s; }
.reveal-delay-2{ transition-delay: .2s; }
.reveal-delay-3{ transition-delay: .3s; }
/* =========================================================
   PILL NAV (secteurs)
   ========================================================= */
.pill-nav{
  position: sticky;
  top: 88px;               
  z-index: 900;

  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;

  padding: 14px 0;
  margin: 0 auto 26px;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* style “pill” */
.pill-nav a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: #fff;
  border: 1px solid var(--border);

  font-weight: 800;
  color: #1d381f;

  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.pill-nav a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(91,170,49,.15);
  border-color: var(--green);
  color: var(--green);
}

/* accessibilité clavier */
.pill-nav a:focus-visible{
  outline: 3px solid rgba(91,170,49,.35);
  outline-offset: 3px;
}

/* mobile : bande scrollable horizontale */
@media (max-width: 768px){
  .pill-nav{
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px 14px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .pill-nav a{
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
.pill-nav a.active{
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(91,170,49,.25);
}
 /* ====== catalogue extras ====== */
    .catalog-wrap {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 18px
    }

    .sidebar {
      position: sticky;
      top: 82px;
      align-self: start;
      background: #f7fbf6;
      border: 1px solid #e2edde;
      border-radius: 16px;
      padding: 14px
    }

    .sidebar h3 {
      margin: 6px 0 10px
    }

    .filter-group {
      border-top: 1px dashed #d8e7d6;
      padding-top: 10px;
      margin-top: 10px
    }

    .filter-group .group-title {
      font-weight: 800;
      margin-bottom: 6px
    }

    .filter-list {
      list-style: none;
      margin: 0;
      padding: 0
    }

    .filter-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 6px 0
    }

    .filter-list input {
      accent-color: #5BAA31
    }

    .toolbar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 12px
    }

    .toolbar .search {
      flex: 1;
      min-width: 220px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .toolbar input[type="search"] {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #e2e8e4;
      border-radius: 12px
    }

    .toolbar select {
      padding: 10px 12px;
      border: 1px solid #e2e8e4;
      border-radius: 12px;
      background: #fff
    }

    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px
    }

    @media(max-width:1100px) {
      .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
      }
    }

    @media(max-width:640px) {
      .catalog-grid {
        grid-template-columns: 1fr
      }
    }

    .product-card {
      display: flex;
      flex-direction: column;
      border: 1px solid #e6efe2;
      background: #fff;
      border-radius: 16px;
      overflow: hidden
    }

    .product-media {
      aspect-ratio: 4/3;
      background: #f0f5f0;
      display: grid;
      place-items: center
    }

    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: contain
    }

    .product-body {
      padding: 12px
    }

    .product-body h4 {
      margin: 2px 0 4px;
      font-size: 16px
    }

    .product-body .ref {
      font-weight: 800;
      color: #2f4a30
    }

    .product-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: 8px
    }

    .product-tags .pill {
      background: #eef7ea;
      border: 1px solid #dbead6
    }

    .empty {
      padding: 18px;
      border: 1px dashed #d9e9d6;
      border-radius: 12px;
      background: #fbfdf9
    }
    .chk{ display:flex; gap:10px; align-items:center; cursor:pointer; }
.chk input{ width:18px; height:18px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.bg-light{ background: var(--light); }
