/* ============================================================
   L Re Use — Refonte visuelle (chiffres clés + process + galerie)
   ============================================================ */

/* ---------- Chiffres clés ---------- */
.lreuse-stats-section {
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,.04) 50%, transparent 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lreuse-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.lreuse-stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lreuse-stat:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(212,175,55,.12);
}
.lreuse-stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}
.lreuse-stat-value {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 8px;
}
.lreuse-stat-label {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
@media (max-width: 1024px) { .lreuse-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lreuse-stats-grid { grid-template-columns: 1fr; } }

/* ---------- Frise process 4 étapes ---------- */
.lreuse-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
/* Trait doré reliant les étapes (uniquement desktop) */
@media (min-width: 1025px) {
  .lreuse-process-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    opacity: .35;
    z-index: 0;
  }
}
.lreuse-process-step {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  text-align: center;
  transition: all .3s ease;
}
.lreuse-process-step:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(212,175,55,.14);
}
.lreuse-process-num {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .24em;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--bg);
}
.lreuse-process-icon {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1;
}
.lreuse-process-step h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 12px;
}
.lreuse-process-step p {
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0;
}
@media (max-width: 1024px) { .lreuse-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lreuse-process-grid { grid-template-columns: 1fr; } }

/* ---------- Galerie 6 photos (mosaïque) ---------- */
.lreuse-gallery-section {
  background: rgba(0,0,0,.18);
  border-top: 1px solid var(--line);
}
.lreuse-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.lreuse-gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  transition: transform .3s ease, border-color .3s ease;
}
.lreuse-gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--gold-deep);
}
.lreuse-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.lreuse-gallery-item:hover img {
  transform: scale(1.05);
}
.lreuse-gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 60%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lreuse-gallery-item figcaption strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.lreuse-gallery-item figcaption span {
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}
@media (max-width: 1024px) { .lreuse-gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .lreuse-gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   L RE USE — Catalogue (grille) + Fiche article (page détail)
   Chantier 2 · 26/08/2026
   ============================================================ */

/* --- Section catalogue --- */
.lreuse-catalogue-section { background: #f5f1e7; color: #1a1a17; }
.lreuse-catalogue-section h2 { color: #1a1a17; }
.lreuse-catalogue-section .eyebrow { color: #a88824; }
.lreuse-catalogue-section .lead { color: #5f5648; }

.lreuse-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* --- Carte fiche (catalogue + fiche détail partagent les mêmes médaillons) --- */
.lreuse-fiche {
  background: #fff;
  border: 1px solid #e6ddc8;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px -12px rgba(90,70,20,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lreuse-fiche:hover { transform: translateY(-3px); box-shadow: 0 12px 32px -10px rgba(90,70,20,.28); }

.lreuse-fiche-photo-link { display: block; text-decoration: none; }
.lreuse-fiche-photo {
  aspect-ratio: 1 / 1;
  background: #2a1a10;
  position: relative;
  overflow: hidden;
}
.lreuse-fiche-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lreuse-fiche-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(20,10,5,.85); color: #D4AF37;
  font-size: 10px; letter-spacing: .18em; padding: 6px 12px;
  border-radius: 999px; text-transform: uppercase; font-weight: 600;
}

.lreuse-fiche-body { padding: 20px 22px 6px; color: #1a1a17; }
.lreuse-fiche-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500;
  margin: 0 0 4px; line-height: 1.15; color: #1a1a17;
}
.lreuse-fiche-titre a { color: inherit; text-decoration: none; }
.lreuse-fiche-titre a:hover { color: #a88824; }
.lreuse-fiche-sous {
  color: #9e9482; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; margin: 0 0 10px;
}
.lreuse-fiche-spec {
  display: inline-block; background: #f0ebdd; color: #5f5648;
  font-size: 12px; padding: 5px 12px; border-radius: 999px;
  border: 1px solid #e6ddc8; margin: 0 0 14px;
}

.lreuse-fiche-ligne {
  display: flex; gap: 14px; padding: 12px 0;
  border-top: 1px solid #e6ddc8; align-items: flex-start;
}
.lreuse-fiche-medaillons { display: flex; gap: 6px; flex-shrink: 0; }
.lreuse-fiche-medaillon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #f0ebdd; border: 2px solid #fff; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.10), 0 0 0 1px #e6ddc8;
}
.lreuse-fiche-medaillon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lreuse-fiche-medaillon-2 { margin-left: -14px; }
.lreuse-fiche-asso { background: #fff; }
.lreuse-fiche-asso img { object-fit: contain; padding: 4px; }

.lreuse-fiche-texte { flex: 1; font-size: 13px; line-height: 1.55; color: #5f5648; }
.lreuse-fiche-who {
  display: block; color: #1a1a17; font-weight: 600; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px;
}

.lreuse-fiche-footer {
  padding: 16px 22px 20px; border-top: 1px solid #e6ddc8;
  background: linear-gradient(180deg, transparent 0%, #fbf7ec 100%);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.lreuse-fiche-prix { display: flex; flex-direction: column; color: #1a1a17; }
.lreuse-fiche-prix .l { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: #9e9482; }
.lreuse-fiche-prix .v {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500; line-height: 1.1;
}
.lreuse-fiche-prix .v small { font-size: 13px; color: #5f5648; font-weight: 400; }
.lreuse-fiche-prix .r { font-size: 11px; color: #a88824; margin-top: 2px; font-weight: 500; }
.lreuse-fiche-prix .r strong { color: #1a1a17; font-weight: 600; }
.lreuse-fiche-cta {
  padding: 12px 20px; font-size: 13px; text-decoration: none;
}
.lreuse-fiche-cta:disabled { opacity: .5; cursor: not-allowed; }

/* --- Page fiche article (détail) — Chantier B refonte photos/alignements --- */
.lreuse-article-section {
  background: #f5f1e7;
  color: #1a1a17;
  padding-top: 40px;
  padding-bottom: 60px;
}
.lreuse-article-section h1,
.lreuse-article-section h2 { color: #1a1a17; }

.lreuse-article-breadcrumb {
  max-width: 1040px; margin: 0 auto 24px; padding: 0 8px;
}
.lreuse-article-breadcrumb a {
  font-size: 13px; color: #5f5648; text-decoration: none;
  letter-spacing: .04em;
}
.lreuse-article-breadcrumb a:hover { color: #a88824; }

/* Container principal — largeur maîtrisée */
.lreuse-article {
  display: grid;
  grid-template-columns: 460px minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid #e6ddc8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px -16px rgba(90,70,20,.22);
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

/* --- Colonne photo (gauche, largeur fixe 460 px, hauteur = colonne info) --- */
.lreuse-article-media {
  width: 460px;
  max-width: 460px;
  min-width: 0;
  overflow: hidden;
  align-self: stretch;    /* étire à toute la hauteur de la grid row */
  display: block;
}
.lreuse-article-photo {
  width: 100%;
  height: 100%;
  min-height: 460px;      /* garantit un minimum carré même si info court */
  background: #2a1a10;
  position: relative;
  overflow: hidden;
  display: block;
}
.lreuse-article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.lreuse-article-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(20,10,5,.85); color: #D4AF37;
  font-size: 11px; letter-spacing: .18em; padding: 6px 12px;
  border-radius: 999px; text-transform: uppercase; font-weight: 600;
  z-index: 2;
}

/* --- Colonne infos (droite, flex) --- */
.lreuse-article-info {
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: stretch;
}
.lreuse-article-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 6px;
  color: #1a1a17;
  word-wrap: break-word;
}
.lreuse-article-sous {
  color: #9e9482; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; margin: 0 0 14px;
}
.lreuse-article-spec {
  display: inline-block;
  align-self: flex-start;
  background: #f0ebdd;
  color: #5f5648;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #e6ddc8;
  margin: 0 0 18px;
}

/* --- Blocs chef / association (médaillons agrandis + alignement uniforme) --- */
.lreuse-article-bloc {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #e6ddc8;
  align-items: flex-start;
}
.lreuse-article-medaillons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 2px;
  width: 168px;               /* largeur fixe = 2 médaillons 76 px + gap 8 + marge -12 */
  min-width: 168px;
  justify-content: flex-start;
  align-items: flex-start;
}
.lreuse-article-medaillons .lreuse-fiche-medaillon {
  width: 76px;
  height: 76px;
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.12), 0 0 0 1px #e6ddc8;
}
.lreuse-article-medaillons .lreuse-fiche-medaillon-2 { margin-left: -12px; }
.lreuse-article-medaillons .lreuse-fiche-asso {
  background: #fff;
}
.lreuse-article-medaillons .lreuse-fiche-asso img {
  object-fit: contain;
  padding: 6px;
}

.lreuse-article-bloc-txt {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #5f5648;
  word-wrap: break-word;
  padding-top: 4px;           /* aligne le premier mot avec le haut du médaillon */
}
.lreuse-article-bloc-txt .lreuse-fiche-who {
  color: #1a1a17;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.lreuse-article-bloc-txt p { margin: 0 0 10px; }
.lreuse-article-bloc-txt p:last-child { margin-bottom: 0; }

/* --- Footer (tarif + CTA) --- */
.lreuse-article-footer {
  margin-top: auto;
  padding: 22px 0 4px;
  border-top: 1px solid #e6ddc8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.lreuse-article-cta { padding: 12px 22px; font-size: 13px; }
.lreuse-article-stock {
  font-size: 12px;
  margin: 12px 0 0;
  color: #9e9482;
}

/* Mention systématique reversement (fin bloc asso) */
.lreuse-article-mention-reverse {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e6ddc8;
  font-size: 12px;
  color: #a88824;
  line-height: 1.5;
}

/* Responsive — sous 900 px : passage en 1 colonne, photo carrée */
@media (max-width: 900px) {
  .lreuse-article {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .lreuse-article-media {
    width: 100%;
    max-width: 100%;
    align-self: auto;
  }
  .lreuse-article-photo {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;      /* redevient carré en mobile */
  }
  .lreuse-article-info { padding: 26px 22px 22px; }
  .lreuse-article-titre { font-size: 28px; }
  .lreuse-article-medaillons {
    width: 152px;
    min-width: 152px;
  }
  .lreuse-article-medaillons .lreuse-fiche-medaillon {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 480px) {
  .lreuse-article-bloc { flex-direction: column; gap: 12px; }
  .lreuse-article-medaillons { width: auto; min-width: 0; }
}

/* --- Chantier 2.1 : carte 100% cliquable + rangée médaillons unique --- */
a.lreuse-fiche-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.lreuse-fiche-card-link:hover .lreuse-fiche-titre { color: #a88824; }

.lreuse-fiche-medaillons-row {
  display: flex;
  gap: 8px;
  padding: 14px 0 4px;
  border-top: 1px solid #e6ddc8;
  margin-top: 12px;
}
.lreuse-fiche-medaillons-row .lreuse-fiche-medaillon {
  width: 44px;
  height: 44px;
}

/* Mention reversement systématique sur fiche détail */
.lreuse-article-mention-reverse {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e6ddc8;
  font-size: 12px;
  color: #a88824;
  line-height: 1.5;
}

/* ============================================================
   L RE USE — Panier (Chantier 3)
   ============================================================ */
.lreuse-panier-section { background: #f5f1e7; color: #1a1a17; padding-bottom: 80px; }
.lreuse-panier-section h1, .lreuse-panier-section h2, .lreuse-panier-section h3 { color: #1a1a17; }

.lreuse-panier-titre {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; font-weight: 500; margin: 0 0 24px; text-align: center;
}
.lreuse-panier-flash {
  padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px;
}
.lreuse-panier-flash.is-ok  { background: #e5f2d6; color: #2c5a1c; border: 1px solid #b9d99a; }
.lreuse-panier-flash.is-err { background: #f7d7d5; color: #7a2020; border: 1px solid #e0a19b; }
.lreuse-panier-empty {
  text-align: center; padding: 64px 24px;
  background: #fff; border-radius: 14px; border: 1px solid #e6ddc8;
}

.lreuse-panier-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: start;
}
.lreuse-panier-items {
  display: flex; flex-direction: column; gap: 12px;
}
.lreuse-panier-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  background: #fff; border: 1px solid #e6ddc8;
  border-radius: 12px; padding: 14px;
  align-items: center;
  box-shadow: 0 4px 14px -8px rgba(90,70,20,.14);
}
.lreuse-panier-row-photo {
  display: block; width: 100px; height: 100px;
  border-radius: 8px; overflow: hidden; background: #2a1a10;
}
.lreuse-panier-row-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lreuse-panier-row-body h3 {
  margin: 0 0 4px; font-size: 18px; font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
}
.lreuse-panier-row-body h3 a { color: inherit; text-decoration: none; }
.lreuse-panier-row-body h3 a:hover { color: #a88824; }
.lreuse-panier-spec {
  display: inline-block; margin: 0 0 8px; padding: 3px 10px;
  background: #f0ebdd; border: 1px solid #e6ddc8; border-radius: 999px;
  font-size: 11px; color: #5f5648;
}
.lreuse-panier-row-qty {
  display: flex; align-items: end; gap: 14px; font-size: 12px;
}
.lreuse-panier-row-qty label {
  display: flex; flex-direction: column; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase; color: #9e9482;
}
.lreuse-panier-row-qty input {
  width: 70px; margin-top: 4px; padding: 6px 8px;
  border: 1px solid #d9cea9; border-radius: 6px; font-size: 14px;
}
.lreuse-panier-remove {
  background: none; border: none; color: #b00; font-size: 12px;
  cursor: pointer; padding: 0 0 4px;
}
.lreuse-panier-row-price { text-align: right; }
.lreuse-panier-line-ttc {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; color: #1a1a17;
}
.lreuse-panier-line-unit  { font-size: 11px; color: #9e9482; margin-top: 2px; }
.lreuse-panier-line-reverse { font-size: 11px; color: #a88824; margin-top: 4px; }
.lreuse-panier-row-note {
  padding: 14px 4px 0; font-size: 12px; text-align: center;
}

.lreuse-panier-side { display: flex; flex-direction: column; gap: 16px; }
.lreuse-panier-recap, .lreuse-panier-form {
  background: #fff; border: 1px solid #e6ddc8; border-radius: 12px;
  padding: 20px 22px; box-shadow: 0 4px 14px -8px rgba(90,70,20,.14);
}
.lreuse-panier-recap h2, .lreuse-panier-form h2 {
  font-size: 16px; letter-spacing: .06em; text-transform: uppercase;
  color: #5f5648; margin: 0 0 12px; font-family: inherit; font-weight: 600;
}
.lreuse-panier-recap dl {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; margin: 0;
  font-size: 14px;
}
.lreuse-panier-recap dt { color: #5f5648; }
.lreuse-panier-recap dd { text-align: right; margin: 0; font-weight: 500; color: #1a1a17; }
.lreuse-panier-recap dd.reverse { color: #a88824; }

.lreuse-panier-form label {
  display: block; font-size: 12px; color: #5f5648;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 12px; font-weight: 500;
}
.lreuse-panier-form input, .lreuse-panier-form textarea {
  display: block; width: 100%; box-sizing: border-box;
  margin-top: 6px; padding: 10px 12px;
  font: inherit; font-size: 14px; text-transform: none; letter-spacing: normal;
  color: #1a1a17; background: #fbf7ec;
  border: 1px solid #d9cea9; border-radius: 6px;
}
.lreuse-panier-form textarea { min-height: 90px; resize: vertical; line-height: 1.55; }
.lreuse-panier-submit { width: 100%; padding: 14px; font-size: 14px; margin-top: 6px; }
.lreuse-panier-success {
  text-align: center; padding: 48px 24px; background: #fff;
  border: 1px solid #e6ddc8; border-radius: 14px;
  box-shadow: 0 12px 40px -16px rgba(90,70,20,.22);
}
.lreuse-panier-success h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500; margin: 0 0 12px; color: #2c5a1c;
}

@media (max-width: 900px) {
  .lreuse-panier-layout { grid-template-columns: 1fr; }
  .lreuse-panier-row { grid-template-columns: 80px 1fr; }
  .lreuse-panier-row-photo { width: 76px; height: 76px; }
  .lreuse-panier-row-price { grid-column: 1 / -1; text-align: left; padding-top: 6px; border-top: 1px dashed #e6ddc8; }
}

/* Récap panier — mise en valeur du total avec frais */
.lreuse-panier-recap dt.dt-total,
.lreuse-panier-recap dd.dd-total {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #e6ddc8;
  font-size: 16px;
  color: #1a1a17;
}
.lreuse-panier-recap dd.dd-total strong { color: #a88824; font-size: 20px; }

/* Caractéristiques fiche détail (bloc sous le spec) */
.lreuse-article-caracs {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px dashed #e6ddc8;
  border-bottom: 1px dashed #e6ddc8;
  padding: 12px 0;
}
.lreuse-article-caracs li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 13px; color: #5f5648;
}
.lreuse-article-caracs .lc-lbl {
  min-width: 130px;
  font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: #9e9482; font-weight: 600;
}
.lreuse-article-caracs .lc-val { color: #1a1a17; font-weight: 500; }
.lreuse-article-caracs .lc-note {
  font-size: 12px; color: #a88824; padding-top: 4px;
}

/* Carte catalogue — sous-ligne caractéristique */
.lreuse-fiche-carac {
  font-size: 11px; color: #9e9482;
  letter-spacing: .04em; margin: 0 0 14px;
}
