.item.premium .premium-placeholder {
  position: relative;
  width: 100%;
  padding-top: 84%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: radial-gradient(circle at top, #1d1d1d, #000000 65%);
}

.premium-placeholder-inner {
  position: absolute;
  inset: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
}

.premium-shape {
  position: absolute;
  inset: 10% 20% 30% 20%;
  opacity: .20;
  filter: blur(4px);
}

.seed-0 .premium-shape { background: linear-gradient(135deg,#d4af37,#813bff); }
.seed-1 .premium-shape { background: linear-gradient(135deg,#ff7f50,#ff1493); }
.seed-2 .premium-shape { background: linear-gradient(135deg,#00e1ff,#d4af37); }

.premium-text-top     { color:#cfcfcf;font-size:.65rem;text-transform:uppercase;letter-spacing:.12em; }
.premium-text-main    { color:white;font-size:.95rem;font-weight:600; }
.premium-text-bottom  { color:#d4af37;font-size:.78rem; }

.item.premium .premium-banner {
  position:absolute;
  bottom:0;left:0;right:0;
  padding:7px 10px;
  text-align:center;
  font-size:.8rem;
  font-weight:600;
  background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.4));
  color:white;
}

.item.premium .premium-placeholder {
  transition: transform .35s ease, filter .35s ease, box-shadow .35s ease;
}

.item.premium:hover .premium-placeholder {
  transform: scale(1.04);
  filter: brightness(1.15);
  box-shadow: 0 18px 45px rgba(0,0,0,.65);
}

.item.premium:hover .premium-placeholder::after {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center, rgba(212,175,55,.25), rgba(0,0,0,.6) 65%);
  pointer-events:none;
}

.item.premium:hover .premium-text-main {
  color:#ffd860;
  text-shadow: 0 0 6px rgba(255,216,96,.6);
}

.item.premium:hover .premium-text-bottom {
  color:#ffeaa4;
}

.item.premium:hover .premium-text-top {
  color:#f9f6e7;
}


.item.premium:hover .premium-banner {
  background:linear-gradient(to top,rgba(212,175,55,.35),rgba(0,0,0,.5));
  color:#fff3c3;
  letter-spacing:.02em;
}


.premium-hover-cta {
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  opacity:0;
  transform:scale(.85);
  transition:opacity .35s ease, transform .35s ease;
  pointer-events:none;
}

.heart-lock {
  font-size:2.4rem;
  margin-bottom:6px;
  filter:drop-shadow(0 0 6px rgba(255,0,120,.55));
}

.premium-hover-cta p {
  color:#ffeaa4;
  font-size:.92rem;
  font-weight:600;
  text-shadow:0 0 8px rgba(0,0,0,.7);
  width:80%;
  line-height:1.3;
}

.item.premium:hover .premium-hover-cta {
  opacity:1;
  transform:scale(1);
}

.item.premium:hover .premium-placeholder::before {
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(3px);
  transition:.35s ease;
}
