/* =========================
   SECTION
========================= */
.suggestions {
  padding: 60px 20px;
  background: #f4efe7;
  font-family: "Georgia", serif;

 opacity: 1;
  transform: none;
}

/* =========================
   TITRE GLOBAL
========================= */
.suggestions .title-global {
 font-size: clamp(24px, 5vw, 34px);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 1px;
}

/* =========================
   GRID
========================= */
.suggestions .grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* =========================
   COLONNES
========================= */
.suggestions .col {
  padding: 20px;
}

.suggestions .col h3 {
  text-align: center;
  color: #c59d5f;
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* =========================
   ITEM
========================= */
.suggestions .item {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* =========================
   LIGNE NOM / PRIX
========================= */
.suggestions .top-line {
 display: flex;
  align-items: center; /* 👈 clé principale */
  gap: 10px;
}

/* NOM */
.suggestions .nom {
  flex-shrink: 0;
  max-width: 60%;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* POINTILLÉS */
.suggestions .dots {
  flex: 1;
  border-bottom: 1px dotted #aaa;
  height: 0;
  position: relative;
  top: 1px; /* 👈 ajustement fin */
}

/* PRIX */
.suggestions .prix {
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: bold;
  color: #333;
}

/* =========================
   DESCRIPTION
========================= */
.suggestions .desc {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  line-height: 1.4;

  text-align: left;
  display: block;
  width: 100%;
  max-width: 60%;

  font-style: italic;
  opacity: 0.9;
}

/* =========================
   RUPTURE
========================= */
.suggestions .badge {
  background: #b33;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px; /* 🔥 plus premium */
  font-weight: 500;
}

.suggestions .rupture .nom {
  text-decoration: line-through;
  opacity: 0.5;
}

/* =========================
   BURGER (mise en avant)
========================= */
.suggestions .col:last-child {
  background: #c8a46b;
  color: white;
  border-radius: 10px;
  padding: 30px;
}

.suggestions .col:last-child h3 {
  color: white;
}

.suggestions .col:last-child .desc {
  color: #f3f3f3;
}

.suggestions .col:last-child .dots {
  border-bottom: 1px dotted rgba(255,255,255,0.5);
}

.suggestions .col:last-child .prix {
  color: white;
}

/* =========================
   TABLETTE
========================= */
@media (max-width: 1024px) {

  .suggestions .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .suggestions {
    padding: 40px 15px;
  }

  .suggestions .title-global {
 max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  }

  .suggestions .col {
    padding: 15px;
  }

  .suggestions .col h3 {
    font-size: 22px;
  }

.suggestions .top-line {
  display: flex;
  align-items: center; /* 👈 toujours centré */
  gap: 10px;
}

  .suggestions .nom {
    max-width: 65%;
    white-space: normal;
    font-size: 15px;
  }

  .suggestions .prix {
    font-size: 14px;
  }

  .suggestions .desc {
    max-width: 100%;
    font-size: 13px;
  }

  .suggestions .col:last-child {
    padding: 20px;
  }

}

/* =========================
   PETIT MOBILE
========================= */
@media (max-width: 480px) {

  .suggestions .nom {
    max-width: 60%;
    font-size: 14px;
  }

  .suggestions .prix {
    font-size: 13px;
  }

  .suggestions .desc {
    font-size: 12px;
  }

  .suggestions .col h3 {
    font-size: 20px;
  }

}