body {
  background: white;
  color: black;
  font-size: 4mm;
}
.entete {
  color: red;
  margin: 1em;
  text-align: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
.texte-entete {
  flex: 1;
}
.photo-entete {
  float: right;
  flex: 0;
}
.titre-entete {
  font-weight: bold;
  font-size: 300%;
  font-variant: small-caps;
}
.sous-titre-entete {
  font-size: 200%;
}
.titre-section {
  color: red;
  font-weight: bold;
  font-size: 200%;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  text-align: center;
}
.boite-prix {
  float: inline-end;
  color: red;
  font-weight: bold;
  background: white;
}
.prix {
  margin-left: 1ex;
}
.prix::after {
  content: " €";
}
.prix-salle::before {
  content: "salle ";
  font-weight: lighter;
}
.prix-jardin::before {
  content: "jardin ";
  font-weight: lighter;
}
.note {
  color: green;
  font-weight: bold;
  margin-top: 1em;
  border: solid green 1px;
  padding: .3em;
  clear: both;
  text-align: center;
}
.titre-produit {
  font-weight: bold;
}

.titre-produit + .desc::before {
  content: ":"
}
.produit {
  clear: both;
  margin-top: 0.25em;
}
.produit .desc {
  font-style: italic;
}
.titre-liste {
  color: red;
  margin-top: 1em;
  font-style: italic;
}
.produit:nth-of-type(1) {
  margin-top: 0.5em;
}

@media print {
  @page { margin: 1cm; }
  body { 
  	font-size: 12pt;
	font-family: "URW Chancery L", cursive;
  }
  .entete { display: none; }
  .section { break-inside: avoid; }
  .titre-section { font-variant: small-caps; } 
  .prix-salle::before { content: "s:"; font-weight: lighter; }
  .prix-jardin::before { content: "j:"; font-weight: lighter; }
  .titre-liste { text-decoration: underline; }
}

