/* ————————————————————————————————————————————————
   Meal prep Grégoire-Beaubien — design v2
   Chaleureux, moderne, éditorial. Mobile d'abord.
   ———————————————————————————————————————————————— */

:root {
  --fond: #faf4ea;
  --fond-2: #f3ead9;
  --carte: #ffffff;
  --encre: #2c2118;
  --encre-douce: #7d7060;
  --paprika: #c1502e;
  --paprika-fonce: #9e3d20;
  --safran: #e0913f;
  --olive: #5f7040;
  --olive-pale: #eef2e2;
  --jaune-special: #fff4cf;
  --jaune-bord: #ecd489;
  --bord: #eadfcd;
  --rayon: 18px;
  --rayon-sm: 12px;
  --ombre: 0 1px 2px rgba(44, 33, 24, .05), 0 6px 20px rgba(44, 33, 24, .07);
  --ombre-haute: 0 2px 6px rgba(44, 33, 24, .08), 0 14px 40px rgba(44, 33, 24, .13);
  --degrade: linear-gradient(130deg, #c1502e 0%, #d96f35 55%, #e0913f 100%);
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(1100px 500px at 85% -100px, rgba(224, 145, 63, .10), transparent 60%),
    var(--fond);
  color: var(--encre);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--paprika-fonce); }

/* ——— En-tête ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 244, 234, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bord);
  padding: .65rem 1rem .55rem;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--encre);
  margin-bottom: .45rem;
}
.brand-nom { color: var(--paprika); }

.nav {
  display: flex;
  gap: .4rem;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -1rem;
  padding: 0 1rem .1rem;
}
.nav::-webkit-scrollbar { display: none; }

.nav a {
  flex-shrink: 0;
  text-decoration: none;
  color: var(--encre-douce);
  font-weight: 600;
  font-size: .93rem;
  padding: .42rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .15s ease;
}
.nav a:hover { color: var(--paprika-fonce); background: var(--fond-2); }
.nav a.actif {
  color: #fff;
  background: var(--degrade);
  box-shadow: 0 3px 10px rgba(193, 80, 46, .35);
}

/* ——— Structure ——— */
#app {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.1rem 1rem 3.5rem;
  animation: apparaitre .3s ease both;
}
@keyframes apparaitre {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}

h1 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 4.5vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: .9rem 0 .25rem;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.18rem, 3vw, 1.42rem);
  letter-spacing: -.01em;
  margin: 2rem 0 .7rem;
  color: var(--encre);
}
h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 3px;
  background: var(--degrade);
  margin-top: .3rem;
}
h3 { font-size: 1.03rem; margin: 1rem 0 .4rem; }

.sous-titre { color: var(--encre-douce); margin: 0 0 .5rem; font-size: 1.02rem; }

.periode {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--olive);
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
  border-radius: 999px;
  padding: .22rem .85rem;
  margin: .25rem 0 .9rem;
}

.carte {
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.1rem 1.15rem;
  margin-bottom: 1rem;
}

.note-info {
  background: var(--olive-pale);
  border: 1px solid #d4ddbc;
  border-radius: var(--rayon-sm);
  padding: .75rem 1rem;
  font-size: .93rem;
  margin-bottom: 1rem;
}

.erreur { color: #a33; }

/* ——— Héros (accueil et menus) ——— */
.hero {
  background: var(--degrade);
  border-radius: calc(var(--rayon) + 6px);
  box-shadow: var(--ombre-haute);
  color: #fff;
  padding: 1.5rem 1.35rem 1.35rem;
  margin: .4rem 0 1.4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 230px; height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.hero::before {
  content: "";
  position: absolute;
  right: 30px; bottom: -90px;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.hero .hero-etiquette {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .18rem .8rem;
  margin-bottom: .6rem;
}
.hero h1 {
  color: #fff;
  margin: 0 0 .15rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.hero .sous-titre { color: rgba(255, 255, 255, .92); margin-bottom: .8rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  position: relative;
  z-index: 1;
}
.hero-stats span {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  padding: .25rem .8rem;
}

/* ——— Anchors ——— */
.anchors { display: grid; gap: .9rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .anchors { grid-template-columns: 1fr 1fr; } }

.anchor-carte {
  background: var(--carte);
  border: 1px solid var(--bord);
  border-left: 5px solid var(--safran);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1rem 1.1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.anchor-carte:hover { transform: translateY(-2px); box-shadow: var(--ombre-haute); }
.anchor-carte .anchor-nom {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.anchor-emoji {
  font-size: 1.6rem;
  background: var(--fond-2);
  border-radius: 12px;
  width: 2.6rem; height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.anchor-carte .anchor-detail { color: var(--encre-douce); font-size: .9rem; margin: .4rem 0 .2rem; }
.anchor-carte .anchor-decl { font-size: .93rem; margin: .2rem 0 .5rem; }
.anchor-carte a { font-weight: 600; font-size: .9rem; }

/* ——— Plan de semaine en cartes-jour ——— */
.plan-grille { display: grid; gap: .65rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .plan-grille { grid-template-columns: 1fr 1fr; } }

.jour-carte {
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: var(--rayon-sm);
  box-shadow: var(--ombre);
  padding: .75rem .9rem .8rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem .8rem;
}
.jour-pastille {
  grid-row: span 3;
  align-self: start;
  background: var(--fond-2);
  color: var(--paprika-fonce);
  border-radius: var(--rayon-sm);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align: center;
  padding: .5rem .55rem;
  min-width: 3.4rem;
  line-height: 1.25;
}
.jour-pastille .num { display: block; font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0; }
.jour-souper { font-weight: 600; line-height: 1.4; }
.jour-souper a { text-decoration: none; }
.jour-souper a:hover { text-decoration: underline; }
.jour-meta { font-size: .84rem; color: var(--encre-douce); }
.jour-lunch { font-size: .87rem; color: var(--encre-douce); }
.jour-lunch strong { color: var(--olive); font-weight: 700; }
.badge-enfants {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  background: #fde3cd;
  color: #9a5b22;
  border-radius: 999px;
  padding: .05rem .55rem;
  margin-left: .35rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* ——— Liste d'épicerie ——— */
.epicerie-progres {
  font-size: .88rem;
  font-weight: 700;
  color: var(--olive);
  background: var(--olive-pale);
  border-radius: 999px;
  padding: .2rem .8rem;
  display: inline-block;
  margin-bottom: .4rem;
}
.rayon-titre {
  margin: 1.2rem 0 .45rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}
ul.epicerie { list-style: none; margin: 0; padding: 0; }
ul.epicerie li { border-bottom: 1px dashed var(--bord); }
ul.epicerie li:last-child { border-bottom: none; }
ul.epicerie label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .5rem .45rem;
  cursor: pointer;
  border-radius: 10px;
  transition: background .12s ease;
}
ul.epicerie label:hover { background: var(--fond-2); }
ul.epicerie li.special {
  background: var(--jaune-special);
  border: 1px solid var(--jaune-bord);
  border-radius: var(--rayon-sm);
  margin: .25rem 0;
}
ul.epicerie input[type="checkbox"] {
  width: 1.3rem; height: 1.3rem;
  margin-top: .12rem;
  accent-color: var(--paprika);
  flex-shrink: 0;
  cursor: pointer;
}
ul.epicerie li.coche .item-nom { text-decoration: line-through; opacity: .5; }
.item-special {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #8a6d1a;
}

/* ——— Budget ——— */
table.budget { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.budget td { padding: .45rem .5rem; border-bottom: 1px dashed var(--bord); }
table.budget td:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
table.budget tr.total td {
  border-top: 2px solid var(--paprika);
  border-bottom: none;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.12rem;
}
.budget-note { color: var(--encre-douce); font-size: .9rem; margin-top: .5rem; }

/* ——— Cartes de thèmes ——— */
.grille-themes { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .grille-themes { grid-template-columns: 1fr 1fr; } }

.theme-carte {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.05rem 1.15rem;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.theme-carte::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--degrade);
  opacity: 0;
  transition: opacity .15s ease;
}
.theme-carte:hover { transform: translateY(-3px); box-shadow: var(--ombre-haute); }
.theme-carte:hover::before { opacity: 1; }
.theme-carte .theme-emoji {
  font-size: 1.8rem;
  background: var(--fond-2);
  border-radius: 14px;
  width: 3rem; height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-carte h3 { margin: .5rem 0 .25rem; font-family: var(--serif); font-size: 1.22rem; }
.theme-carte .theme-anchors { font-size: .9rem; margin: .3rem 0; }
.theme-carte .theme-apercu { font-size: .85rem; color: var(--encre-douce); }
.badge-statut {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  padding: .14rem .65rem;
  margin-left: .45rem;
  vertical-align: super;
}
.badge-complet { background: var(--olive-pale); color: #4d6b2d; }
.badge-esquisse { background: #f4e8d2; color: #96741d; }

/* ——— Recherche et filtres (page Recettes) ——— */
.outils-recherche {
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}
.champ-recherche {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--fond);
  border: 1.5px solid var(--bord);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.champ-recherche:focus-within {
  border-color: var(--safran);
  box-shadow: 0 0 0 4px rgba(224, 145, 63, .18);
}
.champ-recherche input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 1.02rem;
  font-family: var(--sans);
  color: var(--encre);
  min-width: 0;
}
.filtres {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .8rem;
  align-items: center;
}
.filtres select {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  color: var(--encre);
  background: var(--fond);
  border: 1.5px solid var(--bord);
  border-radius: 999px;
  padding: .38rem .8rem;
  outline: none;
  max-width: 100%;
}
.puce-filtre {
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--encre-douce);
  background: var(--fond);
  border: 1.5px solid var(--bord);
  border-radius: 999px;
  padding: .38rem .9rem;
  cursor: pointer;
  transition: all .13s ease;
}
.puce-filtre:hover { border-color: var(--safran); color: var(--paprika-fonce); }
.puce-filtre.actif {
  background: var(--degrade);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 3px 8px rgba(193, 80, 46, .3);
}
.compte-resultats { font-size: .9rem; color: var(--encre-douce); margin: .2rem 0 .9rem; }

/* ——— Grille de cartes recettes ——— */
.grille-recettes {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.recette-carte {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.recette-carte:hover { transform: translateY(-3px); box-shadow: var(--ombre-haute); }
.recette-vignette {
  height: 150px;
  background: linear-gradient(140deg, var(--fond-2), #ecdcc0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.recette-vignette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.recette-corps { padding: .8rem .95rem 1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.recette-carte h3 { margin: 0; font-size: 1.02rem; line-height: 1.35; font-family: var(--sans); font-weight: 700; }
.recette-infos {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: auto;
  padding-top: .4rem;
}
.pastille {
  font-size: .74rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .1rem .6rem;
  background: var(--fond-2);
  color: var(--encre-douce);
}
.pastille-anchor { background: #fde3cd; color: #9a5b22; }
.pastille-projet { background: #e6e0f2; color: #5c4d8a; }
.pastille-enfants { background: #fdecd8; color: #9a5b22; }
.pastille-theme { background: var(--olive-pale); color: #4d6b2d; }

/* ——— Listes de recettes (fiches thème / menu) ——— */
ul.liste-recettes { list-style: none; margin: 0; padding: 0; }
ul.liste-recettes li { border-bottom: 1px dashed var(--bord); }
ul.liste-recettes li:last-child { border-bottom: none; }
ul.liste-recettes a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .4rem;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: background .12s ease;
}
ul.liste-recettes a:hover { background: var(--fond-2); }
ul.liste-recettes .mini-emoji {
  font-size: 1.25rem;
  background: var(--fond-2);
  border-radius: 10px;
  width: 2.2rem; height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.recette-role {
  margin-left: auto;
  font-size: .73rem;
  font-weight: 800;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* ——— Fiche recette ——— */
.fiche-photo {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--rayon);
  border: 1px solid var(--bord);
  box-shadow: var(--ombre);
  background: var(--fond-2);
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  height: 170px;
  border-radius: var(--rayon);
  border: 1.5px dashed var(--bord);
  background: linear-gradient(140deg, #f8f0e0, #f0e2ca);
  color: var(--encre-douce);
  font-size: .9rem;
}
.photo-placeholder .grand-emoji { font-size: 3.2rem; }
.photo-credit { font-size: .78rem; color: var(--encre-douce); margin: .3rem 0 0; }

.meta-recette { display: flex; flex-wrap: wrap; gap: .45rem; margin: .8rem 0; }
.meta-recette span {
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  padding: .28rem .8rem;
  box-shadow: var(--ombre);
}

.gf-note {
  background: var(--olive-pale);
  border: 1px solid #d4ddbc;
  border-left: 5px solid var(--olive);
  border-radius: var(--rayon-sm);
  padding: .7rem 1rem;
  font-size: .94rem;
  margin: .9rem 0;
}

.colonnes-recette { display: grid; gap: 0 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .colonnes-recette { grid-template-columns: 5fr 7fr; align-items: start; } }

.encart {
  border-radius: var(--rayon-sm);
  padding: .7rem 1rem;
  font-size: .93rem;
  margin: .75rem 0;
}
.encart-enfants { background: #fdecd8; border: 1px solid #f3d4ae; border-left: 5px solid var(--safran); }
.encart-lunch { background: #e9eff8; border: 1px solid #cbd9ec; border-left: 5px solid #5b7fae; }
.encart-astuce { background: #fbf4dd; border: 1px solid #ecdfae; border-left: 5px solid #d4b13c; }

ul.ingredients { padding: 0; list-style: none; margin: .4rem 0; }
ul.ingredients li {
  padding: .4rem .2rem .4rem 1.5rem;
  border-bottom: 1px dashed var(--bord);
  position: relative;
  font-size: .95rem;
}
ul.ingredients li::before {
  content: "";
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--safran);
  position: absolute;
  left: .3rem; top: .95rem;
}
ul.ingredients li:last-child { border-bottom: none; }

ol.etapes { list-style: none; counter-reset: etape; padding: 0; margin: .4rem 0; }
ol.etapes li {
  counter-increment: etape;
  position: relative;
  padding: 0 0 .95rem 2.7rem;
  margin: 0;
}
ol.etapes li::before {
  content: counter(etape);
  position: absolute;
  left: 0; top: -.1rem;
  width: 1.9rem; height: 1.9rem;
  border-radius: 50%;
  background: var(--degrade);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(193, 80, 46, .3);
}
ol.etapes li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: .93rem; top: 1.95rem; bottom: .1rem;
  width: 2px;
  background: var(--bord);
}

.source-lien {
  display: inline-block;
  background: var(--degrade);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: .55rem 1.25rem;
  margin: .3rem .45rem .3rem 0;
  font-size: .93rem;
  box-shadow: 0 3px 10px rgba(193, 80, 46, .3);
  transition: transform .13s ease, box-shadow .13s ease;
}
.source-lien:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(193, 80, 46, .4); }
.source-maison {
  display: inline-block;
  background: var(--fond-2);
  color: var(--encre-douce);
  border-radius: 999px;
  padding: .55rem 1.25rem;
  font-size: .93rem;
  font-weight: 700;
}

/* ——— Historique ——— */
.menu-carte {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--carte);
  border: 1px solid var(--bord);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.05rem 1.2rem;
  margin-bottom: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
  overflow: hidden;
}
.menu-carte::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--degrade);
}
.menu-carte:hover { transform: translateY(-2px); box-shadow: var(--ombre-haute); }
.menu-carte h3 { margin: .3rem 0 .15rem; font-family: var(--serif); font-size: 1.28rem; }
.menu-carte .menu-anchors { font-size: .9rem; color: var(--encre-douce); }

.fil-ariane { font-size: .88rem; margin: .6rem 0 0; color: var(--encre-douce); }
.fil-ariane a { text-decoration: none; font-weight: 600; }
.fil-ariane a:hover { text-decoration: underline; }

.batch-liste { padding-left: 1.35rem; margin: .4rem 0; }
.batch-liste li { margin-bottom: .4rem; }
.batch-liste li::marker { color: var(--paprika); font-weight: 700; }

.notes-gf-liste { padding-left: 1.35rem; margin: .4rem 0; font-size: .93rem; }
.notes-gf-liste li { margin-bottom: .35rem; }
.notes-gf-liste li::marker { color: var(--olive); }

/* ——— Pied de page ——— */
.site-footer {
  text-align: center;
  color: var(--encre-douce);
  font-size: .85rem;
  padding: 1.4rem 1rem 2.2rem;
  border-top: 1px solid var(--bord);
  background: var(--fond-2);
}
.site-footer p { margin: .2rem 0; }
.footer-note { opacity: .75; }

@media print {
  .site-header, .site-footer, .outils-recherche { display: none; }
  body { background: #fff; }
  .carte, .hero { box-shadow: none; }
  .hero { color: var(--encre); background: none; border: 1px solid var(--bord); }
}

/* ——— Actions de la liste d'épicerie (copier / partager) ——— */
.actions-epicerie {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--bord);
}
.bouton-action {
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 700;
  color: #fff;
  background: var(--degrade);
  border: none;
  border-radius: 999px;
  padding: .55rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  box-shadow: 0 3px 10px rgba(193, 80, 46, .3);
  transition: transform .13s ease, box-shadow .13s ease;
}
.bouton-action:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(193, 80, 46, .4); }
.bouton-action:active { transform: none; }
.bouton-secondaire {
  background: var(--carte);
  color: var(--paprika-fonce);
  border: 1.5px solid var(--bord);
  box-shadow: var(--ombre);
}
