.premium-section {
  margin-bottom: 22px;
}

.premium-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  color: #ffd740;
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: 0.1em;
}

.premium-section-title::before {
  content: '';
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ffd740, #ff9100);
  flex-shrink: 0;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.premium-grid:empty {
  display: none;
}

.premium-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 64, 0.22);
  background: #120a1e;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.premium-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 64, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 215, 64, 0.12);
}

.premium-tile img {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.premium-tile .info {
  flex-shrink: 0;
  padding: 10px 10px 11px;
  background: rgba(8, 4, 14, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-tile .name {
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.premium-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ffd740;
  color: #1a0a00;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0.04em;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.premium-want {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  min-height: 68px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 215, 64, 0.35);
  background: linear-gradient(135deg, rgba(255, 215, 64, 0.06), rgba(255, 145, 0, 0.04));
  color: #f5e6b8;
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.premium-want:hover {
  border-color: rgba(255, 215, 64, 0.55);
  background: linear-gradient(135deg, rgba(255, 215, 64, 0.1), rgba(255, 145, 0, 0.07));
}

.premium-want__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 64, 0.12);
  border: 1px solid rgba(255, 215, 64, 0.28);
  color: #ffd740;
  font-size: 18px;
  flex-shrink: 0;
}

.premium-want__body {
  flex: 1 1 auto;
  min-width: 0;
}

.premium-want__body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.premium-want__body span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #bda878;
  line-height: 1.35;
}

.premium-want__chev {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 215, 64, 0.75);
  margin-left: auto;
}

@media (max-width: 720px) {
  .premium-section {
    margin-bottom: 14px;
  }

  .premium-section-title {
    margin-bottom: 8px;
    flex-wrap: wrap;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  .premium-grid,
  .grid-prem {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .premium-tile,
  .tile-prem {
    width: auto;
    flex: unset;
    scroll-snap-align: unset;
    aspect-ratio: auto;
  }

  .premium-tile img,
  .tile-prem img {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .premium-tile .info,
  .tile-prem .info {
    position: relative;
    inset: unset;
    bottom: auto;
    left: auto;
    right: auto;
    flex-shrink: 0;
    min-height: 54px;
    padding: 10px;
    background: rgba(8, 4, 14, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .premium-tile .name,
  .tile-prem .name {
    font-size: 11px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
  }

  .premium-badge,
  .badge-top {
    top: 5px;
    left: 5px;
    font-size: 8px;
    padding: 2px 5px;
  }

  .premium-want,
  .btn-want {
    grid-column: 1 / -1;
  }

  .premium-want {
    margin-top: 8px;
    min-height: 58px;
    padding: 12px 14px;
    gap: 10px;
  }

  .premium-want__icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .premium-want__body strong {
    font-size: 13px;
  }

  .premium-want__body span {
    font-size: 11px;
  }

  .premium-want__chev {
    font-size: 20px;
  }

  .tile-prem {
    display: flex;
    flex-direction: column;
  }

  .tile-prem.btn-want {
    aspect-ratio: unset;
    min-height: 68px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
}
