/* ==========================================================================
   Emballo — Consommables d'expédition éco-responsables
   Charte : vert forêt / kraft / jaune signal
   ========================================================================== */

:root {
  /* Couleurs */
  --forest:      #1B4332;
  --forest-700:  #245140;
  --forest-300:  #6B9080;
  --kraft:       #E9E4D8;
  --kraft-light: #F5F1EA;
  --yellow:      #F6C445;
  --ink:         #14201B;
  --muted:       #5A6B63;
  --line:        #E2DED4;
  --white:       #ffffff;
  --success:     #2E9E5B;

  /* Typo */
  --font-head: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Divers */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(20, 32, 27, 0.25);
  --shadow-sm: 0 4px 14px -8px rgba(20, 32, 27, 0.35);
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest-300);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-700); box-shadow: var(--shadow-sm); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { box-shadow: 0 8px 20px -8px rgba(246,196,69,.9); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest); }

/* ---------- Barre annonce ---------- */
.announce {
  background: var(--forest); color: var(--kraft-light);
  font-size: 13.5px; text-align: center; padding: 9px 16px;
  font-family: var(--font-head); letter-spacing: 0.02em;
}
.announce strong { color: var(--yellow); }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.logo img { height: 34px; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: 8px; }
.nav a { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink); position: relative; padding: 6px 0; }
.nav a:hover { color: var(--forest); }
.nav-item { position: relative; }
.nav-item > a::after { content: ""; }
.dropdown {
  position: absolute; top: 100%; left: -14px; min-width: 230px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .18s ease; z-index: 60;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(4px); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14.5px; font-weight: 500; }
.dropdown a:hover { background: var(--kraft-light); color: var(--forest); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); cursor: pointer; position: relative; transition: border-color .2s; }
.icon-btn:hover { border-color: var(--forest); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--forest); }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--yellow); color: var(--ink); font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; font-family: var(--font-head); }
.burger { display: none; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--kraft-light) 0%, var(--kraft) 100%); position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(27,67,50,.10), transparent 70%); border-radius: 50%; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 70px 24px 78px; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); color: var(--forest); }
.hero h1 span { color: var(--yellow); -webkit-text-stroke: 1px var(--forest); }
.hero p.lead { font-size: 18px; color: var(--muted); margin: 20px 0 28px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 38px; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: 26px; color: var(--forest); display: block; }
.hero-stats .stat span { font-size: 13.5px; color: var(--muted); }
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; position: relative; z-index: 2;
}
.hero-card .box-illustration { aspect-ratio: 4/3; border-radius: var(--radius-sm); background:
  repeating-linear-gradient(45deg, #d8cbb0 0 14px, #d0c2a4 14px 28px); display: grid; place-items: center; position: relative; overflow: hidden; }
.hero-card .box-illustration .tape { position: absolute; top: 50%; left: 0; right: 0; height: 34px; background: rgba(246,196,69,.85); transform: translateY(-50%); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.hero-card .box-illustration .leaf-badge { position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 50%; background: var(--forest); display: grid; place-items: center; box-shadow: 0 8px 22px -8px rgba(27,67,50,.7); }
.hero-card .box-illustration .leaf-badge svg { width: 46px; height: 46px; }
.hero-card .caption { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; }
.hero-card .caption .price { font-family: var(--font-head); font-weight: 700; color: var(--forest); font-size: 18px; }
.badge-eco { position: absolute; top: -14px; left: -14px; z-index: 3; background: var(--yellow); color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 12.5px; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); transform: rotate(-6deg); }

/* ---------- Bandeau confiance ---------- */
.trust { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 24px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 30px; height: 30px; stroke: var(--forest); flex-shrink: 0; }
.trust-item h4 { font-size: 15px; }
.trust-item p { font-size: 13px; color: var(--muted); }

/* ---------- Sections génériques ---------- */
.section { padding: 78px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--forest); margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 16.5px; }

/* ---------- Collections ---------- */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.collection-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 240px;
  display: flex; align-items: flex-end; padding: 24px; color: var(--white);
  background: var(--forest); transition: transform .25s ease, box-shadow .25s ease;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.collection-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(20,32,27,.72)); z-index: 1; }
.collection-card .pattern { position: absolute; inset: 0; opacity: .35; z-index: 0; }
.collection-card .c-content { position: relative; z-index: 2; }
.collection-card h3 { font-size: 22px; }
.collection-card p { font-size: 13.5px; opacity: .85; margin-top: 4px; }
.collection-card .arrow { position: absolute; top: 20px; right: 20px; z-index: 2; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.14); display: grid; place-items: center; transition: background .2s; }
.collection-card:hover .arrow { background: var(--yellow); }
.collection-card:hover .arrow svg { stroke: var(--ink); }
.collection-card .arrow svg { width: 18px; height: 18px; stroke: var(--white); }
.c-1 { background: linear-gradient(150deg, #245140, #14201B); }
.c-2 { background: linear-gradient(150deg, #6B9080, #245140); }
.c-3 { background: linear-gradient(150deg, #b89b5e, #7a6535); }
.c-4 { background: linear-gradient(150deg, #2E9E5B, #1B4332); }
.c-5 { background: linear-gradient(150deg, #3a5a4c, #1B4332); }
.c-6 { background: linear-gradient(150deg, #8a7f6a, #4a4234); }

/* ---------- Produits ---------- */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-media { aspect-ratio: 1; background: var(--kraft-light); position: relative; display: grid; place-items: center; overflow: hidden; }
.product-media .box-svg { width: 60%; }
.product-tag { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: var(--ink); font-family: var(--font-head); font-weight: 700; font-size: 11.5px; padding: 5px 10px; border-radius: 999px; }
.product-tag.eco { background: var(--success); color: #fff; }
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body .cat { font-size: 12px; color: var(--forest-300); font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.product-body h3 { font-size: 16px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.product-body .rating { font-size: 12.5px; color: var(--muted); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; }
.product-foot .price { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--forest); }
.product-foot .price small { font-weight: 500; font-size: 12px; color: var(--muted); }
.add-btn { width: 40px; height: 40px; border-radius: 999px; background: var(--forest); border: none; display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .15s; }
.add-btn:hover { background: var(--yellow); transform: scale(1.08); }
.add-btn:hover svg { stroke: var(--ink); }
.add-btn svg { width: 18px; height: 18px; stroke: #fff; }

/* ---------- Section éco ---------- */
.eco { background: var(--forest); color: var(--kraft-light); border-radius: 0; overflow: hidden; position: relative; }
.eco::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(246,196,69,.12), transparent 45%); }
.eco-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 74px 24px; position: relative; }
.eco h2 { color: var(--white); font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 16px; }
.eco h2 span { color: var(--yellow); }
.eco p { color: rgba(245,241,234,.82); font-size: 16.5px; margin-bottom: 26px; max-width: 480px; }
.eco-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.eco-feature { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-sm); padding: 18px; }
.eco-feature svg { width: 26px; height: 26px; stroke: var(--yellow); margin-bottom: 10px; }
.eco-feature h4 { color: var(--white); font-size: 15px; margin-bottom: 4px; }
.eco-feature p { font-size: 13px; margin: 0; color: rgba(245,241,234,.75); }

/* ---------- Newsletter / CTA ---------- */
.cta { background: var(--kraft); }
.cta-inner { text-align: center; padding: 66px 24px; max-width: 620px; margin: 0 auto; }
.cta h2 { font-size: clamp(26px, 3.2vw, 38px); color: var(--forest); margin-bottom: 12px; }
.cta p { color: var(--muted); margin-bottom: 26px; }
.newsletter { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-body); font-size: 15px; background: #fff; }
.newsletter input:focus { outline: none; border-color: var(--forest); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfd6d1; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: #9aa39d; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); }
.footer-social a:hover svg { stroke: var(--ink); }
.footer-social svg { width: 17px; height: 17px; stroke: #cfd6d1; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-family: var(--font-head); }
.footer-col a { display: block; font-size: 14px; color: #9aa39d; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; color: #79817b; flex-wrap: wrap; gap: 10px; }
.footer-pay { display: flex; gap: 8px; }
.footer-pay span { background: rgba(255,255,255,.08); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-family: var(--font-head); }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--forest); color: #fff; padding: 14px 22px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 14px; box-shadow: var(--shadow); z-index: 100; transition: transform .3s cubic-bezier(.2,.8,.2,1); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; stroke: var(--yellow); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { max-width: 440px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .collections { grid-template-columns: 1fr 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  .eco-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .burger { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
  .burger svg { width: 22px; height: 22px; stroke: var(--forest); }
  .collections { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .newsletter { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 420px) {
  .products { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================ Pages internes ============================ */

/* Images produit réelles */
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; mix-blend-mode: multiply; }
.product-media .ph { width: 60%; aspect-ratio: 1; background:
  repeating-linear-gradient(45deg,#e5ddcc 0 12px,#ded4bf 12px 24px); border-radius: 8px; }
.product-body h3 a { color: inherit; }
.product-body h3 a:hover { color: var(--forest); }
.product-body h3 { min-height: 2.4em; overflow: hidden; }

/* Fil d'ariane */
.breadcrumb { padding: 20px 0 0; font-size: 13.5px; color: var(--muted); font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: var(--forest); }

/* En-tête de page */
.page-head { background: linear-gradient(160deg, var(--kraft-light), var(--kraft)); padding: 40px 0 44px; }
.page-head h1 { font-size: clamp(30px,4vw,46px); color: var(--forest); }
.page-head p { color: var(--muted); margin-top: 10px; max-width: 560px; }

/* Layout boutique : filtres + grille */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 34px; padding: 40px 0 78px; }
.filters { position: sticky; top: 92px; align-self: start; }
.filters h4 { font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.filter-list a { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 9px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.filter-list a:hover { background: var(--kraft-light); }
.filter-list a.active { background: var(--forest); color: #fff; }
.filter-list a .n { font-size: 12px; opacity: .7; font-family: var(--font-head); }
.shop-main .shop-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.shop-bar .count { color: var(--muted); font-size: 14.5px; }
.shop-bar select { padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-head); font-size: 14px; background: #fff; cursor: pointer; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Fiche produit */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 34px 0 70px; }
.product-gallery { background: var(--kraft-light); border-radius: var(--radius); display: grid; place-items: center; padding: 30px; position: sticky; top: 92px; align-self: start; min-height: 380px; }
.product-gallery img { max-height: 440px; object-fit: contain; mix-blend-mode: multiply; }
.product-info .ref { font-family: var(--font-head); font-size: 13px; color: var(--forest-300); letter-spacing: .06em; }
.product-info h1 { font-size: clamp(24px,3vw,34px); color: var(--forest); margin: 8px 0 14px; }
.product-info .price-lg { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--forest); }
.product-info .price-lg small { font-size: 15px; color: var(--muted); font-weight: 500; }
.product-info .desc { color: var(--muted); margin: 20px 0; line-height: 1.7; }
.spec-list { list-style: none; border-top: 1px solid var(--line); margin: 22px 0; }
.spec-list li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.spec-list li span:first-child { color: var(--muted); }
.spec-list li span:last-child { font-weight: 600; }
.buy-row { display: flex; gap: 12px; align-items: center; margin: 24px 0; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 42px; height: 46px; border: none; background: #fff; font-size: 20px; cursor: pointer; color: var(--forest); }
.qty button:hover { background: var(--kraft-light); }
.qty input { width: 46px; height: 46px; text-align: center; border: none; font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.badges-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.mini-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--kraft-light); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-family: var(--font-head); font-weight: 500; }
.mini-badge svg { width: 16px; height: 16px; stroke: var(--forest); }

/* Panier */
.cart-page { padding: 40px 0 80px; display: grid; grid-template-columns: 1fr 340px; gap: 34px; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cart-line { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.cart-line .thumb { width: 84px; height: 84px; background: var(--kraft-light); border-radius: 8px; display: grid; place-items: center; }
.cart-line .thumb img { max-width: 76px; max-height: 76px; object-fit: contain; mix-blend-mode: multiply; }
.cart-line h4 { font-family: var(--font-body); font-size: 15px; font-weight: 600; }
.cart-line .sub { font-size: 12.5px; color: var(--muted); }
.cart-line .line-price { font-family: var(--font-head); font-weight: 700; color: var(--forest); text-align: right; }
.cart-line .remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 13px; margin-top: 4px; }
.cart-line .remove:hover { color: #c0392b; }
.cart-summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; height: fit-content; position: sticky; top: 92px; }
.cart-summary h3 { font-size: 19px; margin-bottom: 18px; color: var(--forest); }
.sum-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; color: var(--muted); }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 19px; color: var(--ink); font-family: var(--font-head); font-weight: 700; }
.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty svg { width: 60px; height: 60px; stroke: var(--forest-300); margin-bottom: 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; padding: 44px 0 80px; }
.contact-info .info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .info-item svg { width: 24px; height: 24px; stroke: var(--forest); flex-shrink: 0; margin-top: 3px; }
.contact-info h4 { font-size: 15px; margin-bottom: 3px; }
.contact-info p { color: var(--muted); font-size: 14.5px; }
.contact-form { background: var(--kraft-light); border-radius: var(--radius); padding: 30px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; font-family: var(--font-head); }
.form-row input, .form-row textarea { width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--line); font-family: var(--font-body); font-size: 15px; background: #fff; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--forest); }
.form-row textarea { min-height: 120px; resize: vertical; }

/* About / éco long */
.about-block { padding: 60px 0; }
.about-block .lead-p { font-size: 19px; color: var(--muted); max-width: 700px; margin: 0 auto 10px; text-align: center; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.value-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.value-card svg { width: 30px; height: 30px; stroke: var(--forest); margin-bottom: 14px; }
.value-card h3 { font-size: 18px; color: var(--forest); margin-bottom: 8px; }
.value-card p { font-size: 14.5px; color: var(--muted); }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: flex; gap: 20px; overflow-x: auto; }
  .filter-list { flex-direction: row; margin-bottom: 0; }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .cart-page { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line .thumb { width: 64px; height: 64px; }
}

/* ==================== Modale bon de commande ==================== */
.modal-overlay { position: fixed; inset: 0; background: rgba(20,32,27,.55); backdrop-filter: blur(3px); z-index: 200; display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius); width: 100%; max-width: 560px; padding: 32px; position: relative; box-shadow: var(--shadow); animation: popin .22s ease; }
@keyframes popin { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal h2 { color: var(--forest); font-size: 24px; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; line-height: 1.6; }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 28px; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-close:hover { color: var(--ink); }
.modal-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.po-recap { background: var(--kraft-light); border-radius: var(--radius-sm); padding: 16px 18px; margin: 6px 0 18px; }
.po-recap-title { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--forest); margin-bottom: 10px; }
.po-recap-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--muted); padding: 4px 0; }
.po-recap-row span:last-child { white-space: nowrap; font-family: var(--font-head); }
.po-recap-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-weight: 700; color: var(--ink); font-size: 15px; }
.po-recap-row.total span:first-child { color: var(--ink); }
@media (max-width: 520px) { .form-two { grid-template-columns: 1fr; } .modal { padding: 24px 20px; } }

/* ==================== Pages légales ==================== */
.legal { max-width: 820px; margin: 0 auto; padding: 46px 0 80px; }
.legal .toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.legal .toc a { font-size: 13px; font-family: var(--font-head); font-weight: 500; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); }
.legal .toc a:hover { background: var(--kraft-light); border-color: var(--forest); }
.legal h2 { color: var(--forest); font-size: 22px; margin: 40px 0 14px; scroll-margin-top: 96px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 16px; margin: 22px 0 8px; }
.legal p, .legal li { color: #384740; font-size: 15px; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 20px; }
.legal li { margin-bottom: 6px; }
.legal a[href^="mailto"], .legal a[href^="http"] { color: var(--forest); text-decoration: underline; }
.legal .identity { background: var(--kraft-light); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin: 4px 0 20px; }
.legal .identity dl { display: grid; grid-template-columns: 190px 1fr; gap: 6px 16px; }
.legal .identity dt { color: var(--muted); font-size: 14px; }
.legal .identity dd { font-size: 14.5px; font-weight: 600; }
.legal .updated { color: var(--muted); font-size: 13px; margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--line); }
.legal .callout { background: #eef5ef; border-left: 3px solid var(--forest); border-radius: 8px; padding: 14px 18px; margin: 16px 0; font-size: 14.5px; }
@media (max-width: 560px) { .legal .identity dl { grid-template-columns: 1fr; } .legal .identity dt { margin-top: 8px; } }
