/* --- Rakuten ranking style (WorldSneakersLive) --- */

.rakuten-items{
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 14px 10px;
  margin: 18px 0;
  background: #fff;
}

.rakuten-items__list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.rakuten-items__item{
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.rakuten-items__item:last-child{
  border-bottom: 0;
}

.rakuten-items__img{
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  background: #fafafa;
}

.rakuten-items__img img{
  width: 100%;
  height: auto;
  display: block;
}

.rakuten-items__meta{
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 10px;
  row-gap: 6px;
  align-items: start;
}

.rakuten-items__rank{
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

/* Top 3 feel special */
.rakuten-items__item:nth-child(1) .rakuten-items__rank{ background:#b8860b; } /* gold */
.rakuten-items__item:nth-child(2) .rakuten-items__rank{ background:#8a8a8a; } /* silver */
.rakuten-items__item:nth-child(3) .rakuten-items__rank{ background:#a97142; } /* bronze */

.rakuten-items__title{
  grid-column: 2;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rakuten-items__title:hover{
  text-decoration: underline;
}

.rakuten-items__sub{
  grid-column: 2;
  font-size: 12px;
  opacity: .85;
}

.rakuten-items__price{
  grid-column: 2;
  font-size: 14px;
  font-weight: 700;
}

/* Optional: button style if you add a button link later */
.rakuten-items__btn{
  grid-column: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
}

.rakuten-items__btn:hover{
  filter: brightness(1.05);
}

/* Mobile tweaks */
@media (max-width: 480px){
  .rakuten-items{ padding: 12px; }
  .rakuten-items__item{ grid-template-columns: 70px 1fr; }
  .rakuten-items__rank{ width: 32px; height: 32px; border-radius: 10px; }
}
