/* ==========================================================================
   BD Top Promos — grille dynamique meilleures ventes promo
   Visuel inspiré des anciennes bannières 600x444 (fond marbré chaud,
   badge prix taupe, coches, logo marque).
   ========================================================================== */

.bd-top-promos {
  margin: 10px 0 40px;
}

.bd-tp-head {
  text-align: center;
  margin-bottom: 24px;
}

.bd-tp-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.bd-tp-head h2:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #e2001a;
  border-radius: 2px;
}

.bd-tp-head p {
  color: #777;
  font-size: 14px;
  margin: 6px 0 0;
}

.bd-tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bd-tp-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 18px 14px;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 92%, rgba(150, 118, 102, 0.18), transparent 42%),
    radial-gradient(circle at 8% 6%, rgba(219, 152, 108, 0.12), transparent 38%),
    linear-gradient(135deg, #fbf9f7 0%, #f2ebe5 100%);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bd-tp-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

/* Badge "Top ventes" (non promo) */
.bd-tp-flag--top {
  background: #2d2d2d !important;
}

/* Badge PROMO */
.bd-tp-flag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #e2001a;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
  padding: 2px 12px;
  border-radius: 0 0 10px 0;
}

/* Badge prix taupe, comme les bannières d'origine */
.bd-tp-price {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: #6f5b51;
  color: #fff;
  text-align: center;
  padding: 8px 16px 9px;
  border-radius: 0 0 0 18px;
  min-width: 110px;
}

.bd-tp-price s {
  display: block;
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.1;
}

.bd-tp-price strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}

.bd-tp-price em {
  display: inline-block;
  font-style: normal;
  background: #e2001a;
  font-size: 12px;
  font-weight: 700;
  border-radius: 9px;
  padding: 0 8px;
  margin-top: 3px;
}

/* Titre : catégorie (taupe) + nom produit */
.bd-tp-title {
  padding: 22px 118px 0 0;
  min-height: 92px;
}

.bd-tp-title .bd-tp-cat {
  display: block;
  color: #7d6a5f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3px;
}

.bd-tp-title h3 {
  color: #1d1d1d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Corps : puces à gauche, image produit à droite */
.bd-tp-body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  margin-top: 10px;
}

.bd-tp-bullets {
  flex: 1 1 55%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bd-tp-bullets li {
  position: relative;
  padding: 0 0 7px 24px;
  color: #333;
  font-size: 13px;
  line-height: 1.35;
}

.bd-tp-bullets li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro", "FontAwesome", sans-serif;
  position: absolute;
  left: 0;
  top: 0;
  color: #7d6a5f;
  font-size: 13px;
}

.bd-tp-img {
  flex: 0 0 45%;
  max-width: 45%;
  align-self: flex-end;
}

.bd-tp-img img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

/* Logo marque en bas à gauche */
.bd-tp-brand {
  max-height: 40px;
  max-width: 110px;
  width: auto;
  margin-top: 6px;
  align-self: flex-start;
  mix-blend-mode: multiply;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .bd-tp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bd-tp-head h2 {
    font-size: 21px;
  }
}

@media (max-width: 640px) {
  .bd-tp-grid {
    grid-template-columns: 1fr;
  }

  .bd-tp-title {
    padding-right: 108px;
    min-height: 0;
  }

  .bd-tp-price strong {
    font-size: 21px;
  }

  .bd-tp-head h2 {
    font-size: 19px;
  }

  .bd-tp-head p {
    font-size: 13px;
  }
}
