/* Super Line — palette verte douce, typographie Outfit (Google Fonts) */

:root {
  --green-950: #0a2418;
  --green-900: #123d28;
  --green-800: #1a5236;
  --green-700: #236b45;
  --green-600: #2d8659;
  --green-500: #3a9d6c;
  --green-200: #b8dfc8;
  --green-100: #d8eee3;
  --green-50: #ecf6ef;
  --mint: #e4f3ea;
  --cream: #f7fbf8;

  --bg: #dff0e6;
  --bg-deep: #cfe8d8;
  --card: rgba(255, 255, 255, 0.92);
  --card-solid: #f4faf6;
  --text: #142920;
  --muted: #4a6b5a;
  --accent: var(--green-700);
  --accent-hover: var(--green-800);
  --accent-soft: rgba(35, 107, 69, 0.12);
  --border: #b5d9c4;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(18, 61, 40, 0.08);
  --shadow-hover: 0 14px 40px rgba(18, 61, 40, 0.12);
  --wa: #25d366;
  --wa-hover: #1ebe57;
  --wa-glow: rgba(37, 211, 102, 0.45);
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.site-page {
  position: relative;
  z-index: 0;
  min-height: 100vh;
}

/* Fond dégradé + motif léger (sans image externe) */
.site-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    165deg,
    var(--mint) 0%,
    var(--bg) 38%,
    var(--bg-deep) 72%,
    #c8e4d4 100%
  );
}

.site-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(35, 107, 69, 0.11) 1px,
    transparent 0
  );
  background-size: 28px 28px;
  pointer-events: none;
}

html {
  overflow-x: hidden;
}

body.site-page {
  margin: 0;
  font-family: Outfit, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body.site-page.nav-overlay-open,
body.site-page.wa-choice-open {
  overflow: hidden;
  touch-action: none;
}

a {
  color: var(--green-700);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: var(--green-800);
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  box-sizing: border-box;
}

.site-header {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(244, 250, 246, 0.88) 100%
  );
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(18, 61, 40, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--green-900);
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.brand:hover {
  text-decoration: none;
  color: var(--green-800);
}

/* Mobile : logo ~3× (hauteur / plafond largeur) vs ancienne version mobile */
.brand-logo {
  max-height: 204px;
  max-width: min(92vw, 720px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(18, 61, 40, 0.12));
}

@media (min-width: 768px) {
  .brand-logo {
    max-height: 84px;
    max-width: min(320px, 38vw);
  }
}

@media (min-width: 1100px) {
  .brand-logo {
    max-height: 92px;
    max-width: 340px;
  }
}

.brand-text {
  font-size: 1.12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(46vw, 11rem);
}

@media (min-width: 768px) {
  .brand-text {
    max-width: none;
    white-space: normal;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  gap: 0.5rem 0.75rem;
  flex-wrap: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  justify-content: flex-start;
}

.nav-primary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem 0.85rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(18, 61, 40, 0.08);
}

.nav-burger-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: var(--green-900);
  border-radius: 1px;
}

@media (max-width: 767px) {
  /* Grille : logo + burger sur la 1re ligne ; Panier + WhatsApp en dessous, bien visibles */
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 0.65rem 0.75rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    max-width: 100%;
  }

  .header-inner .brand-logo {
    max-width: min(100%, calc(100vw - 5.35rem));
  }

  .nav-main {
    display: contents;
  }

  .nav-burger {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    margin-top: 0.2rem;
    width: 3.55rem;
    height: 3.55rem;
    min-width: 3.55rem;
    min-height: 3.55rem;
    gap: 7px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, #2f9d5c 0%, #1a5c38 100%);
    box-shadow: 0 6px 22px rgba(25, 100, 60, 0.45);
    transition: filter 0.18s ease, transform 0.15s ease, box-shadow 0.2s ease;
  }

  .nav-burger:hover {
    filter: brightness(1.08);
    box-shadow: 0 8px 26px rgba(25, 100, 60, 0.5);
  }

  .nav-burger:active {
    transform: scale(0.97);
  }

  .nav-burger:focus-visible {
    outline: 2px solid var(--green-600);
    outline-offset: 3px;
  }

  .nav-burger .nav-burger-bar {
    width: 1.55rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
  }

  .nav-desktop {
    display: none !important;
  }

  .nav-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-left: 0 !important;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .nav-actions .nav-cart {
    flex: 1 1 58%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.85rem 0.65rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #2f9d5c 0%, #1a5c38 100%);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 6px 22px rgba(25, 100, 60, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .nav-actions .nav-cart:hover {
    color: #fff !important;
    background: linear-gradient(145deg, #38aa68 0%, #1f6d42 100%);
    filter: brightness(1.03);
  }

  .nav-actions .nav-cart .cart-badge {
    background: rgba(255, 255, 255, 0.28);
    color: #fff;
    box-shadow: none;
    font-size: 0.78rem;
  }

  .nav-actions .nav-wa-icon {
    flex: 1 1 42%;
    width: auto;
    max-width: none;
    min-width: 0;
    min-height: 3.45rem;
    height: auto;
    align-self: stretch;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  }

  .nav-actions .nav-wa-svg {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 768px) {
  .header-inner {
    display: flex;
  }

  .nav-main {
    display: flex;
  }

  .nav-burger {
    display: none !important;
  }
}

.nav-link {
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--green-600);
  text-decoration: none;
  background: var(--accent-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-summary {
  list-style: none;
  cursor: pointer;
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 1.6rem 0.35rem 0.55rem;
  border-radius: 8px;
  position: relative;
  user-select: none;
}

.nav-dropdown-summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-summary::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  transform: rotate(45deg);
  opacity: 0.85;
}

.nav-dropdown[open] > .nav-dropdown-summary {
  background: var(--accent-soft);
  color: var(--green-800);
}

.nav-dropdown[open] > .nav-dropdown-summary::after {
  margin-top: 0.05rem;
  transform: rotate(225deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: min(280px, calc(100vw - 2rem));
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 0.4rem;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  z-index: 40;
}

.nav-dropdown-item {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: rgba(35, 107, 69, 0.1);
  color: var(--green-800);
  text-decoration: none;
}

.nav-dropdown-item.nav-dropdown-anchor {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
  padding-bottom: 0.65rem;
  border-radius: 8px 8px 0 0;
}

.nav-dropdown-item.nav-dropdown-anchor:hover {
  color: var(--green-800);
}

.nav-dropdown-item--thumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-cat-thumb {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--border);
}

/* Icône WhatsApp (header) — ouvre le choix de message */
button.nav-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 2px 12px var(--wa-glow);
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

button.nav-wa-icon:hover {
  filter: brightness(1.06);
  box-shadow: 0 4px 18px var(--wa-glow);
  transform: translateY(-1px);
}

button.nav-wa-icon:active {
  transform: translateY(0);
}

button.nav-wa-icon:focus-visible {
  outline: 2px solid var(--wa);
  outline-offset: 3px;
}

.nav-wa-svg {
  display: block;
}

.nav-cart .cart-badge {
  display: inline-block;
  min-width: 1.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 8px rgba(35, 107, 69, 0.35);
}

/* Menu mobile (hamburger) — panneau centré */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  box-sizing: border-box;
}

.nav-mobile-overlay[hidden] {
  display: none !important;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 41, 28, 0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 0;
  cursor: pointer;
}

.nav-mobile-dialog {
  position: relative;
  z-index: 1;
  width: min(22rem, calc(100% - 1.5rem));
  max-height: min(86vh, 32rem);
  overflow: hidden auto;
  pointer-events: auto;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 64px rgba(10, 36, 24, 0.28);
}

.nav-mobile-card {
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem 1.1rem 1.15rem;
}

.nav-mobile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(181, 217, 196, 0.65);
}

.nav-mobile-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

.nav-mobile-close {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 10px;
  background: rgba(35, 107, 69, 0.08);
  color: var(--green-800);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-close:hover {
  background: rgba(35, 107, 69, 0.14);
}

.nav-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-mobile-link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-sizing: border-box;
}

.nav-mobile-link:hover {
  background: rgba(35, 107, 69, 0.07);
  text-decoration: none;
  color: var(--green-800);
}

.nav-mobile-link-soft {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-mobile-link-soft:hover {
  color: var(--green-800);
}

.nav-mobile-section-label {
  margin: 0.5rem 0 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(74, 107, 90, 0.75);
}

.nav-mobile-muted-count {
  font-size: 0.82em;
  font-weight: 500;
  color: rgba(74, 107, 90, 0.72);
  letter-spacing: 0.01em;
}

.nav-mobile-link-cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-mobile-cat-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

.nav-mobile-cat-ico img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  display: block;
}

.nav-mobile-cat-txt {
  flex: 1;
  min-width: 0;
}

/* Tuile WhatsApp (menu mobile) — icône seule */
.nav-mobile-wa-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 140, 126, 0.06) 100%);
  color: var(--wa);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-mobile-wa-tile:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.55);
  color: var(--wa-hover);
}

.nav-mobile-wa-tile:active {
  transform: scale(0.98);
}

.nav-mobile-wa-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 2px 10px var(--wa-glow);
}

.nav-mobile-wa-ico svg {
  display: block;
}

/* Modale choix message WhatsApp (centrée) */
.wa-choice-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  box-sizing: border-box;
}

.wa-choice-overlay[hidden] {
  display: none !important;
}

.wa-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 38, 28, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  cursor: pointer;
}

.wa-choice-dialog {
  position: relative;
  z-index: 1;
  width: min(26rem, calc(100% - 1.5rem));
  pointer-events: auto;
  animation: wa-choice-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wa-choice-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-choice-card {
  border-radius: 20px;
  background: linear-gradient(165deg, #fff 0%, #f4faf6 55%, #eef6f1 100%);
  border: 1px solid rgba(58, 157, 108, 0.22);
  box-shadow: 0 24px 56px rgba(25, 80, 55, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
}

.wa-choice-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid rgba(58, 157, 108, 0.12);
}

.wa-choice-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.wa-choice-brand-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 4px 14px var(--wa-glow);
}

.wa-choice-title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.wa-choice-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 10px;
  background: rgba(58, 157, 108, 0.1);
  color: var(--green-800);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.wa-choice-close:hover {
  background: rgba(58, 157, 108, 0.2);
  color: var(--green-900);
}

.wa-choice-lead {
  margin: 0;
  padding: 0.85rem 1.25rem 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.wa-choice-grid {
  display: grid;
  gap: 0.75rem;
  padding: 0.5rem 1.15rem 1.2rem;
}

@media (min-width: 480px) {
  .wa-choice-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.wa-choice-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.2rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.wa-choice-item:hover {
  border-color: rgba(58, 157, 108, 0.45);
  box-shadow: 0 8px 24px rgba(35, 107, 69, 0.12);
  transform: translateY(-2px);
}

.wa-choice-item:active {
  transform: translateY(0);
}

.wa-choice-item--accent {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.08) 0%, #fff 65%);
}

.wa-choice-item--accent:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.2);
}

.wa-choice-item-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(74, 107, 90, 0.75);
}

.wa-choice-item-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900);
}

.wa-choice-item-desc {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

.main-content {
  padding: 2rem 0 3.5rem;
}

/* Hero */
.hero {
  margin-bottom: 2.25rem;
  padding: 1.75rem 1.5rem 1.85rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(228, 243, 234, 0.95) 50%,
    rgba(255, 255, 255, 0.65) 100%
  );
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(
    ellipse,
    rgba(58, 157, 108, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--green-900);
  position: relative;
}

.lead {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
  max-width: 52ch;
  position: relative;
}

/* Accueil : texte d’intro (commande WhatsApp) en vrais paragraphes, largeur confortable */
.hero .lead {
  max-width: min(100%, 40rem);
  font-size: clamp(1.02rem, 2.1vw, 1.12rem);
  line-height: 1.68;
  color: rgba(45, 74, 58, 0.92);
  text-wrap: pretty;
}

/* Sections */
.section {
  margin-bottom: 2.75rem;
}

.section h2 {
  margin: 0 0 1.1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
  padding-bottom: 0.45rem;
  border-bottom: 3px solid var(--green-200);
  display: inline-block;
  min-width: min(100%, 280px);
}

.category-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.category-hero-logo {
  width: clamp(72px, 22vw, 120px);
  height: clamp(72px, 22vw, 120px);
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(18, 61, 40, 0.12);
  flex-shrink: 0;
}

.category-hero-title {
  margin: 0;
  flex: 1;
  min-width: min(100%, 12rem);
}

.category-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(18, 61, 40, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s;
}

.chip-logo {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(58, 157, 108, 0.25);
}

.chip-label {
  line-height: 1.25;
}

.chip:hover {
  border-color: var(--green-500);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(35, 107, 69, 0.12);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
  gap: 1.35rem;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-200);
}

.product-card > a {
  color: inherit;
  text-decoration: none;
}

.product-card > a:hover h3 {
  color: var(--green-700);
}

.product-thumb {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--green-50), var(--mint));
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(181, 217, 196, 0.6);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.placeholder.large {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--mint), var(--green-50));
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.product-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--green-950);
}

.price {
  margin: 0;
  font-weight: 700;
  color: var(--green-700);
  font-size: 1.02rem;
}

.price.big {
  font-size: 1.35rem;
}

.btn {
  display: inline-block;
  padding: 0.58rem 1.15rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(35, 107, 69, 0.28);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s;
}

.btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(35, 107, 69, 0.35);
  text-decoration: none !important;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.38rem 0.8rem;
  font-size: 0.85rem;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.65) !important;
  color: var(--green-800) !important;
  border: 2px solid var(--green-600);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--accent-soft) !important;
  text-decoration: none !important;
  border-color: var(--green-700);
}

/* WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--wa) !important;
  color: #fff !important;
  border: none;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  box-shadow: 0 4px 18px var(--wa-glow);
}

.btn-whatsapp:hover {
  background: var(--wa-hover) !important;
  text-decoration: none !important;
  filter: brightness(1.03);
}

.wa-ico-wrap {
  display: inline-flex;
  flex-shrink: 0;
}

.wa-ico {
  display: block;
}

.btn-whatsapp-card {
  width: 100%;
  padding: 0.58rem 0.7rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

.btn-whatsapp-hero {
  width: 100%;
  max-width: 420px;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  border-radius: 16px;
}

.wa-pulse {
  animation: wa-pulse 2.2s ease-in-out infinite;
}

.wa-pulse-light {
  animation: wa-pulse-light 2.8s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 6px 22px var(--wa-glow);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.62);
  }
}

@keyframes wa-pulse-light {
  0%,
  100% {
    box-shadow: 0 2px 12px var(--wa-glow);
  }
  50% {
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  }
}

.product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.product-order-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 1.25rem;
  max-width: 420px;
}

.cart-wa-wrap {
  margin: 1.75rem 0 1rem;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(228, 243, 234, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  border: 2px solid var(--green-500);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(35, 107, 69, 0.12);
}

.cart-wa-wrap .btn-whatsapp-hero {
  max-width: none;
  width: 100%;
}

.wa-lead {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.45;
}

.cart-alt-actions {
  margin: 0.5rem 0 1rem;
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--green-700);
}

.product-detail {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-detail > div:last-child {
  padding: 1rem 1.1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.product-gallery-main img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.product-gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--card);
  cursor: pointer;
  overflow: hidden;
  width: 4.25rem;
  height: 4.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(18, 61, 40, 0.08);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb.is-active {
  border-color: var(--green-600);
  box-shadow: 0 0 0 2px var(--green-200);
}

.product-gallery-thumb:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
}

.prose {
  color: var(--muted);
  font-size: 1.02rem;
}

.cart-page table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.cart-page thead {
  background: linear-gradient(180deg, var(--green-50), var(--mint));
}

.cart-page th,
.cart-page td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.cart-page th {
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.88rem;
}

.cart-page tr:last-child td {
  border-bottom: none;
}

.qty-input {
  width: 3.6rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}

.checkout-summary {
  background: var(--card);
  padding: 1.15rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.checkout-summary ul {
  margin: 0;
  padding-left: 1.15rem;
}

.form-stack {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-stack label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-900);
}

.form-stack input,
.form-stack textarea {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-stack input:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.alert {
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert.success {
  background: linear-gradient(135deg, #e0f4e6, #f0faf3);
  border: 1px solid var(--green-500);
  color: var(--green-900);
}

.alert.error {
  background: #fff5f5;
  border: 1px solid #e57373;
  color: #6a1b1b;
}

.muted {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--green-900) 0%, #0a1f14 100%);
  color: rgba(232, 245, 238, 0.88);
  padding: 2rem 0;
  margin-top: 2.5rem;
  font-size: 0.92rem;
  box-shadow: 0 -8px 32px rgba(10, 36, 24, 0.15);
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 500;
}

.site-footer-credit {
  font-size: 0.86rem;
  font-weight: 500;
  opacity: 0.92;
}

.site-footer a {
  color: #b8dfc8;
}

.site-footer a:hover {
  color: #fff;
}

h1:not(.hero h1) {
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}
