.stickers-shop-page .stickers-shop-note {
	margin-bottom: 18px;
}

.stickers-pack-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-height: 720px;
	overflow: auto;
	padding-right: 4px;
}

.stickers-pack-card {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 12px;
	border-radius: 14px;
	background: rgba(18, 18, 22, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.stickers-pack-card--owned {
	border-color: rgba(66, 217, 123, 0.25);
}

.stickers-pack-card__preview {
	width: 72px;
	height: 72px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.stickers-pack-thumb {
	max-width: 56px;
	max-height: 56px;
	object-fit: contain;
}

.stickers-pack-card__title {
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	margin-bottom: 4px;
}

.stickers-pack-card__meta {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 8px;
}

.stickers-pack-card__samples {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 8px;
}

.stickers-pack-card__samples img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.03);
}

.stickers-pack-card__price {
	font-size: 13px;
	color: #c084fc;
	font-weight: 600;
}

.stickers-pack-owned-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: #42d97b;
	white-space: nowrap;
}

@media (max-width: 991px) {
	.stickers-pack-card {
		grid-template-columns: 64px 1fr;
	}

	.stickers-pack-card__action {
		grid-column: 1 / -1;
	}
}
