/* ==================================
   BLACK DIOR – GOLD STRIP REVIEWS
   Gold background | Black text
================================== */

:root{
  --bd-gold:#FFD966;
  --bd-gold-dark:#c9a63a;
  --bd-black:#050505;
}

/* Heading capsule */
.bd-section-heading{
  text-align:center;
  margin-bottom:18px;
}

.bd-section-heading span{
  display:inline-block;
  padding:10px 28px;
  border-radius:999px;
  background:var(--bd-gold);
  color:#000;
  font-size:12.5px;
  letter-spacing:3px;
  text-transform:uppercase;
  border:1px solid var(--bd-gold-dark);
  font-weight:600;
}

/* Gold container */
.bd-gold-container{
  padding:3px;
  background:linear-gradient(
    90deg,
    var(--bd-gold-dark),
    var(--bd-gold),
    var(--bd-gold-dark)
  );
}

/* Gold strip */
.bd-review-strip{
  background:var(--bd-gold);
  padding:18px 0;
  overflow:hidden;
}

/* Track */
.bd-review-track{
  display:flex;
  width:max-content;
  animation:bd-scroll 60s linear infinite;
}

/* Review item */
.bd-review-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 36px;
  white-space:nowrap;
  font-size:13px;
  letter-spacing:.4px;
  color:#000;
  font-weight:500;
}

/* Stars */
.bd-stars{
  color:#000;
  font-size:11px;
}

/* Divider */
.bd-divider{
  width:1px;
  height:12px;
  background:#000;
  opacity:.5;
}

/* Product */
.bd-product{
  color:#000;
  font-weight:600;
}

/* Animation */
@keyframes bd-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* Mobile */
@media(max-width:768px){
  .bd-review-item{
    font-size:12px;
    padding:0 26px;
  }
}
