/* Surface calquée Oxygen v1 foiegrascolet.fr · profondeur FGC */
:root {
  --ink: #404040;
  --ink-soft: #474240;
  --brown: #594c48;
  --brown-line: #bfa29a;
  --muted: #666666;
  --yellow: #ffdb8e;
  --yellow-deep: #ffd063;
  --teal: #65bec2;
  --hover: #7a6638;
  --bg: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Raleway, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  /* Fond v1 Oxygen · section-18-516 */
  background-color: #fff;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url(https://foiegrascolet.fr/wp-content/uploads/2019/01/IMG_2158.jpg);
  background-size: auto, cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
}
h1, h2, h3, h4, h5, h6 {
  font-family: Montserrat, system-ui, sans-serif;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 .6rem;
}
a { color: var(--ink-soft); text-decoration: none; }
a:hover { color: var(--hover); }

.wrap { width: 100%; padding: 0; min-height: 100vh; }







.main {
  padding: 0 1.25rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* v1 : deux catégories par ligne (colonnes 50%) */
.fam-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.fam-col {
  min-width: 0;
}
.home-categories {
  color: var(--brown);
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 2;
  background-color: var(--yellow-deep);
  border-radius: 2px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 .85rem;
  padding: .15rem .5rem;
}

.products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  /* 2 colonnes fixes · pas 3 */
  grid-template-columns: 1fr 1fr;
  gap: .85rem .75rem;
}
.product { text-align: center; margin: 0; }
.product img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f3f0ea;
}
.product .title {
  font-family: Montserrat, sans-serif;
  font-size: .88rem;
  line-height: 1.15;
  font-weight: 600;
  margin: .45rem 0 .2rem;
  color: var(--brown);
}
.product .price {
  font-family: Raleway, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: rgb(71, 66, 64);
  display: block;
  margin-bottom: .15rem;
}
.product .meta { font-size: .75rem; color: var(--muted); }







@media (max-width: 900px) {
  .fam-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { background-attachment: scroll; }
}
