/* Shop Street Grid */
.shop-street-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 clamp(16px, 4vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

/*.neon-product-card {
  overflow: hidden;
  position: relative;
}*/

.neon-product-card__link {
  display: block;
  text-decoration: none;
}

.neon-product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.neon-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.neon-product-card:hover .neon-product-card__image img {
  transform: scale(1.05);
}

.neon-product-card__info {
  padding: 10px 12px;
}

.neon-product-card__artist {
  font-family: 'Press Start 2P', monospace;
  font-size: 6px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.neon-product-card__name {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.neon-product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.neon-product-card__price {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #FFD700;
}

.neon-product-card__loot {
  font-size: 7px;
  color: #FF6B6B;
  letter-spacing: 0.1em;
}

.neon-product-card__price-float {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: #FFD700;
  background: rgba(0,0,0,0.6);
  padding: 4px 8px;
}

.neon-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: 'Press Start 2P', monospace;
  font-size: 6px;
  padding: 3px 8px;
  color: white;
}

/* Header styles */
.shop-street-header {
  padding: 24px 0 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
}

.shop-street-back:hover {
  color: #FFD700 !important;
  border-color: rgba(255,215,0,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
}

.shop-street-header__tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}

.shop-street-header__title {
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  color: white;
  margin-bottom: 8px;
}

.shop-street-header__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.shop-street-count {
  padding: 8px clamp(16px, 4vw, 32px) 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-street-count__text {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: rgba(255,255,255,0.3);
}

/* Pagination */
.shop-street-pagination {
  text-align: center;
  padding: 32px 0;
}

.shop-street-pagination a,
.shop-street-pagination span {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  margin: 0 2px;
}

.shop-street-pagination span.current {
  color: #FFD700;
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.08);
}

.shop-street-pagination a:hover {
  color: #FFD700;
  border-color: rgba(255,215,0,0.2);
}

/* Filter buttons */
.shop-street-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 clamp(16px, 4vw, 32px) 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-filter-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 6px;
  padding: 6px 12px;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  color: #FFD700;
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.06);
}

/* Responsive */
@media (max-width: 767px) {
  .shop-street-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}