 :root {
      --olive-deep:   #4a5e2a;
      --olive-mid:    #6b8031;
      --olive-light:  #8fa84a;
      --olive-pale:   #eef3e2;
      --olive-muted:  #d4dfb8;
      --white:        #ffffff;
      --text-dark:    #1c2410;
      --text-body:    #4a5240;
    }

    * { box-sizing: border-box; }

    /* body {
      font-family: 'Inter', sans-serif;
      color: var(--text-body);
      background: var(--white);
    } */

    body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background: var(--white);

  padding-top: 80px; /* Ajuste selon la hauteur réelle de la navbar */
}

    h1, h2, h3, h4 {
      font-family: 'Sora', sans-serif;
      color: var(--text-dark);
    }

    /* ── NAVBAR ── */
    /* .navbar {
      background: var(--white);
      border-bottom: 1px solid var(--olive-muted);
      padding: 0.75rem 1.5rem;
    } */

    .navbar {
  position: fixed;      /* Navbar toujours visible */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: var(--white);
  border-bottom: 1px solid var(--olive-muted);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--text-dark) !important;
    }
    .brand-icon {
      width: 38px; height: 38px;
      background: var(--olive-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .brand-icon svg { color: #fff; }
    .brand-sub {
      font-size: 0.62rem;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--olive-mid);
      display: block;
      text-transform: uppercase;
      margin-left: 15px; /* décale vers la droite */
    }
    .nav-link {
      color: var(--text-body) !important;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.4rem 0.9rem !important;
      border-radius: 6px;
      transition: background 0.2s;
    }
    .nav-link:hover { background: var(--olive-pale); }
    .nav-link.active {
      background: var(--olive-pale);
      color: var(--olive-deep) !important;
    }
    .btn-admin {
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.4rem 1rem;
      border: 1.5px solid var(--olive-mid);
      border-radius: 8px;
      color: var(--olive-mid) !important;
      background: transparent;
      display: flex; align-items: center; gap: 0.4rem;
      transition: all 0.2s;
    }
    .btn-admin:hover { background: var(--olive-pale); }

    /* ── HERO ── */
    .hero {
      background: var(--olive-pale);
      padding: 4.5rem 0 3.5rem;
      overflow: hidden;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.45rem;
      font-size: 0.8rem; font-weight: 600;
      color: var(--olive-mid);
      background: var(--white);
      border: 1.5px solid var(--olive-muted);
      border-radius: 20px;
      padding: 0.3rem 0.9rem;
      margin-bottom: 1.5rem;
    }
    .hero-badge svg { color: var(--olive-mid); }
    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.12;
      color: var(--text-dark);
    }
    .hero h1 span { color: var(--olive-mid); }
    .hero p.lead {
      color: var(--text-body);
      font-size: 1.05rem;
      line-height: 1.65;
      max-width: 430px;
    }
    .btn-primary-olive {
      background: var(--olive-mid);
      color: #fff;
      border: none;
      padding: 0.7rem 1.6rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary-olive:hover {
      background: var(--olive-deep);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-outline-olive {
      background: transparent;
      border: 2px solid var(--olive-mid);
      color: var(--olive-mid);
      padding: 0.65rem 1.4rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.2s;
    }
    .btn-outline-olive:hover {
      background: var(--olive-pale);
      color: var(--olive-deep);
    }

    .hero-img-wrap {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(74,94,42,0.18);
      aspect-ratio: 16/10;
      background: var(--olive-muted);
      position: relative;
    }
    .hero-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1rem;
      color: var(--olive-deep);
      background: linear-gradient(135deg, var(--olive-muted), var(--white));
    }
    .hero-img-placeholder svg { opacity: 0.4; }

    /* ── STATS ── */
    .hero-stats { margin-top: 2.5rem; }
    .stat-item {
      display: flex; flex-direction: column; align-items: center;
      gap: 0.3rem;
    }
    .stat-icon {
      width: 38px; height: 38px;
      background: var(--white);
      border-radius: 10px;
      border: 1.5px solid var(--olive-muted);
      display: flex; align-items: center; justify-content: center;
      color: var(--olive-mid);
    }
    .stat-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--olive-deep);
    }

    /* ── CATALOGUE ── */
    .section-catalogue {
      padding: 4rem 0;
      background: var(--white);
    }
    .section-eye {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--olive-mid);
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
    }
    .product-card {
      border: 1.5px solid var(--olive-muted);
      border-radius: 14px;
      padding: 1.4rem;
      background: var(--white);
      transition: box-shadow 0.2s, transform 0.2s;
      height: 100%;
    }
    .product-card:hover {
      box-shadow: 0 8px 28px rgba(74,94,42,0.12);
      transform: translateY(-3px);
    }
    .product-icon {
      width: 52px; height: 52px;
      background: var(--olive-pale);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: var(--olive-mid);
      margin-bottom: 1rem;
    }
    .product-tag {
      font-size: 0.72rem;
      font-weight: 600;
      background: var(--olive-pale);
      color: var(--olive-mid);
      border-radius: 20px;
      padding: 0.2rem 0.7rem;
      display: inline-block;
      margin-bottom: 0.6rem;
    }
    .product-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }
    .product-desc { font-size: 0.85rem; color: var(--text-body); }
    .product-price {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--olive-deep);
      margin-top: 1rem;
    }
    .btn-add {
      font-size: 0.82rem;
      font-weight: 600;
      background: var(--olive-pale);
      color: var(--olive-mid);
      border: none;
      padding: 0.4rem 1rem;
      border-radius: 8px;
      transition: background 0.2s;
      margin-top: 0.5rem;
    }
    .btn-add:hover { background: var(--olive-muted); color: var(--olive-deep); }

    /* ── WHY US ── */
    .section-why {
      background: var(--olive-pale);
      padding: 4rem 0;
    }
    .why-card {
      background: var(--white);
      border-radius: 14px;
      padding: 1.6rem;
      height: 100%;
      border: 1.5px solid var(--olive-muted);
    }
    .why-icon {
      width: 48px; height: 48px;
      background: var(--olive-mid);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      margin-bottom: 1rem;
    }
    .why-card h5 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.4rem;
    }
    .why-card p { font-size: 0.87rem; color: var(--text-body); margin: 0; }

    /* ── CTA BAND ── */
    .cta-band {
      background: var(--olive-deep);
      padding: 3.5rem 0;
      color: #fff;
    }
    .cta-band h2 {
      color: #fff;
      font-size: clamp(1.5rem, 3vw, 2rem);
    }
    .cta-band p { color: var(--olive-muted); font-size: 0.95rem; }
    .btn-white {
      background: #fff;
      color: var(--olive-deep);
      font-weight: 700;
      padding: 0.7rem 1.8rem;
      border-radius: 10px;
      border: none;
      font-size: 0.95rem;
      transition: opacity 0.2s;
    }
    .btn-white:hover { opacity: 0.9; color: var(--olive-deep); }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark);
      color: #aab89a;
      padding: 2.5rem 0 1.5rem;
      font-size: 0.85rem;
    }
    footer .brand-name { color: #fff; font-family: 'Sora', sans-serif; font-weight: 700; }
    footer a { color: #aab89a; text-decoration: none; }
    footer a:hover { color: #fff; }
    .footer-divider { border-color: #2e3a20; margin: 1.5rem 0 1rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 767px) {
      .hero { padding: 3rem 0 2.5rem; }
      .hero-img-wrap { margin-top: 2rem; }
      .hero p.lead { max-width: 100%; }
    }


.brand-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.logo-brand {
    width: 70px;
    height: auto;
}

