:root {
  --bordeaux: #8e0e12;
  --rouge: #b01116;
  --or: #c9a227;
  --creme: #faf6ef;
  --encre: #241416;
  --gris: #6d5a5b;
}

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

body {
  font-family: "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  background: var(--creme);
  color: var(--encre);
  line-height: 1.55;
}

a { color: inherit; }

.bande {
  background: var(--bordeaux);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.bande .marque {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
.bande .marque span { color: var(--or); }
.bande .slogan {
  font-size: .78rem;
  opacity: .85;
  white-space: nowrap;
}

main { max-width: 640px; margin: 0 auto; padding: 0 0 40px; }

.affiche { display: block; width: 100%; height: auto; }

.fiche { padding: 22px 18px 0; }

.fiche h1 {
  font-size: 1.65rem;
  line-height: 1.15;
  color: var(--bordeaux);
}
.fiche .poids {
  display: inline-block;
  background: var(--or);
  color: var(--encre);
  font-weight: 700;
  font-size: .95rem;
  padding: 3px 12px;
  border-radius: 999px;
  margin: 8px 0 18px;
}

.specs { border-top: 2px solid var(--bordeaux); }
.specs .ligne {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 2px;
  border-bottom: 1px solid #e5dccb;
}
.specs dt { color: var(--gris); font-size: .9rem; }
.specs dd { font-weight: 600; text-align: right; }

.nutrition {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}
.nutrition .val {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--bordeaux);
  border-radius: 10px;
  text-align: center;
  padding: 12px 6px;
}
.nutrition .val strong {
  display: block;
  font-size: 1.35rem;
  color: var(--bordeaux);
}
.nutrition .val small { color: var(--gris); font-size: .74rem; }

.atouts { list-style: none; margin: 4px 0 24px; }
.atouts li { padding: 5px 0 5px 26px; position: relative; }
.atouts li::before {
  content: "";
  position: absolute; left: 4px; top: 12px;
  width: 9px; height: 9px;
  background: var(--or);
  border-radius: 50%;
}

.actions { display: flex; flex-direction: column; gap: 10px; }
.actions a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px;
  border-radius: 10px;
}
.actions .appel { background: var(--bordeaux); color: #fff; }
.actions .whatsapp { background: #1faa53; color: #fff; }
.actions .retour {
  background: none;
  color: var(--bordeaux);
  border: 1.5px solid var(--bordeaux);
}
.actions a:focus-visible { outline: 3px solid var(--or); outline-offset: 2px; }

.adresse {
  margin-top: 26px;
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid var(--or);
  font-size: .92rem;
  color: var(--gris);
}
.adresse strong { color: var(--encre); }

/* Catalogue */
.catalogue { padding: 22px 18px; display: grid; gap: 16px; }
.catalogue h1 { color: var(--bordeaux); font-size: 1.5rem; }
.catalogue p.intro { color: var(--gris); margin-bottom: 6px; }
.carte {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5dccb;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}
.carte img { width: 92px; height: 132px; object-fit: cover; flex-shrink: 0; }
.carte .info { padding: 10px 12px 10px 0; }
.carte .info strong { color: var(--bordeaux); font-size: 1.02rem; display: block; }
.carte .info span { color: var(--gris); font-size: .85rem; }
.carte .info .p { color: var(--encre); font-weight: 600; font-size: .88rem; margin-top: 4px; display: block; }

@media (min-width: 560px) {
  .catalogue { grid-template-columns: 1fr 1fr; }
  .catalogue h1, .catalogue p.intro { grid-column: 1 / -1; }
  .actions { flex-direction: row; }
  .actions a { flex: 1; }
}
