.premium-section-title {
  font-size: 12px;
  text-transform: uppercase;
  color: #bc13fe;
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: 0.8px;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.premium-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(188, 19, 254, 0.22);
  text-decoration: none;
  display: block;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.premium-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(188, 19, 254, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.premium-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premium-tile .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 10px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 55%, rgba(0, 0, 0, 0.72) 78%, transparent 100%);
  z-index: 2;
}

.premium-tile .name {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.premium-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ffd740, #ff9100);
  color: #1a0a00;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 900;
  z-index: 3;
}

.premium-want {
  grid-column: 1 / -1;
  aspect-ratio: unset;
  min-height: 76px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(188, 19, 254, 0.35);
  background: linear-gradient(135deg, rgba(106, 27, 154, 0.18), rgba(188, 19, 254, 0.1));
  color: #f0d7ff;
  text-align: left;
}

.premium-want:hover {
  border-color: rgba(188, 19, 254, 0.55);
  background: linear-gradient(135deg, rgba(106, 27, 154, 0.28), rgba(188, 19, 254, 0.16));
}

.premium-want__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 64, 0.16);
  color: #ffd740;
  font-size: 20px;
  flex-shrink: 0;
}

.premium-want__body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.premium-want__body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #bda6d5;
}

@media (max-width: 720px) {
  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .premium-want {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
