* { box-sizing: border-box; } body {margin: 0;}
  /* ═══════════════════════════════════════════════════
  HEADER — global.css
  Ligne graphique : Plus Jakarta Sans · vert #2D6A4F
  ═══════════════════════════════════════════════════ */
  /* ── Navbar principale ── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #E0DDD8;
  }
  #navbar-main {
    padding: 0;
    height: 58px;
    align-items: stretch;
  }
  #navbar-main .container-fluid {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
  /* ── Logo ── */
  .site-logo {
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
    letter-spacing: -.3px;
    text-decoration: none;
    color: #1A1A1A;
    margin-right: 36px;
    padding: 0;
    flex-shrink: 0;
  }
  .site-logo span {
    color: #2D6A4F;
  }
  /* Logo image (quand on switche) */
  .site-logo.site-logo--img img {
    display: block;
    height: 36px;
    width: auto;
  }
  /* ── Menu principal (injecté par <mainmenu>) ── */
  .main-menu-wrapper {
    flex: 1;
    /* On neutralise les ordres Bootstrap */
    order: unset !important;
  }
  .main-menu-wrapper .main-menu,
  .main-menu-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .main-menu-wrapper .main-menu li a,
  .main-menu-wrapper ul li a {
    display: block;
    text-decoration: none;
    color: #888;
    font-size: .85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    transition: color .18s, background .18s;
    white-space: nowrap;
  }
  .main-menu-wrapper .main-menu li a:hover,
  .main-menu-wrapper ul li a:hover {
    color: #1A1A1A;
    background: rgba(0, 0, 0, .04);
  }
  /* ── Actions droite ── */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    order: unset !important;
    flex-shrink: 0;
  }
  /* Espace Perso */
  .header-btn-account {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, .04);
    border-radius: 50px;
    padding: 7px 16px 7px 8px;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    color: #1A1A1A;
    transition: background .2s;
    white-space: nowrap;
  }
  .header-btn-account:hover {
    background: rgba(0, 0, 0, .08);
    color: #1A1A1A;
  }
  /* Bouton Panier */
  .header-btn-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgb(255, 117, 75);
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
  }
  .header-btn-cart:hover {
    background: #40916C;
    color: #fff;
  }
  /* Badge quantité panier (rendu par <cartminicart>) */
  .header-btn-cart .counter.qty {
    background: rgba(255, 255, 255, .25);
    border-radius: 50px;
    padding: 1px 7px;
    font-size: .72rem;
    font-weight: 800;
    min-width: 22px;
    text-align: center;
  }
  /* ── Burger (tablette + mobile) ── */
  .site-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
    margin-left: 4px;
  }
  .site-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: all .25s;
  }
  /* ── Menu mobile (collapse Bootstrap) ── */
  .site-mobile-menu {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    border-top: 1px solid #E0DDD8;
    padding: 16px 24px 24px;
  }
  .site-mobile-menu .main-menu,
  .site-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-mobile-menu .main-menu li a,
  .site-mobile-menu ul li a {
    display: block;
    text-decoration: none;
    color: #1A1A1A;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid #E0DDD8;
  }
  .site-mobile-menu .main-menu li:last-child a,
  .site-mobile-menu ul li:last-child a {
    border-bottom: none;
  }
  .site-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .site-mobile-btn-cart {
    display: block;
    width: 100%;
    background: #2D6A4F;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 13px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
  }
  .site-mobile-btn-cart:hover {
    background: #40916C;
    color: #fff;
  }
  .site-mobile-btn-account {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .05);
    color: #1A1A1A;
    text-align: center;
    border-radius: 50px;
    padding: 13px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
  }
  .site-mobile-btn-account:hover {
    background: rgba(0, 0, 0, .09);
  }
  /* ── Minicart offcanvas ── */
  .minicart-wrapper h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    font-family: inherit;
  }
  .minicart-wrapper .free-shipping-label {
    font-size: .78rem;
    font-weight: 600;
    color: #2D6A4F;
  }
  .minicart-wrapper .free-shipping-progressbar,
  .minicart-wrapper .progress {
    height: 4px;
    border-radius: 50px;
    background: #E0DDD8;
    overflow: hidden;
  }
  .minicart-wrapper .free-shipping-progressbar .progress-bar,
  .minicart-wrapper .progress .progress-bar {
    background: #2D6A4F;
  }
  .minicart-wrapper .checkout-btn {
    width: 100%;
    background: #2D6A4F;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px;
    font-size: .92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
    margin-top: 12px;
  }
  .minicart-wrapper .checkout-btn:hover {
    background: #40916C;
  }
  .minicart-wrapper .delete-item-btn {
    background: none;
    border: none;
    color: #888;
    font-size: .75rem;
    cursor: pointer;
    font-family: inherit;
    transition: color .15s;
  }
  .minicart-wrapper .delete-item-btn:hover {
    color: #c0392b;
  }
  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .main-menu-wrapper {
      display: none;
    }
    .header-btn-account {
      display: none;
    }
    .site-burger {
      display: flex;
    }
  }
  @media (max-width: 480px) {
    #navbar-main .container-fluid {
      padding-left: 16px;
      padding-right: 16px;
    }
  }


/* ═══════════════════════════════════════════════════
   FOOTER — global.css
   Scoped : .footer
   Ligne graphique : Plus Jakarta Sans · vert #2D6A4F
═══════════════════════════════════════════════════ */

.footer {
  background: #fff;
  border-top: 1px solid #E0DDD8;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

.footer .container {
  max-width: 1180px;
}

/* ── Titres colonnes ── */
.footer h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #888;
  margin-bottom: 1rem;
}

.footer h5 strong {
  font-weight: 700;
  color: #888;
}

/* ── Liens ── */
.footer a {
  text-decoration: none;
  color: #555;
  font-size: .8rem;
  transition: color .15s;
}

.footer a:hover {
  color: #2D6A4F;
}

.footer p {
  font-size: .8rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ── Bouton cookies ── */
.footer .btn-secondary {
  background: none;
  border: 1px solid #E0DDD8;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  font-family: inherit;
  margin-top: .8rem;
  transition: border-color .2s, color .2s, background .2s;
  box-shadow: none;
}

.footer .btn-secondary:hover {
  background: none;
  border-color: #2D6A4F;
  color: #2D6A4F;
  box-shadow: none;
}

/* ── Newsletter ── */
.footer .leadgen .form-control {
  border: 1px solid #E0DDD8;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .8rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  box-shadow: none;
  background: #fafafa;
  color: #1A1A1A;
}

.footer .leadgen .form-control:focus {
  border-color: #2D6A4F;
  box-shadow: none;
}

.footer .leadgen .btn-primary {
  background: #2D6A4F;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: .85rem;
  padding: 10px;
  transition: background .2s;
  box-shadow: none;
}

.footer .leadgen .btn-primary:not(:disabled):hover {
  background: #40916C;
  box-shadow: none;
}

.footer .leadgen .btn-primary:disabled {
  opacity: .55;
  cursor: not-allowed;
  background: #2D6A4F;
}

.footer .leadgen .form-check-input {
  accent-color: #2D6A4F;
}

.footer .leadgen .form-check-label {
  font-size: .73rem;
  color: #888;
  line-height: 1.4;
}

.footer .leadgen .form-check-label a {
  color: #2D6A4F;
}

/* ── Logos paiement ── */
.footer .img-fluid.mx-1 {
  height: 24px;
  width: auto;
  opacity: .7;
  transition: opacity .2s;
}

.footer .img-fluid.mx-1:hover {
  opacity: 1;
}

/* ── Copyright ── */
.footer small {
  font-size: .75rem;
  color: #888;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .footer .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
